mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-25 16:36:21 +02:00
* Changed the JSONNET for prompt-template so that prompt templates are simpler. This tidies default-prompts.jsonnet so it's easier to see where the prompts are. * Updated prompt override templates to match new structure
42 lines
812 B
Jsonnet
42 lines
812 B
Jsonnet
// For Cohere. Not currently overriding prompts
|
|
|
|
local prompts = import "default-prompts.jsonnet";
|
|
|
|
prompts + {
|
|
|
|
// "system-template":: "PROMPT GOES HERE.",
|
|
|
|
"templates" +:: {
|
|
|
|
"question" +:: {
|
|
// "prompt": "PROMPT GOES HERE",
|
|
},
|
|
|
|
"extract-definitions" +:: {
|
|
// "prompt": "PROMPT GOES HERE",
|
|
},
|
|
|
|
"extract-relationships" +:: {
|
|
// "prompt": "PROMPT GOES HERE",
|
|
},
|
|
|
|
"extract-topics" +:: {
|
|
// "prompt": "PROMPT GOES HERE",
|
|
},
|
|
|
|
"extract-rows" +:: {
|
|
// "prompt": "PROMPT GOES HERE",
|
|
},
|
|
|
|
"kg-prompt" +:: {
|
|
// "prompt": "PROMPT GOES HERE",
|
|
},
|
|
|
|
"document-prompt" +:: {
|
|
// "prompt": "PROMPT GOES HERE",
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|