We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a845783 commit 6a7de4cCopy full SHA for 6a7de4c
1 file changed
evalbuff/src/llm.ts
@@ -12,7 +12,7 @@ import { generateText } from 'ai'
12
13
const anthropic = createAnthropic()
14
15
-const DEFAULT_MODEL = 'claude-sonnet-4-20250514'
+const DEFAULT_MODEL = 'claude-sonnet-4-6-20250415'
16
17
/**
18
* Generate a task prompt from a commit diff using the LLM API directly.
@@ -26,8 +26,6 @@ export async function generatePrompt(
26
model: anthropic(DEFAULT_MODEL),
27
system: systemPrompt,
28
prompt: userPrompt,
29
- maxOutputTokens: 500,
30
- temperature: 0.3,
31
})
32
33
return result.text.trim()
@@ -45,8 +43,6 @@ export async function analyzeFailureViaApi(
45
43
const result = await generateText({
46
44
47
prompt,
48
- maxOutputTokens: 4096,
49
- temperature: 0.2,
50
51
52
0 commit comments