2024-08-30 17:47:35 +01:00
|
|
|
// For VertexAI Gemini. Not currently overriding prompts
|
2024-08-23 23:34:16 +01:00
|
|
|
|
2024-10-27 09:06:09 +00:00
|
|
|
local prompts = import "default-prompts.jsonnet";
|
|
|
|
|
|
|
|
|
|
prompts + {
|
|
|
|
|
|
|
|
|
|
// "system-template":: "PROMPT GOES HERE.",
|
|
|
|
|
|
|
|
|
|
"templates" +:: {
|
2024-08-30 17:47:35 +01:00
|
|
|
|
2024-10-27 09:06:09 +00:00
|
|
|
"question" +:: {
|
|
|
|
|
// "prompt": "PROMPT GOES HERE",
|
|
|
|
|
},
|
2024-08-23 23:34:16 +01:00
|
|
|
|
2024-10-27 09:06:09 +00:00
|
|
|
"extract-definitions" +:: {
|
|
|
|
|
// "prompt": "PROMPT GOES HERE",
|
|
|
|
|
},
|
2024-09-15 23:40:37 +01:00
|
|
|
|
2024-10-27 09:06:09 +00:00
|
|
|
"extract-relationships" +:: {
|
|
|
|
|
// "prompt": "PROMPT GOES HERE",
|
|
|
|
|
},
|
2024-08-23 23:34:16 +01:00
|
|
|
|
2024-10-27 09:06:09 +00:00
|
|
|
"extract-topics" +:: {
|
|
|
|
|
// "prompt": "PROMPT GOES HERE",
|
|
|
|
|
},
|
2024-08-23 23:34:16 +01:00
|
|
|
|
2024-10-27 09:06:09 +00:00
|
|
|
"extract-rows" +:: {
|
|
|
|
|
// "prompt": "PROMPT GOES HERE",
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
"kg-prompt" +:: {
|
|
|
|
|
// "prompt": "PROMPT GOES HERE",
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
"document-prompt" +:: {
|
|
|
|
|
// "prompt": "PROMPT GOES HERE",
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
}
|
2024-08-23 23:34:16 +01:00
|
|
|
|
|
|
|
|
}
|
2024-10-27 09:06:09 +00:00
|
|
|
|