Spaces:
Sleeping
Sleeping
Update copyright, remove not working model, add Qwen3
Browse files
app.py
CHANGED
|
@@ -1,5 +1,4 @@
|
|
| 1 |
-
# SPDX-FileCopyrightText: 2025 J. Manrique Lopez de la Fuente <
|
| 2 |
-
# SPDX-FileCopyrightText: 2025 Industria de Diseño Textil S.A. INDITEX
|
| 3 |
#
|
| 4 |
# SPDX-License-Identifier: Apache-2.0
|
| 5 |
|
|
@@ -14,7 +13,7 @@ logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(
|
|
| 14 |
# --- Available Models ---
|
| 15 |
# We will use 'instruct' or 'chat' models because they are good following orders
|
| 16 |
AVAILABLE_MODELS = {
|
| 17 |
-
"
|
| 18 |
"Gemma 2 9B Instruct": "google/gemma-2-9b-it",
|
| 19 |
"Llama 3 8B Instruct": "meta-llama/Meta-Llama-3-8B-Instruct",
|
| 20 |
"Llama 3.1 8B Instruct": "meta-llama/Llama-3.1-8B-Instruct",
|
|
|
|
| 1 |
+
# SPDX-FileCopyrightText: 2025 J. Manrique Lopez de la Fuente <jsmanrique@gmail.com>
|
|
|
|
| 2 |
#
|
| 3 |
# SPDX-License-Identifier: Apache-2.0
|
| 4 |
|
|
|
|
| 13 |
# --- Available Models ---
|
| 14 |
# We will use 'instruct' or 'chat' models because they are good following orders
|
| 15 |
AVAILABLE_MODELS = {
|
| 16 |
+
"Qwen3": "Qwen/Qwen3-4B-Instruct-2507",
|
| 17 |
"Gemma 2 9B Instruct": "google/gemma-2-9b-it",
|
| 18 |
"Llama 3 8B Instruct": "meta-llama/Meta-Llama-3-8B-Instruct",
|
| 19 |
"Llama 3.1 8B Instruct": "meta-llama/Llama-3.1-8B-Instruct",
|