@@ -10,10 +10,10 @@ The following LLM providers are currently supported:
1010<div className = " grid grid-cols-1 md:grid-cols-2 gap-4 mb-8" >
1111 <div className = " border p-4 rounded-md" >
1212 <h3 >OpenAI</h3 >
13- <p >Access GPT models including GPT-3. 5, GPT-4 , and more .</p >
13+ <p >Access GPT models including GPT-5, GPT-5.2, GPT-4.1 , and GPT-4o .</p >
1414 <div ><strong >Authentication:</strong > Bearer Token</div >
1515 <div ><strong >Default URL:</strong > https://api.openai.com/v1 </div >
16- <div ><strong >Vision Support:</strong > ✅ Yes (GPT-4o, GPT-5 , GPT-4.1, GPT-4 Turbo )</div >
16+ <div ><strong >Vision Support:</strong > ✅ Yes (GPT-5 series , GPT-4.1, GPT-4o )</div >
1717 </div >
1818
1919<div className = " border p-4 rounded-md" >
@@ -40,8 +40,7 @@ The following LLM providers are currently supported:
4040 <strong >Default URL:</strong > https://api.anthropic.com/v1
4141 </div >
4242 <div >
43- <strong >Vision Support:</strong > ✅ Yes (Claude 3, Claude 4, Claude 4.5 Sonnet, Claude 4.5
44- Haiku)
43+ <strong >Vision Support:</strong > ✅ Yes (Claude Opus 4.5, Claude Sonnet 4, Claude Opus 4)
4544 </div >
4645</div >
4746
@@ -55,7 +54,7 @@ The following LLM providers are currently supported:
5554 <strong >Default URL:</strong > https://api.cohere.com
5655 </div >
5756 <div >
58- <strong >Vision Support:</strong > ✅ Yes (Command A Vision, Aya Vision )
57+ <strong >Vision Support:</strong > ✅ Yes (Command A Vision)
5958 </div >
6059</div >
6160
@@ -112,30 +111,30 @@ The following LLM providers are currently supported:
112111 <strong >Default URL:</strong > https://generativelanguage.googleapis.com/v1
113112 </div >
114113 <div >
115- <strong >Vision Support:</strong > ✅ Yes (Gemini 2.5 )
114+ <strong >Vision Support:</strong > ✅ Yes (Gemini 3 Flash, Gemini 3 Pro )
116115 </div >
117116</div >
118117
119118<div className = " border p-4 rounded-md" >
120119 <h3 >Mistral</h3 >
121- <p >Access Mistral AI's models including vision-capable Pixtral.</p >
120+ <p >Access Mistral AI's models including vision-capable Pixtral and Large 3 .</p >
122121 <div >
123122 <strong >Authentication:</strong > Bearer Token
124123 </div >
125124 <div >
126125 <strong >Default URL:</strong > https://api.mistral.ai/v1
127126 </div >
128127 <div >
129- <strong >Vision Support:</strong > ✅ Yes (Pixtral)
128+ <strong >Vision Support:</strong > ✅ Yes (Pixtral Large, Ministral 3, Mistral Large 3 )
130129 </div >
131130</div >
132131
133132 <div className = " border p-4 rounded-md" >
134133 <h3 >Moonshot</h3 >
135- <p >Use Moonshot AI's models for natural language and vision tasks.</p >
134+ <p >Use Moonshot AI's Kimi models for natural language and vision tasks.</p >
136135 <div ><strong >Authentication:</strong > Bearer Token</div >
137136 <div ><strong >Default URL:</strong > https://api.moonshot.ai/v1 </div >
138- <div ><strong >Vision Support:</strong > ✅ Yes</div >
137+ <div ><strong >Vision Support:</strong > ✅ Yes (Kimi K2, Kimi K2 Thinking) </div >
139138 </div >
140139</div >
141140
@@ -151,14 +150,14 @@ ENABLE_VISION=true
151150
152151### Providers with Vision Support
153152
154- - ** OpenAI** : GPT-4o, GPT-5 , GPT-4.1, GPT-4 Turbo
155- - ** Anthropic** : Claude 3, Claude 4 , Claude 4.5 Sonnet, Claude 4.5 Haiku
156- - ** Google** : Gemini 2.5
157- - ** Cohere** : Command A Vision, Aya Vision
153+ - ** OpenAI** : GPT-5 series , GPT-4.1, GPT-4o
154+ - ** Anthropic** : Claude Opus 4.5 , Claude Sonnet 4 , Claude Opus 4
155+ - ** Google** : Gemini 3 Flash, Gemini 3 Pro
156+ - ** Cohere** : Command A Vision
158157- ** Ollama** : LLaVA, Llama 4, Llama 3.2 Vision
159158- ** Groq** : Vision models
160- - ** Mistral** : Pixtral
161- - ** Moonshot** : Vision models
159+ - ** Mistral** : Pixtral Large, Ministral 3, Mistral Large 3
160+ - ** Moonshot** : Kimi K2, Kimi K2 Thinking
162161
163162### Example Vision Request
164163
@@ -246,7 +245,7 @@ Generate content with OpenAI models:
246245curl -X POST http://localhost:8080/v1/chat/completions \
247246 -H " Content-Type: application/json" \
248247 -d ' {
249- "model": "gpt-3.5-turbo ",
248+ "model": "gpt-4o ",
250249 "messages": [
251250 {
252251 "role": "system",
@@ -271,10 +270,10 @@ curl http://localhost:8080/v1/models
271270Generate content with DeepSeek models:
272271
273272``` bash
274- curl -X POST http://localhost:8080/v1/chat/completions? provider=deepseek \
273+ curl -X POST http://localhost:8080/v1/chat/completions \
275274 -H " Content-Type: application/json" \
276275 -d ' {
277- "model": "deepseek-reasoner",
276+ "model": "deepseek/deepseek -reasoner",
278277 "messages": [
279278 {
280279 "role": "system",
@@ -302,7 +301,7 @@ Generate content with Anthropic Claude models:
302301curl -X POST http://localhost:8080/v1/chat/completions \
303302 -H " Content-Type: application/json" \
304303 -d ' {
305- "model": "claude-3-opus-20240229 ",
304+ "model": "anthropic/ claude-sonnet-4-20250514 ",
306305 "messages": [
307306 {
308307 "role": "system",
@@ -327,10 +326,10 @@ curl http://localhost:8080/v1/models?provider=anthropic
327326Generate content with Cohere models:
328327
329328``` bash
330- curl -X POST http://localhost:8080/v1/chat/completions? provider=cohere \
329+ curl -X POST http://localhost:8080/v1/chat/completions \
331330 -H " Content-Type: application/json" \
332331 -d ' {
333- "model": "command",
332+ "model": "cohere/ command-a-03-2025 ",
334333 "messages": [
335334 {
336335 "role": "system",
@@ -349,10 +348,10 @@ curl -X POST http://localhost:8080/v1/chat/completions?provider=cohere \
349348Generate content with Groq's high-performance models:
350349
351350``` bash
352- curl -X POST http://localhost:8080/v1/chat/completions? provider=groq \
351+ curl -X POST http://localhost:8080/v1/chat/completions \
353352 -H " Content-Type: application/json" \
354353 -d ' {
355- "model": "llama2- 70b-4096 ",
354+ "model": "groq/llama-3.3- 70b-versatile ",
356355 "messages": [
357356 {
358357 "role": "system",
@@ -371,10 +370,10 @@ curl -X POST http://localhost:8080/v1/chat/completions?provider=groq \
371370Generate content with Cloudflare Workers AI:
372371
373372``` bash
374- curl -X POST http://localhost:8080/v1/chat/completions? provider=cloudflare \
373+ curl -X POST http://localhost:8080/v1/chat/completions \
375374 -H " Content-Type: application/json" \
376375 -d ' {
377- "model": "llama-3.1-8b -instruct",
376+ "model": "cloudflare/@cf/meta/ llama-3.3-70b -instruct-fp8-fast ",
378377 "messages": [
379378 {
380379 "role": "system",
@@ -393,10 +392,10 @@ curl -X POST http://localhost:8080/v1/chat/completions?provider=cloudflare \
393392Generate content with locally-hosted Ollama models:
394393
395394``` bash
396- curl -X POST http://localhost:8080/v1/chat/completions? provider=ollama \
395+ curl -X POST http://localhost:8080/v1/chat/completions \
397396 -H " Content-Type: application/json" \
398397 -d ' {
399- "model": "llama2 ",
398+ "model": "ollama/llama3.3 ",
400399 "messages": [
401400 {
402401 "role": "system",
@@ -415,10 +414,10 @@ curl -X POST http://localhost:8080/v1/chat/completions?provider=ollama \
415414Generate content with Google's Gemini models:
416415
417416``` bash
418- curl -X POST http://localhost:8080/v1/chat/completions? provider=google \
417+ curl -X POST http://localhost:8080/v1/chat/completions \
419418 -H " Content-Type: application/json" \
420419 -d ' {
421- "model": "google/gemini-pro ",
420+ "model": "google/gemini-3-flash ",
422421 "messages": [
423422 {
424423 "role": "system",
@@ -437,10 +436,10 @@ curl -X POST http://localhost:8080/v1/chat/completions?provider=google \
437436Generate content with Mistral AI models:
438437
439438``` bash
440- curl -X POST http://localhost:8080/v1/chat/completions? provider=mistral \
439+ curl -X POST http://localhost:8080/v1/chat/completions \
441440 -H " Content-Type: application/json" \
442441 -d ' {
443- "model": "mistral-large-latest ",
442+ "model": "mistral/mistral -large-3 ",
444443 "messages": [
445444 {
446445 "role": "system",
@@ -459,10 +458,10 @@ curl -X POST http://localhost:8080/v1/chat/completions?provider=mistral \
459458Generate content with Moonshot AI models:
460459
461460``` bash
462- curl -X POST http://localhost:8080/v1/chat/completions? provider=moonshot \
461+ curl -X POST http://localhost:8080/v1/chat/completions \
463462 -H " Content-Type: application/json" \
464463 -d ' {
465- "model": "moonshot-v1-8k ",
464+ "model": "moonshot/kimi-k2-thinking ",
466465 "messages": [
467466 {
468467 "role": "system",
0 commit comments