@@ -132,7 +132,7 @@ public function boot(): void
132132 name: 'Generic Assistant ' ,
133133 description: 'A helpful assistant that can answer questions. ' ,
134134 prompt: 'You are a helpful assistant. ' ,
135- llm: 'lmstudio/openai/gpt-oss-20b ' ,
135+ llm: 'lmstudio/qwen3.5-9b-mlx ' ,
136136 // llm: 'ollama/gpt-oss:20b',
137137 tools: [
138138 // $translationAgent->asTool('translate', 'Translate text from one language to another.'),
@@ -168,8 +168,8 @@ public function boot(): void
168168 description: 'A helpful assistant that can think and reason about the user \'s question. ' ,
169169 prompt: 'You are a helpful assistant. ' ,
170170 // llm: Cortex::llm('anthropic/claude-3-7-sonnet-20250219')
171- llm: Cortex::llm ('lmstudio/openai/gpt-oss-20b ' )
172- // llm: Cortex::llm('ollama/gpt-oss:20b ')
171+ // llm: Cortex::llm('lmstudio/qwen3.5-9b-mlx ')
172+ llm: Cortex::llm ('ollama/qwen3.5:9b ' )
173173 ->withMaxTokens (2048 )
174174 ->withParameters ([
175175 'thinking ' => [
@@ -200,7 +200,7 @@ public function boot(): void
200200 $ skillsAgent = new SkillsAgent ()
201201 ->withSkillsDirectory (package_path ('tests/fixtures/skills ' ))
202202 // ->withLLM(Cortex::llm('anthropic/claude-haiku-4-5')->ignoreFeatures())
203- ->withLLM (Cortex::llm ('ollama/glm-4.6:cloud ' )->ignoreFeatures ())
203+ ->withLLM (Cortex::llm ('ollama/qwen3.5:9b ' )->ignoreFeatures ())
204204 ->build ();
205205
206206 Cortex::registerAgent ($ skillsAgent );
0 commit comments