vector_store_info = VectorStoreInfo(
content_info="support articles for a software platform",
metadata_info=[
MetadataInfo(
name="categories",
type="List",
description=(
"array of topics covered in the article, options ['Getting Started', 'Exporting Data from QuickBooks', 'Getting Started with Accounting', 'System Requirements']"
),
),
],
)
nodes = retriever.retrieve('What are the system requirements')
2025-01-06 20:35:37,565 - INFO - Using query str: What are the system requirements
2025-01-06 20:35:37,565 - INFO - Using filters: [('categories', 'in', 'System Requirements')]
2025-01-06 20:35:37,565 - INFO - Using top_k: 2
TypeError: 'in <string>' requires string as left operand, not list
from llama_index import download_loader
download_loader("GithubRepositoryReader")
Traceback (most recent call last):
File "<console>", line 1, in <module>
File "/usr/local/lib/python3.11/site-packages/llama_index/readers/download.py", line 49, in download_loader
reader_cls = download_llama_module(
^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/llama_index/download/module.py", line 217, in download_llama_module
module_info = get_module_info(
^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/llama_index/download/module.py", line 69, in get_module_info
library = json.loads(library_raw_content)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/json/__init__.py", line 346, in loads
return _default_decoder.decode(s)
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/json/decoder.py", line 337, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/json/decoder.py", line 353, in raw_decode
obj, end = self.scan_once(s, idx)
^^^^^^^^^^^^^^^^^^^^^^