Skip to content

Commit 32ff834

Browse files
committed
Fixing system prompt bool for llms
1 parent 5b59e29 commit 32ff834

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/toolshed/routes/ai/llm/models.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ if (env.CTTS_AI_LLM_OPENAI_API_KEY) {
248248
maxOutputTokens: 128_000,
249249
images: true,
250250
prefill: false,
251-
systemPrompt: false,
251+
systemPrompt: true,
252252
stopSequences: false,
253253
streaming: true,
254254
reasoning: true,
@@ -392,7 +392,7 @@ if (env.CTTS_AI_LLM_PERPLEXITY_API_KEY) {
392392
maxOutputTokens: 8000,
393393
images: false,
394394
prefill: false,
395-
systemPrompt: false,
395+
systemPrompt: true,
396396
stopSequences: true,
397397
streaming: true,
398398
reasoning: true,
@@ -408,7 +408,7 @@ if (env.CTTS_AI_LLM_PERPLEXITY_API_KEY) {
408408
maxOutputTokens: 8000,
409409
images: false,
410410
prefill: false,
411-
systemPrompt: false,
411+
systemPrompt: true,
412412
stopSequences: true,
413413
streaming: true,
414414
reasoning: true,

0 commit comments

Comments
 (0)