Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -125,6 +125,7 @@ Article = {
|
|
125 |
|
126 |
# Initialize vectorstore
|
127 |
vectorstore = Weaviate(client, index_name="HereChat", text_key="text")
|
|
|
128 |
vectorstore._query_attrs = ["text", "title", "url", "views", "lang", "_additional {distance}"]
|
129 |
vectorstore.embedding = CohereEmbeddings(model="embed-multilingual-v2.0", cohere_api_key=cohere_api_key)
|
130 |
|
|
|
125 |
|
126 |
# Initialize vectorstore
|
127 |
vectorstore = Weaviate(client, index_name="HereChat", text_key="text")
|
128 |
+
client.schema.create(Article)
|
129 |
vectorstore._query_attrs = ["text", "title", "url", "views", "lang", "_additional {distance}"]
|
130 |
vectorstore.embedding = CohereEmbeddings(model="embed-multilingual-v2.0", cohere_api_key=cohere_api_key)
|
131 |
|