|
109 | 109 | 'apiUrl' => 'https://api.fireworks.ai/inference/v1', |
110 | 110 | 'apiKey' => Env::get('FIREWORKS_API_KEY', ''), |
111 | 111 | 'endpoint' => '/chat/completions', |
112 | | - 'defaultModel' => 'accounts/fireworks/models/mixtral-8x7b-instruct', |
| 112 | + 'defaultModel' => 'accounts/fireworks/models/llama4-maverick-instruct-basic', |
113 | 113 | 'defaultMaxTokens' => 1024, |
114 | 114 | 'contextLength' => 65_000, |
115 | 115 | 'maxOutputLength' => 4096, |
|
166 | 166 | ], |
167 | 167 | 'moonshot-kimi' => [ |
168 | 168 | 'providerType' => LLMProviderType::Moonshot->value, |
169 | | - 'apiUrl' => 'https://api.moonshot.ai/v1', |
| 169 | + 'apiUrl' => 'https://api.moonshot.cn/v1', |
170 | 170 | 'apiKey' => Env::get('MOONSHOT_API_KEY', ''), |
171 | 171 | 'endpoint' => '/chat/completions', |
172 | | - 'defaultModel' => 'kimi-k1.5-preview', |
| 172 | + 'defaultModel' => 'kimi-latest', |
173 | 173 | 'defaultMaxTokens' => 1024, |
174 | 174 | 'contextLength' => 128_000, |
175 | 175 | 'maxOutputLength' => 4096, |
|
179 | 179 | 'apiUrl' => 'http://localhost:11434/v1', |
180 | 180 | 'apiKey' => Env::get('OLLAMA_API_KEY', ''), |
181 | 181 | 'endpoint' => '/chat/completions', |
182 | | - 'defaultModel' => 'qwen2.5-coder:3b', //'gemma2:2b', |
| 182 | + 'defaultModel' => 'gemma3:1b', // 'qwen2.5-coder:3b', //'gemma2:2b', |
183 | 183 | 'defaultMaxTokens' => 1024, |
184 | 184 | 'httpClient' => 'http-ollama', |
185 | 185 | 'contextLength' => 128_000, |
|
214 | 214 | 'apiUrl' => 'https://api.perplexity.ai', |
215 | 215 | 'apiKey' => Env::get('PERPLEXITY_API_KEY', ''), |
216 | 216 | 'endpoint' => '/chat/completions', |
217 | | - 'defaultModel' => 'llama-3.1-sonar-small-128k-online', |
| 217 | + 'defaultModel' => 'sonar', |
218 | 218 | 'defaultMaxTokens' => 1024, |
219 | 219 | 'contextLength' => 128_000, |
220 | 220 | 'maxOutputLength' => 2048, |
|
234 | 234 | 'apiUrl' => 'https://api.together.xyz/v1', |
235 | 235 | 'apiKey' => Env::get('TOGETHER_API_KEY', ''), |
236 | 236 | 'endpoint' => '/chat/completions', |
237 | | - 'defaultModel' => 'mistralai/Mixtral-8x7B-Instruct-v0.1', |
| 237 | + 'defaultModel' => 'meta-llama/Llama-3.3-70B-Instruct-Turbo', |
238 | 238 | 'defaultMaxTokens' => 1024, |
239 | 239 | 'contextLength' => 128_000, |
240 | 240 | 'maxOutputLength' => 4096, |
|
244 | 244 | 'apiUrl' => 'https://api.x.ai/v1', |
245 | 245 | 'apiKey' => Env::get('XAI_API_KEY', ''), |
246 | 246 | 'endpoint' => '/chat/completions', |
247 | | - 'defaultModel' => '-1212', |
| 247 | + 'defaultModel' => 'grok-3', |
248 | 248 | 'defaultMaxTokens' => 1024, |
249 | 249 | 'contextLength' => 128_000, |
250 | 250 | 'maxOutputLength' => 128_000, |
|
0 commit comments