gemini plugin for embcli
Project description
embcli-gemini
gemini plugin for embcli, a command-line interface for embeddings.
Reference
Installation
pip install embcli-gemini
Quick Start
You need Gemini API key to use this plugin. Set GEMINI_API_KEY environment variable in .env file in the current directory. Or you can give the env file path by -e option.
cat .env
GEMINI_API_KEY=<YOUR_GEMINI_KEY>
Try out the Embedding Models
# show general usage of emb command.
emb --help
# list all available models.
emb models
GeminiEmbeddingModel
Vendor: gemini
Models:
* gemini-embedding-exp-03-07 (aliases: exp-03-07)
* text-embedding-004 (aliases: text-004)
* embedding-001 (aliases: )
Model Options:
* task_type (str) - The type of task for the embedding. Supported task types: 'semantic_similarity', 'classification', 'clustering', 'retrieval_document', 'retrieval_query', 'question_answering', 'fact_verification', 'code_retrieval_query'
# get an embedding for an input text by text-embedding-004 model.
emb embed -m text-004 "Embeddings are essential for semantic search and RAG apps."
# get an embedding for an input text by text-embedding-004 model with task_type=retrieval_query.
emb embed -m text-004 "Embeddings are essential for semantic search and RAG apps." -o task_type retrieval_query
# calculate similarity score between two texts by text-embedding-004 model. the default metric is cosine similarity.
emb simscore -m text-004 "The cat drifts toward sleep." "Sleep dances in the cat's eyes."
0.8025767622661093
Document Indexing and Search
You can use the emb command to index documents and perform semantic search. emb uses chroma for the default vector database.
# index example documents in the current directory.
emb ingest-sample -m text-004 -c catcafe --corpus cat-names
# or, you can give the path to your documents.
# the documents should be in a CSV file with two columns: id and text. the separator should be comma.
emb ingest -m text-004 -c catcafe -f <path-to-your-documents>
# search for a query in the indexed documents.
emb search -m text-004 -c catcafe -q "Who's the naughtiest one?"
Found 5 results:
Score: 0.5264116432711389, Document ID: 28, Text: Loki: Loki is a mischievous and clever cat, always finding new ways to entertain himself, sometimes at his humans' expense. He is a master of stealth and surprise attacks on toys. Despite his playful trickery, Loki is incredibly charming and affectionate, easily winning hearts with his roguish appeal.
Score: 0.5167245254962557, Document ID: 46, Text: Bandit: Bandit is a mischievous cat, often with mask-like markings, always on the lookout for his next playful heist of a toy or treat. He is clever and energetic, loving to chase and pounce. Despite his roguish name, Bandit is a loving companion who enjoys a good cuddle after his adventures.
Score: 0.5093414700625404, Document ID: 76, Text: Frankie: Frankie is a boisterous and playful cat, full of charm and mischief. He loves to zoom around the house and engage in energetic play sessions, especially with crinkly toys. Frankie is also very affectionate, often seeking out his humans for cuddles and purrs after his bursts of energy, a fun-loving friend.
Score: 0.5047165435030156, Document ID: 97, Text: Alfie: Alfie is a cheerful and mischievous little cat, always getting into playful trouble with a charming innocence. He loves exploring small spaces and batting at dangling objects. Alfie is incredibly affectionate, quick to purr and eager for cuddles, a delightful bundle of joy and entertainment for his humans.
Score: 0.5034822716772406, Document ID: 71, Text: Archie: Archie is a friendly and slightly goofy ginger cat, always up for a bit of fun and a good meal. He is very sociable and loves attention from anyone willing to give it. Archie enjoys playful wrestling and will often follow his humans around, offering cheerful chirps and affectionate head-bumps.
Development
See the main README for general development instructions.
Run Tests
You need to have a Gemini API key to run the tests for the embcli-gemini package. You can set it up as an environment variable:
GEMINI_API_KEY=<YOUR_GEMINI_KEY> RUN_GEMINI_TESTS=1 uv run --package embcli-gemini pytest packages/embcli-gemini/tests/
Run Linter and Formatter
uv run ruff check --fix packages/embcli-gemini
uv run ruff format packages/embcli-gemini
Run Type Checker
uv run --package embcli-gemini pyright packages/embcli-gemini
Build
uv build --package embcli-gemini
License
Apache License 2.0
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file embcli_gemini-0.0.5.tar.gz.
File metadata
- Download URL: embcli_gemini-0.0.5.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e9902ffb03d9f02e2c3ffd69cac149e1197e8f6feba64f9c9bff3cda4e28ac5
|
|
| MD5 |
2fcd9bcddf2e37d9a7827fc2cb8897fc
|
|
| BLAKE2b-256 |
ac5272910ab0a47d5f0ffaf7a9ffd8eddb2ad4ff1a5d2bf561ea16deeb26bdf1
|
File details
Details for the file embcli_gemini-0.0.5-py3-none-any.whl.
File metadata
- Download URL: embcli_gemini-0.0.5-py3-none-any.whl
- Upload date:
- Size: 4.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc30939a5c454652ef63975f824e7ee5b8ed58373a5d83bf5487c673b0638d13
|
|
| MD5 |
47d2fddadbe0793bee919f25101ac20f
|
|
| BLAKE2b-256 |
852ac19b448c764a4ceb4a12ff3e3e5c80864de5f3542dbd399ce6066bd5b627
|