Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -11,17 +11,14 @@ OPENROUTER_API_KEY = "sk-or-v1-60036e491e1e7319dc4a55e913c0393b00a476b475ddfba59
|
|
11 |
TEXT_MODELS = {
|
12 |
"Mistral Small": "mistralai/mistral-small-3.2-24b-instruct:free",
|
13 |
"Claude 3 Haiku": "anthropic/claude-3-haiku",
|
14 |
-
"Gemini Pro": "google/gemini-2.5-pro-exp-03-25",
|
15 |
"Qwen": "qwen/qwen2.5-32b-instruct:free",
|
16 |
"Mistral 3.1": "mistralai/mistral-small-3.1-24b-instruct:free",
|
17 |
"Gemma": "google/gemma-3-4b-it:free",
|
18 |
-
"Llama 3": "meta-llama/llama-3-70b-instruct:free",
|
19 |
}
|
20 |
|
21 |
# Available image models
|
22 |
IMAGE_MODELS = {
|
23 |
"Kimi Vision": "moonshotai/kimi-vl-a3b-thinking:free",
|
24 |
-
"Gemini Pro Vision": "google/gemini-2.5-pro-exp-03-25",
|
25 |
"Qwen Vision": "qwen/qwen2.5-vl-32b-instruct:free",
|
26 |
"Gemma Vision": "google/gemma-3-4b-it:free",
|
27 |
"Llama 3 Vision": "meta-llama/llama-3.2-11b-vision-instruct:free",
|
@@ -241,8 +238,7 @@ with gr.Blocks(title="OpenRouter AI Multi-Modal Interface", css="style.css") as
|
|
241 |
"""
|
242 |
### Available Text Models
|
243 |
- **Mistral Small**: Powerful language model from Mistral AI
|
244 |
-
|
245 |
-
- **Gemini Pro**: Google's advanced language model
|
246 |
- **Qwen**: Alibaba's large language model
|
247 |
- **Mistral 3.1**: Earlier version of Mistral's model
|
248 |
- **Gemma**: Google's lightweight language model
|
@@ -255,7 +251,7 @@ with gr.Blocks(title="OpenRouter AI Multi-Modal Interface", css="style.css") as
|
|
255 |
"""
|
256 |
### Available Image Models
|
257 |
- **Kimi Vision**: Moonshot AI's vision-language model
|
258 |
-
|
259 |
- **Qwen Vision**: Alibaba's vision-language model
|
260 |
- **Gemma Vision**: Google's lightweight vision model
|
261 |
- **Llama 3 Vision**: Meta's vision-language model
|
|
|
11 |
TEXT_MODELS = {
|
12 |
"Mistral Small": "mistralai/mistral-small-3.2-24b-instruct:free",
|
13 |
"Claude 3 Haiku": "anthropic/claude-3-haiku",
|
|
|
14 |
"Qwen": "qwen/qwen2.5-32b-instruct:free",
|
15 |
"Mistral 3.1": "mistralai/mistral-small-3.1-24b-instruct:free",
|
16 |
"Gemma": "google/gemma-3-4b-it:free",
|
|
|
17 |
}
|
18 |
|
19 |
# Available image models
|
20 |
IMAGE_MODELS = {
|
21 |
"Kimi Vision": "moonshotai/kimi-vl-a3b-thinking:free",
|
|
|
22 |
"Qwen Vision": "qwen/qwen2.5-vl-32b-instruct:free",
|
23 |
"Gemma Vision": "google/gemma-3-4b-it:free",
|
24 |
"Llama 3 Vision": "meta-llama/llama-3.2-11b-vision-instruct:free",
|
|
|
238 |
"""
|
239 |
### Available Text Models
|
240 |
- **Mistral Small**: Powerful language model from Mistral AI
|
241 |
+
|
|
|
242 |
- **Qwen**: Alibaba's large language model
|
243 |
- **Mistral 3.1**: Earlier version of Mistral's model
|
244 |
- **Gemma**: Google's lightweight language model
|
|
|
251 |
"""
|
252 |
### Available Image Models
|
253 |
- **Kimi Vision**: Moonshot AI's vision-language model
|
254 |
+
|
255 |
- **Qwen Vision**: Alibaba's vision-language model
|
256 |
- **Gemma Vision**: Google's lightweight vision model
|
257 |
- **Llama 3 Vision**: Meta's vision-language model
|