Non-programmer. Anyone have any luck connecting these two things? I have a self-hosted Weaviate vector database and am looking to query (Python in PyCharm) using openAI’s chatgpt-retrieval-plugin. I can query and connect to both Weaviate and ChatGPT okay individually. However, when querying Weaviate from the chatgpt plugin, the query returns no results. I believe I have verified my Weaviate schema and uploaded indexed, vectorized data and have my settings properly setup:
Docker Compose:
version: ‘3.4’
services:
weaviate:
image: semitechnologies/weaviate:1.22.3
ports:
- “8080:8080”
restart: on-failure
environment:
QUERY_DEFAULTS_LIMIT: 25
AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED: ‘true’
PERSISTENCE_DATA_PATH: ‘/var/lib/weaviate’
DEFAULT_VECTORIZER_MODULE: ‘text2vec-openai’
ENABLE_MODULES: ‘text2vec-cohere,text2vec-huggingface,text2vec-palm,text2vec-openai,generative-openai,generative-cohere,generative-palm,ref2vec-centroid,reranker-cohere,qna-openai’
CLUSTER_HOSTNAME: ‘node1’
Can anyone point me in the right direction? I’d be happy to provide schema, example files and query scripts. I’m going crazy trying to figure this issue out.