llama-index packs voyage_query_engine integration
Project description
Voyage Query Engine Pack
Create a query engine using GPT4 and Voyage AI Embeddings.
CLI Usage
You can download llamapacks directly using llamaindex-cli
, which comes installed with the llama-index
python package:
llamaindex-cli download-llamapack VoyageQueryEnginePack --download-dir ./voyage_pack
You can then inspect the files at ./voyage_pack
and use them as a template for your own project.
Code Usage
You can download the pack to a the ./voyage_pack
directory:
from llama_index.core.llama_pack import download_llama_pack
# download and install dependencies
VoyageQueryEnginePack = download_llama_pack(
"VoyageQueryEnginePack", "./voyage_pack"
)
# You can use any llama-hub loader to get documents!
voyage_pack = VoyageQueryEnginePack(documents)
From here, you can use the pack, or inspect and modify the pack in ./voyage_pack
.
The run()
function is a light wrapper around index.as_query_engine().query()
.
response = voyage_pack.run(
"What did the author do growing up?", similarity_top_k=2
)
You can also use modules individually.
# Use the index directly
index = voyage_pack.index
query_engine = index.as_query_engine()
retriever = index.as_retriever()
Project details
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
File details
Details for the file llama_index_packs_voyage_query_engine-0.3.0.tar.gz
.
File metadata
- Download URL: llama_index_packs_voyage_query_engine-0.3.0.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.10.13 Darwin/23.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9d6d84d2b7df10fa252b861ecb9024d4af520d60c40d17cd202bc1f2a835e231 |
|
MD5 | 62a4455e66830bcd34abe5ce78690dbd |
|
BLAKE2b-256 | 5675ec3b054880831cc9319c2b4314eb9786a6ccd0aa6c817b364f79ea4708fa |
File details
Details for the file llama_index_packs_voyage_query_engine-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: llama_index_packs_voyage_query_engine-0.3.0-py3-none-any.whl
- Upload date:
- Size: 2.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.10.13 Darwin/23.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a391923a97ccc4389b32b035f2e16f33d8fb2920071def726bda868243fd2da6 |
|
MD5 | 5e519f1fe5a21154f6cb58a3064a2d81 |
|
BLAKE2b-256 | 3ba67c028b1e0cd899f10236d7ce3c91bed9962d184348898c26c0b99ef11f03 |