diff --git a/assistant/src/calls/guardian-question-copy.ts b/assistant/src/calls/guardian-question-copy.ts index 1f0331e6810..a69a47bf20a 100644 --- a/assistant/src/calls/guardian-question-copy.ts +++ b/assistant/src/calls/guardian-question-copy.ts @@ -82,7 +82,7 @@ export async function generateGuardianCopy( [userMessage(prompt)], undefined, undefined, - { signal, config: { modelIntent: "latency-optimized" } }, + { signal, config: { callSite: "guardianQuestionCopy" } }, ); const text = extractText(response); diff --git a/assistant/src/daemon/watch-handler.ts b/assistant/src/daemon/watch-handler.ts index 7466a8a2632..1f5478db494 100644 --- a/assistant/src/daemon/watch-handler.ts +++ b/assistant/src/daemon/watch-handler.ts @@ -164,7 +164,7 @@ async function generateCommentary(session: WatchSession): Promise { systemPrompt, { config: { - modelIntent: "latency-optimized", + callSite: "watchCommentary", max_tokens: 200, }, }, @@ -329,7 +329,7 @@ export async function generateSummary(session: WatchSession): Promise { systemPrompt, { config: { - modelIntent: "quality-optimized", + callSite: "watchSummary", max_tokens: 2000, }, },