-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtuneprompt.config.js
More file actions
37 lines (34 loc) · 838 Bytes
/
tuneprompt.config.js
File metadata and controls
37 lines (34 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
module.exports = {
providers: {
openai: {
apiKey: process.env.OPENAI_API_KEY,
model: 'gpt-4o',
maxTokens: 1000,
temperature: 0.7
},
anthropic: {
apiKey: process.env.ANTHROPIC_API_KEY,
model: 'claude-sonnet-4-20250514',
maxTokens: 1000,
temperature: 0.7
},
gemini: {
apiKey: process.env.GEMINI_API_KEY,
model: 'gemini-2.5-flash',
maxTokens: 1000,
temperature: 0.7
},
openrouter: {
apiKey: process.env.OPENROUTER_API_KEY,
model: 'nvidia/nemotron-3-nano-30b-a3b:free',
maxTokens: 400,
temperature: 0.7
}
},
// Global semantic similarity threshold
threshold: 0.8,
// Directory containing test files
testDir: './tests',
// Output format: 'json', 'table', or 'both'
outputFormat: 'table'
};