spanofzero commited on
Commit
0c23909
·
verified ·
1 Parent(s): 81c1320

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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 - Reverted to stable Sync Client
8
  HF_TOKEN = os.getenv("HF_TOKEN")
9
- MODEL_ID = "Qwen/Qwen2.5-1.5B-Instruct"
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