env('LLM_HOST_URL', null), /** * Models configuration. */ 'models' => [ /** * Great for chatting, can have reasoning capabilities. * This model is typically used for conversational or thinking AI tasks. */ 'chat' => [ 'name' => env('LLM_CHAT_MODEL', null), 'shouldThink' => env('LLM_CHAT_MODEL_THINK', false), ], /** * Great for analyzing images, can have reasoning capabilities. * This model is typically used for tasks that require understanding and interpreting images. */ 'vision' => [ 'name' => env('LLM_VISION_MODEL', null), 'shouldThink' => env('LLM_VISION_MODEL_THINK', false), ], ] ];