mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-30 02:46:23 +02:00
* Restructure directory * Config loading * Variable override points in JSONNET templates, separate pulsar-manager template * Bump version * Tidy chunking * Simplified prompt overrides * Update config loader * Fix recursive chunker template
21 lines
451 B
Jsonnet
21 lines
451 B
Jsonnet
|
|
// For OpenAI LLMs
|
|
|
|
local base = import "base/base.jsonnet";
|
|
local images = import "values/images.jsonnet";
|
|
local url = import "values/url.jsonnet";
|
|
|
|
{
|
|
|
|
// "prompt-definition-template": "PROMPT GOES HERE",
|
|
|
|
// "prompt-relationship-template":: "PROMPT GOES HERE",
|
|
|
|
// "prompt-knowledge-query-template":: "PROMPT GOES HERE",
|
|
|
|
// "prompt-document-query-template":: "PROMPT GOES HERE",
|
|
|
|
// "prompt-rows-template":: "PROMPT GOES HERE",
|
|
|
|
}
|
|
|