File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -154,7 +154,8 @@ export class PromptOptimizer {
154154 // Pick a strong model for optimization if not defined
155155 const model = providerName === 'anthropic' ? 'claude-3-5-sonnet-latest' :
156156 providerName === 'openai' ? 'gpt-4o' :
157- providerName === 'gemini' ? 'gemini-2.0-flash' : undefined ;
157+ providerName === 'gemini' ? 'gemini-2.0-flash' :
158+ providerName === 'openrouter' ? 'openai/gpt-oss-20b:free' : undefined ;
158159
159160 if ( ! model ) continue ;
160161
Original file line number Diff line number Diff line change @@ -25,13 +25,13 @@ module.exports = {
2525 temperature : 0.7
2626 }
2727 } ,
28-
28+
2929 // Global semantic similarity threshold
3030 threshold : 0.8 ,
31-
31+
3232 // Directory containing test files
3333 testDir : './tests' ,
34-
34+
3535 // Output format: 'json', 'table', or 'both'
3636 outputFormat : 'table'
3737} ;
You can’t perform that action at this time.
0 commit comments