Switch Milvus for Qdrant in YAMLs (#43)

* Qdrant working

* - Fix missing prompt templates
- Bump version
- Add Qdrant to packages

* Switch Milvus for Qdrant in config files
This commit is contained in:
cybermaggedon 2024-08-27 23:37:24 +01:00 committed by GitHub
parent 2622c48690
commit 32b087fbf6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
36 changed files with 1127 additions and 1520 deletions

View file

@ -1,6 +1,6 @@
# VERSION=$(shell git describe | sed 's/^v//')
VERSION=0.7.19
VERSION=0.7.20
DOCKER=podman
@ -43,9 +43,12 @@ GRAPHS=cassandra neo4j
tg-launch-%.yaml: templates/%.jsonnet templates/components/version.jsonnet
jsonnet -S ${@:tg-launch-%.yaml=templates/%.jsonnet} > $@
# VECTORDB=milvus
VECTORDB=qdrant
update-templates: set-version
for graph in ${GRAPHS}; do \
cm=$${graph},pulsar,milvus,grafana; \
cm=$${graph},pulsar,${VECTORDB},grafana; \
input=templates/main.jsonnet; \
output=tg-storage-$${graph}.yaml; \
echo $${graph} '->' $${output}; \
@ -53,7 +56,7 @@ update-templates: set-version
done
for model in ${MODELS}; do \
for graph in ${GRAPHS}; do \
cm=$${graph},pulsar,milvus,grafana,trustgraph,$${model}; \
cm=$${graph},pulsar,${VECTORDB},grafana,trustgraph,$${model}; \
input=templates/main.jsonnet; \
output=tg-launch-$${model}-$${graph}.yaml; \
echo $${model} + $${graph} '->' $${output}; \