mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-16 16:51:02 +02:00
Fixed generate-all so that works
This commit is contained in:
parent
4c58c751e9
commit
a595217aa4
5 changed files with 16 additions and 6 deletions
|
|
@ -14,7 +14,7 @@ local prompts = import "prompts/mixtral.jsonnet";
|
|||
"azure-openai-rag-max-output-tokens":: 4192,
|
||||
"azure-openai-rag-temperature":: 0.0,
|
||||
|
||||
"text-completion" +: {
|
||||
"text-completion-rag" +: {
|
||||
|
||||
create:: function(engine)
|
||||
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ local prompts = import "prompts/mixtral.jsonnet";
|
|||
"claude-rag-max-output-tokens":: 4096,
|
||||
"claude-rag-temperature":: 0.0,
|
||||
|
||||
"text-completion" +: {
|
||||
"text-completion-rag" +: {
|
||||
|
||||
create:: function(engine)
|
||||
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ local prompts = import "prompts/mixtral.jsonnet";
|
|||
|
||||
"cohere-rag-temperature":: 0.0,
|
||||
|
||||
"text-completion" +: {
|
||||
"text-completion-rag" +: {
|
||||
|
||||
create:: function(engine)
|
||||
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ local prompts = import "prompts/mixtral.jsonnet";
|
|||
"googleaistudio-rag-temperature":: 0.0,
|
||||
"googleaistudio-rag-model":: "gemini-1.5-flash-002",
|
||||
|
||||
"text-completion" +: {
|
||||
"text-completion-rag" +: {
|
||||
|
||||
create:: function(engine)
|
||||
|
||||
|
|
|
|||
|
|
@ -87,8 +87,18 @@ def full_config_object(
|
|||
):
|
||||
|
||||
return config_object([
|
||||
graph_store, "pulsar", vector_store, embeddings,
|
||||
"graph-rag", "grafana", "trustgraph", llm, "workbench-ui",
|
||||
"triple-store-" + graph_store,
|
||||
"pulsar",
|
||||
"vector-store-" + vector_store,
|
||||
embeddings,
|
||||
"graph-rag",
|
||||
"grafana",
|
||||
"trustgraph-base",
|
||||
llm,
|
||||
llm + "-rag",
|
||||
"workbench-ui",
|
||||
"prompt-template",
|
||||
"agent-manager-react",
|
||||
])
|
||||
|
||||
def generate_config(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue