Manage embedding models
List and manage available embedding models for vector search, showing details like dimensions, backends, and best use cases for PDFs, code, or general text.
/plugin marketplace add cwensel/arcaneum/plugin install arc@arcaneum-marketplacelist [--json]Manage and view available embedding models for vector search.
IMPORTANT: You must specify a subcommand (currently only list is available).
Subcommands (required):
list: List all available embedding models with detailsOptions:
Examples:
/models list
/models list --json
Execution:
arc models $ARGUMENTS
Available Models:
The list command shows:
Current Models:
For Documents/PDFs:
For Source Code:
For General Use:
Model Selection Tips:
Match content type:
Consider dimensions:
Backend matters:
Collection consistency:
Downloading Models:
Models auto-download on first use (~1-2GB):
~/.cache/arcaneum/models (XDG-compliant)Pre-download for offline use:
# Download the recommended code model
python -c "from sentence_transformers import SentenceTransformer; SentenceTransformer('jinaai/jina-code-embeddings-0.5b')"
# Or the legacy v2 model
python -c "from sentence_transformers import SentenceTransformer; SentenceTransformer('jinaai/jina-embeddings-v2-base-code')"
Related Commands:
Implementation: