mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-06-09 06:45:13 +02:00
- Drop out all config, just leave Ollama + Cassandra + Qdrant
- Add workbench-ui
This commit is contained in:
parent
12975ae63a
commit
cd5828702b
1 changed files with 11 additions and 5 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue