mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-17 01:01:03 +02:00
Temperature should be a string in the templates
This commit is contained in:
parent
24b80f4789
commit
2436f5dd2a
1 changed files with 2 additions and 2 deletions
|
|
@ -26,7 +26,7 @@ local prompts = import "prompts/mixtral.jsonnet";
|
||||||
"-k",
|
"-k",
|
||||||
$["cohere-key"],
|
$["cohere-key"],
|
||||||
"-t",
|
"-t",
|
||||||
$["cohere-temperature"],
|
std.toString($["cohere-temperature"]),
|
||||||
])
|
])
|
||||||
.with_limits("0.5", "128M")
|
.with_limits("0.5", "128M")
|
||||||
.with_reservations("0.1", "128M");
|
.with_reservations("0.1", "128M");
|
||||||
|
|
@ -60,7 +60,7 @@ local prompts = import "prompts/mixtral.jsonnet";
|
||||||
"-k",
|
"-k",
|
||||||
$["cohere-key"],
|
$["cohere-key"],
|
||||||
"-t",
|
"-t",
|
||||||
$["cohere-temperature"],
|
std.toString($["cohere-temperature"]),
|
||||||
"-i",
|
"-i",
|
||||||
"non-persistent://tg/request/text-completion-rag",
|
"non-persistent://tg/request/text-completion-rag",
|
||||||
"-o",
|
"-o",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue