llama-index-packs-retry-engine-weaviate


Namellama-index-packs-retry-engine-weaviate JSON
Version 0.1.3 PyPI version JSON
download
home_page
Summaryllama-index packs retry_engine_weaviate integration
upload_time2024-02-22 01:35:05
maintainererika-cardenas
docs_urlNone
authorYour Name
requires_python>=3.8.1,<4.0
licenseMIT
keywords engine retry weaviate
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Retry Query Engine

This LlamaPack inserts your data into [Weaviate](https://weaviate.io/developers/weaviate) and uses the [Retry Query Engine](https://gpt-index.readthedocs.io/en/latest/examples/evaluation/RetryQuery.html) for your RAG application.

## CLI Usage

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

```bash
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:

```python
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:

```python
# 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()`.

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

You can also use modules individually.

```python
# 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")
```

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "llama-index-packs-retry-engine-weaviate",
    "maintainer": "erika-cardenas",
    "docs_url": null,
    "requires_python": ">=3.8.1,<4.0",
    "maintainer_email": "",
    "keywords": "engine,retry,weaviate",
    "author": "Your Name",
    "author_email": "you@example.com",
    "download_url": "https://files.pythonhosted.org/packages/6c/b6/2c056a12b28b52ea2f558a67af3a759a7968e97040fb3070a0e942bfd4a8/llama_index_packs_retry_engine_weaviate-0.1.3.tar.gz",
    "platform": null,
    "description": "# Retry Query Engine\n\nThis LlamaPack inserts your data into [Weaviate](https://weaviate.io/developers/weaviate) and uses the [Retry Query Engine](https://gpt-index.readthedocs.io/en/latest/examples/evaluation/RetryQuery.html) for your RAG application.\n\n## CLI Usage\n\nYou can download llamapacks directly using `llamaindex-cli`, which comes installed with the `llama-index` python package:\n\n```bash\nllamaindex-cli download-llamapack WeaviateRetryEnginePack --download-dir ./weaviate_pack\n```\n\nYou can then inspect the files at `./weaviate_pack` and use them as a template for your own project.\n\n## Code Usage\n\nYou can download the pack to a the `./weaviate_pack` directory:\n\n```python\nfrom llama_index.core.llama_pack import download_llama_pack\n\n# download and install dependencies\nWeaviateRetryEnginePack = download_llama_pack(\n    \"WeaviateRetryEnginePack\", \"./weaviate_pack\"\n)\n```\n\nFrom here, you can use the pack, or inspect and modify the pack in `./weaviate_pack`.\n\nThen, you can set up the pack like so:\n\n```python\n# setup pack arguments\nfrom llama_index.core.vector_stores.types import MetadataInfo, VectorStoreInfo\n\nvector_store_info = VectorStoreInfo(\n    content_info=\"brief biography of celebrities\",\n    metadata_info=[\n        MetadataInfo(\n            name=\"category\",\n            type=\"str\",\n            description=(\n                \"Category of the celebrity, one of [Sports Entertainment, Business, Music]\"\n            ),\n        ),\n    ],\n)\n\nimport weaviate\n\nclient = weaviate.Client()\n\nnodes = [...]\n\n# create the pack\nweaviate_pack = WeaviateRetryQueryEnginePack(\n    collection_name=\"test\",\n    vector_store_info=vector_store_index,\n    nodes=nodes,\n    client=client,\n)\n```\n\nThe `run()` function is a light wrapper around `query_engine.query()`.\n\n```python\nresponse = weaviate_pack.run(\"Tell me a bout a Music celebritiy.\")\n```\n\nYou can also use modules individually.\n\n```python\n# use the retriever\nretriever = weaviate_pack.retriever\nnodes = retriever.retrieve(\"query_str\")\n\n# use the query engine\nquery_engine = weaviate_pack.query_engine\nresponse = query_engine.query(\"query_str\")\n```\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "llama-index packs retry_engine_weaviate integration",
    "version": "0.1.3",
    "project_urls": null,
    "split_keywords": [
        "engine",
        "retry",
        "weaviate"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cf51f335faf7754cd49cd3273bf0cedccafc01b6c0065cf0f3d9081e06702d21",
                "md5": "b52ef6ef0a5510af5f75ddd281884d03",
                "sha256": "aba093281f3e728db31c3d638c6e030be3e733d908f3f3d69586409cd5d33956"
            },
            "downloads": -1,
            "filename": "llama_index_packs_retry_engine_weaviate-0.1.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b52ef6ef0a5510af5f75ddd281884d03",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8.1,<4.0",
            "size": 3452,
            "upload_time": "2024-02-22T01:35:04",
            "upload_time_iso_8601": "2024-02-22T01:35:04.336717Z",
            "url": "https://files.pythonhosted.org/packages/cf/51/f335faf7754cd49cd3273bf0cedccafc01b6c0065cf0f3d9081e06702d21/llama_index_packs_retry_engine_weaviate-0.1.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6cb62c056a12b28b52ea2f558a67af3a759a7968e97040fb3070a0e942bfd4a8",
                "md5": "9cf97d3aed04b45c16903a9517a709df",
                "sha256": "ab21909e9a0730a3ddcec94602b3859d7f536743937b043ba6445e333b416c15"
            },
            "downloads": -1,
            "filename": "llama_index_packs_retry_engine_weaviate-0.1.3.tar.gz",
            "has_sig": false,
            "md5_digest": "9cf97d3aed04b45c16903a9517a709df",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8.1,<4.0",
            "size": 3110,
            "upload_time": "2024-02-22T01:35:05",
            "upload_time_iso_8601": "2024-02-22T01:35:05.617331Z",
            "url": "https://files.pythonhosted.org/packages/6c/b6/2c056a12b28b52ea2f558a67af3a759a7968e97040fb3070a0e942bfd4a8/llama_index_packs_retry_engine_weaviate-0.1.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-22 01:35:05",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "llama-index-packs-retry-engine-weaviate"
}
        
Elapsed time: 0.22345s