Skip to content

Commit 4588540

Browse files
nrfultonGitHub Enterprise
authored andcommitted
Adds OpenAI GPT-OSS 20B and 120B.
1 parent 935f1be commit 4588540

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

mellea/backends/model_ids.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,17 @@ class ModelIdentifier:
118118

119119
QWEN3_14B = ModelIdentifier(hf_model_name="Qwen/Qwen3-14B", ollama_name="qwen3:14b")
120120

121+
######################
122+
#### OpenAI models ###
123+
######################
124+
125+
OPENAI_GPT_OSS_20B = ModelIdentifier(
126+
hf_model_name="openai/gpt-oss-20b", ollama_name="gpt-oss:20b"
127+
)
128+
OPENAI_GPT_OSS_120B = ModelIdentifier(
129+
hf_model_name="openai/gpt-oss-120b", ollama_name="gpt-oss:120b"
130+
)
131+
121132
#####################
122133
#### Misc models ####
123134
#####################

0 commit comments

Comments
 (0)