Lots of AI related tweaks/fixes

This commit is contained in:
2026-01-22 11:06:05 -05:00
parent 3d1e8862f9
commit 1866cbae7e
18 changed files with 385 additions and 284 deletions

View File

@@ -101,9 +101,9 @@ function createNameValidationTask() {
{ role: 'system', content: prompts.system },
{ role: 'user', content: userPrompt }
],
model: MODELS.SMALL, // openai/gpt-oss-20b - reasoning model
model: MODELS.LARGE, // openai/gpt-oss-120b - reasoning model
temperature: 0.2, // Low temperature for consistent results
maxTokens: 1500, // Reasoning models need extra tokens for thinking
maxTokens: 3000, // Reasoning models need extra tokens for thinking
responseFormat: { type: 'json_object' }
});