trustgraph/templates/prompts/cohere.jsonnet
cybermaggedon 2942c4dcf0
Maint/neater prompt jsonnet (#127)
* 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
2024-10-27 09:06:09 +00:00

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",
},
}
}