You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.I am encountering an ImportError related to VectorStore in ''pathway.xpacks.llm.vector_store'', even though my code does not attempt to import VectorStore but error is showing that I'm importing VectorStore. Below are the details:
This is the error:
Traceback (most recent call last):
File "/root/test1/program1.py", line 11, in
from pathway.xpacks.llm.vector_store import VectorStore
ImportError: cannot import name 'VectorStore' from 'pathway.xpacks.llm.vector_store' (/usr/local/lib/python3.10/dist-packages/pathway/xpacks/llm/vector_store.py)
My code:
import pathway as pw
import numpy as np
import sys
Update the system path to include the repository location
sys.path.append('/path/to/cloned/repository/python/pathway/xpacks/llm')
from pathway.xpacks.llm.vector_store import VectorStoreClient, VectorStoreServer
Please help me
The text was updated successfully, but these errors were encountered:
.I am encountering an ImportError related to VectorStore in ''pathway.xpacks.llm.vector_store'', even though my code does not attempt to import VectorStore but error is showing that I'm importing VectorStore. Below are the details:
This is the error:
Traceback (most recent call last):
File "/root/test1/program1.py", line 11, in
from pathway.xpacks.llm.vector_store import VectorStore
ImportError: cannot import name 'VectorStore' from 'pathway.xpacks.llm.vector_store' (/usr/local/lib/python3.10/dist-packages/pathway/xpacks/llm/vector_store.py)
My code:
import pathway as pw
import numpy as np
import sys
Update the system path to include the repository location
sys.path.append('/path/to/cloned/repository/python/pathway/xpacks/llm')
from pathway.xpacks.llm.vector_store import VectorStoreClient, VectorStoreServer
Please help me
The text was updated successfully, but these errors were encountered: