From cd5828702bb4151057004a06455fd1829ac719c0 Mon Sep 17 00:00:00 2001 From: Cyber MacGeddon Date: Sat, 28 Dec 2024 23:44:17 +0000 Subject: [PATCH] - Drop out all config, just leave Ollama + Cassandra + Qdrant - Add workbench-ui --- templates/generate-all | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/templates/generate-all b/templates/generate-all index 70aa6436..1ae71402 100755 --- a/templates/generate-all +++ b/templates/generate-all @@ -88,7 +88,7 @@ def full_config_object( return config_object([ graph_store, "pulsar", vector_store, embeddings, - "graph-rag", "grafana", "trustgraph", llm + "graph-rag", "grafana", "trustgraph", llm, "workbench-ui", ]) def generate_config( @@ -119,13 +119,19 @@ def generate_config( def generate_all(output, version): for platform in [ - "docker-compose", "minikube-k8s", "gcp-k8s" + "docker-compose", + # "minikube-k8s", "gcp-k8s" ]: for model in [ - "azure", "azure-openai", "bedrock", "claude", "cohere", - "googleaistudio", "llamafile", "ollama", "openai", "vertexai", + # "azure", "azure-openai", "bedrock", "claude", "cohere", + # "googleaistudio", "llamafile", + "ollama", + # "openai", "vertexai", ]: - for graph in [ "cassandra", "neo4j", "falkordb" ]: + for graph in [ + "cassandra", + # "neo4j", "falkordb" + ]: y = generate_config( llm=model, graph_store=graph, platform=platform,