Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -7,8 +7,8 @@ api_key = os.getenv("HUGGINGFACEHUB_API_TOKEN")
|
|
| 7 |
|
| 8 |
# API URLs
|
| 9 |
WHISPER_API_URL = "https://api-inference.huggingface.co/models/openai/whisper-large-v3-turbo"
|
| 10 |
-
|
| 11 |
-
MODEL = "deepseek-ai/DeepSeek-R1-Distill-Llama-70B"
|
| 12 |
API_URL = f"https://api-inference.huggingface.co/models/{MODEL}"
|
| 13 |
HEADERS = {"Authorization": f"Bearer {api_key}", "Content-Type": "application/json"}
|
| 14 |
|
|
|
|
| 7 |
|
| 8 |
# API URLs
|
| 9 |
WHISPER_API_URL = "https://api-inference.huggingface.co/models/openai/whisper-large-v3-turbo"
|
| 10 |
+
MODEL = "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B"
|
| 11 |
+
# MODEL = "deepseek-ai/DeepSeek-R1-Distill-Llama-70B"
|
| 12 |
API_URL = f"https://api-inference.huggingface.co/models/{MODEL}"
|
| 13 |
HEADERS = {"Authorization": f"Bearer {api_key}", "Content-Type": "application/json"}
|
| 14 |
|