File tree Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -335,13 +335,12 @@ const generateFilteredTestcases = (): Testcase[] => {
335
335
llmClient = new AISdkClient ( {
336
336
model : wrapAISDKModel ( anthropic ( input . modelName ) ) ,
337
337
} ) ;
338
- } else if ( input . modelName . includes ( "groq" ) ) {
338
+ } else if (
339
+ input . modelName . includes ( "groq" ) ||
340
+ input . modelName . includes ( "kimi" )
341
+ ) {
339
342
llmClient = new AISdkClient ( {
340
- model : wrapAISDKModel (
341
- groq (
342
- input . modelName . substring ( input . modelName . indexOf ( "/" ) + 1 ) ,
343
- ) ,
344
- ) ,
343
+ model : wrapAISDKModel ( groq ( input . modelName ) ) ,
345
344
} ) ;
346
345
} else if ( input . modelName . includes ( "cerebras" ) ) {
347
346
llmClient = new AISdkClient ( {
Original file line number Diff line number Diff line change @@ -91,6 +91,10 @@ export const initStagehand = async ({
91
91
logger . init ( stagehand ) ;
92
92
93
93
const { debugUrl, sessionUrl } = await stagehand . init ( ) ;
94
+
95
+ // Set navigation timeout to 60 seconds for evaluations
96
+ stagehand . context . setDefaultNavigationTimeout ( 60_000 ) ;
97
+
94
98
return {
95
99
stagehand,
96
100
stagehandConfig : config ,
Original file line number Diff line number Diff line change @@ -84,6 +84,7 @@ const modelToProviderMap: { [key in AvailableModel]: ModelProvider } = {
84
84
"cerebras-llama-3.1-8b" : "cerebras" ,
85
85
"groq-llama-3.3-70b-versatile" : "groq" ,
86
86
"groq-llama-3.3-70b-specdec" : "groq" ,
87
+ "moonshotai/kimi-k2-instruct" : "groq" ,
87
88
"gemini-1.5-flash" : "google" ,
88
89
"gemini-1.5-pro" : "google" ,
89
90
"gemini-1.5-flash-8b" : "google" ,
You can’t perform that action at this time.
0 commit comments