You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
322 B
8 lines
322 B
<?php |
|
|
|
return [ |
|
'base_url' => rtrim((string) env('OLLAMA_BASE_URL', 'http://10.100.1.14:11434'), '/'), |
|
'chat_model' => (string) env('OLLAMA_CHAT_MODEL', 'qwen2.5-coder:14b'), |
|
'embed_model' => (string) env('OLLAMA_EMBED_MODEL', 'nomic-embed-text'), |
|
'timeout' => (int) env('OLLAMA_TIMEOUT', 120), |
|
];
|
|
|