Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -4,9 +4,9 @@ from array import array
|
|
| 4 |
from functools import lru_cache
|
| 5 |
import os, re, time
|
| 6 |
|
| 7 |
-
# 1. API Configuration -
|
| 8 |
HF_TOKEN = os.getenv("HF_TOKEN")
|
| 9 |
-
MODEL_ID = "Qwen/Qwen2.5-
|
| 10 |
client = InferenceClient(MODEL_ID, token=HF_TOKEN)
|
| 11 |
|
| 12 |
# 2. T3 High-Speed Logic Kernel
|
|
|
|
| 4 |
from functools import lru_cache
|
| 5 |
import os, re, time
|
| 6 |
|
| 7 |
+
# 1. API Configuration - REVERTED to the fully supported 7B model
|
| 8 |
HF_TOKEN = os.getenv("HF_TOKEN")
|
| 9 |
+
MODEL_ID = "Qwen/Qwen2.5-7B-Instruct"
|
| 10 |
client = InferenceClient(MODEL_ID, token=HF_TOKEN)
|
| 11 |
|
| 12 |
# 2. T3 High-Speed Logic Kernel
|