Skip to main content

llama-index packs retry_engine_weaviate integration

Project description

Retry Query Engine

This LlamaPack inserts your data into Weaviate and uses the Retry Query Engine for your RAG application.

CLI Usage

You can download llamapacks directly using llamaindex-cli, which comes installed with the llama-index python package:

llamaindex-cli download-llamapack WeaviateRetryEnginePack --download-dir ./weaviate_pack

You can then inspect the files at ./weaviate_pack and use them as a template for your own project.

Code Usage

You can download the pack to a the ./weaviate_pack directory:

from llama_index.core.llama_pack import download_llama_pack

# download and install dependencies
WeaviateRetryEnginePack = download_llama_pack(
    "WeaviateRetryEnginePack", "./weaviate_pack"
)

From here, you can use the pack, or inspect and modify the pack in ./weaviate_pack.

Then, you can set up the pack like so:

# setup pack arguments
from llama_index.core.vector_stores.types import MetadataInfo, VectorStoreInfo

vector_store_info = VectorStoreInfo(
    content_info="brief biography of celebrities",
    metadata_info=[
        MetadataInfo(
            name="category",
            type="str",
            description=(
                "Category of the celebrity, one of [Sports Entertainment, Business, Music]"
            ),
        ),
    ],
)

import weaviate

client = weaviate.Client()

nodes = [...]

# create the pack
weaviate_pack = WeaviateRetryQueryEnginePack(
    collection_name="test",
    vector_store_info=vector_store_index,
    nodes=nodes,
    client=client,
)

The run() function is a light wrapper around query_engine.query().

response = weaviate_pack.run("Tell me a bout a Music celebritiy.")

You can also use modules individually.

# use the retriever
retriever = weaviate_pack.retriever
nodes = retriever.retrieve("query_str")

# use the query engine
query_engine = weaviate_pack.query_engine
response = query_engine.query("query_str")

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_retry_engine_weaviate-0.1.3.tar.gz.

File metadata

File hashes

Hashes for llama_index_packs_retry_engine_weaviate-0.1.3.tar.gz
Algorithm Hash digest
SHA256 ab21909e9a0730a3ddcec94602b3859d7f536743937b043ba6445e333b416c15
MD5 9cf97d3aed04b45c16903a9517a709df
BLAKE2b-256 6cb62c056a12b28b52ea2f558a67af3a759a7968e97040fb3070a0e942bfd4a8

See more details on using hashes here.

File details

Details for the file llama_index_packs_retry_engine_weaviate-0.1.3-py3-none-any.whl.

File metadata

File hashes

Hashes for llama_index_packs_retry_engine_weaviate-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 aba093281f3e728db31c3d638c6e030be3e733d908f3f3d69586409cd5d33956
MD5 b52ef6ef0a5510af5f75ddd281884d03
BLAKE2b-256 cf51f335faf7754cd49cd3273bf0cedccafc01b6c0065cf0f3d9081e06702d21

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page