Spaces:
Running
Running
milwright
commited on
Commit
·
5a8d72d
1
Parent(s):
99f801a
add gpt-oss-120b
Browse files- academic_templates.json +1 -1
- space_template.py +1 -1
- utils.py +3 -3
academic_templates.json
CHANGED
|
@@ -57,7 +57,7 @@
|
|
| 57 |
"How do I push a commit to GitHub?",
|
| 58 |
"I'm confused on how to use Jupyter notebooks"
|
| 59 |
],
|
| 60 |
-
"model": "
|
| 61 |
"api_key_var": "API_KEY",
|
| 62 |
"temperature": 0.5,
|
| 63 |
"max_tokens": 1000,
|
|
|
|
| 57 |
"How do I push a commit to GitHub?",
|
| 58 |
"I'm confused on how to use Jupyter notebooks"
|
| 59 |
],
|
| 60 |
+
"model": "openai/gpt-oss-120b",
|
| 61 |
"api_key_var": "API_KEY",
|
| 62 |
"temperature": 0.5,
|
| 63 |
"max_tokens": 1000,
|
space_template.py
CHANGED
|
@@ -768,7 +768,7 @@ def create_interface():
|
|
| 768 |
"anthropic/claude-3.5-haiku",
|
| 769 |
# OpenAI models
|
| 770 |
"openai/gpt-4o-mini-search-preview",
|
| 771 |
-
"openai/gpt-
|
| 772 |
# MistralAI models
|
| 773 |
"mistralai/mistral-medium-3",
|
| 774 |
# DeepSeek models
|
|
|
|
| 768 |
"anthropic/claude-3.5-haiku",
|
| 769 |
# OpenAI models
|
| 770 |
"openai/gpt-4o-mini-search-preview",
|
| 771 |
+
"openai/gpt-oss-120b",
|
| 772 |
# MistralAI models
|
| 773 |
"mistralai/mistral-medium-3",
|
| 774 |
# DeepSeek models
|
utils.py
CHANGED
|
@@ -343,9 +343,9 @@ AVAILABLE_MODELS = [
|
|
| 343 |
"description": "GPT-4o with search capabilities"
|
| 344 |
},
|
| 345 |
{
|
| 346 |
-
"id": "openai/gpt-
|
| 347 |
-
"name": "GPT-
|
| 348 |
-
"description": "
|
| 349 |
},
|
| 350 |
# MistralAI models
|
| 351 |
{
|
|
|
|
| 343 |
"description": "GPT-4o with search capabilities"
|
| 344 |
},
|
| 345 |
{
|
| 346 |
+
"id": "openai/gpt-oss-120b",
|
| 347 |
+
"name": "GPT-OSS 120B",
|
| 348 |
+
"description": "Open source GPT model"
|
| 349 |
},
|
| 350 |
# MistralAI models
|
| 351 |
{
|