ArneBinder commited on
Commit
38e5624
1 Parent(s): d7a2972

switch back to SimpleVectorStore

Browse files

because download/upload of a vector store dump is not yet implemented for QdrantVectorStore

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -204,7 +204,7 @@ def main():
204
  DocumentStore(
205
  span_annotation_caption="adu",
206
  relation_annotation_caption="relation",
207
- vector_store=QdrantVectorStore(),
208
  )
209
  )
210
  # wrap the pipeline and the embedding model/tokenizer in a tuple to avoid that it gets called
 
204
  DocumentStore(
205
  span_annotation_caption="adu",
206
  relation_annotation_caption="relation",
207
+ vector_store=SimpleVectorStore(),
208
  )
209
  )
210
  # wrap the pipeline and the embedding model/tokenizer in a tuple to avoid that it gets called