Skip to content

Commit

Permalink
update library and weaviate packs
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich committed Nov 22, 2023
1 parent 90ba704 commit f96e9fb
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions llama_hub/llama_packs/library.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@
"author": "andrei-fajardo",
"keywords": ["gradio", "react-agent", "chatbot", "tools"]
},
"WeaviateSubQuestion": {
"WeaviateSubQuestionPack": {
"id": "llama_packs/sub_question_weaviate",
"author": "erika-cardenas",
"keywords": ["weaviate", "query", "index"]
},
"WeaviateRetryEngine": {
"WeaviateRetryEnginePack": {
"id": "llama_packs/retry_engine_weaviate",
"author": "erika-cardenas",
"keywords": ["weaviate", "retry", "engine"]
Expand Down
2 changes: 1 addition & 1 deletion llama_hub/llama_packs/retry_engine_weaviate/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
)


class WeaviateRetryEngine(BaseLlamaPack):
class WeaviateRetryEnginePack(BaseLlamaPack):
"""Weaviate Retry query engine pack."""

def __init__(
Expand Down
4 changes: 2 additions & 2 deletions llama_hub/llama_packs/sub_question_weaviate/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This LlamaPack inserts your data into [Weaviate](https://weaviate.io/developers/
You can download llamapacks directly using `llamaindex-cli`, which comes installed with the `llama-index` python package:

```bash
llamaindex-cli download-llamapack WeaviateSubQuestion --download-dir ./weaviate_pack
llamaindex-cli download-llamapack WeaviateSubQuestionPack --download-dir ./weaviate_pack
```

You can then inspect the files at `./weaviate_pack` and use them as a template for your own project.
Expand All @@ -21,7 +21,7 @@ from llama_index.llama_pack import download_llama_pack

# download and install dependencies
WeaviateSubQuestionPack = download_llama_pack(
"WeaviateSubQuestion", "./weaviate_pack"
"WeaviateSubQuestionPack", "./weaviate_pack"
)
```

Expand Down
2 changes: 1 addition & 1 deletion llama_hub/llama_packs/sub_question_weaviate/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from llama_index.query_engine import SubQuestionQueryEngine


class WeaviateSubQuestion(BaseLlamaPack):
class WeaviateSubQuestionPack(BaseLlamaPack):
"""Weaviate Sub-Question query engine pack."""

def __init__(
Expand Down

0 comments on commit f96e9fb

Please sign in to comment.