Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions berkeley-function-call-leaderboard/SUPPORTED_MODELS.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ For model names containing `{...}`, multiple versions are available. For example
| DeepSeek-V3.2-Exp | Function Calling | DeepSeek | DeepSeek-V3.2-Exp-FC |
| DeepSeek-V3.2-Exp | Prompt | DeepSeek | DeepSeek-V3.2-Exp |
| DeepSeek-V3.2-Exp (Prompt + Thinking) | Prompt | DeepSeek | DeepSeek-V3.2-Exp-thinking |
| DM-Cito-8B-v2 | Prompt | Mininglamp | DM-Cito-8B-v2 |
| DM-Cito-32B-v1 | Prompt | Mininglamp | DM-Cito-32B-v1 |
| DM-Cito-8B-v3 | Prompt | Mininglamp | DM-Cito-8B-v3 |
| Falcon3-{1B,3B,7B,10B}-Instruct | Function Calling | Self-hosted 💻 | tiiuae/Falcon3-{1B,3B,7B,10B}-Instruct-FC |
| FireFunction-v2 | Function Calling | Fireworks | firefunction-v2-FC |
| Functionary-Medium-v3.1 | Function Calling | MeetKai | meetkai/functionary-medium-v3.1-FC |
Expand Down Expand Up @@ -148,8 +149,7 @@ For model names containing `{...}`, multiple versions are available. For example
| xLAM-2-3b-fc-r | Function Calling | Self-hosted 💻 | Salesforce/xLAM-2-3b-fc-r |
| xLAM-2-70b-fc-r | Function Calling | Self-hosted 💻 | Salesforce/Llama-xLAM-2-70b-fc-r |
| xLAM-2-8b-fc-r | Function Calling | Self-hosted 💻 | Salesforce/Llama-xLAM-2-8b-fc-r |
| DM-Cito-32B-v1 | Prompt | Mininglamp | DM-Cito-32B-v1 |
| DM-Cito-8B-v3 | Prompt | Mininglamp | DM-Cito-8B-v3 |

---

## Additional Requirements for Certain Models
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1075,18 +1075,6 @@ class ModelConfig:
is_fc_model=True,
underscore_to_dot=False,
),
"DM-Cito-8B-v2": ModelConfig(
model_name="DM-Cito-8B-v2",
display_name="DM-Cito-8B-v2 (Prompt)",
url="https://www.mininglamp.com/",
org="Mininglamp",
license="Proprietary",
model_handler=DMCitoHandler,
input_price=None,
output_price=None,
is_fc_model=False,
underscore_to_dot=False,
),
"DM-Cito-8B-v3": ModelConfig(
model_name="DM-Cito-8B-v3",
display_name="DM-Cito-8B-v3 (Prompt)",
Expand Down Expand Up @@ -1193,7 +1181,7 @@ class ModelConfig:
input_price=None,
output_price=None,
is_fc_model=True,
underscore_to_dot=False,
underscore_to_dot=True,
),
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@
"qwq-32b-FC",
"qwq-32b",
"xiaoming-14B",
"DM-Cito-8B-v2",
"DM-Cito-8B-v3",
"DM-Cito-32B-v1",
"Ling/ling-lite-v1.5",
"glm-4.6-FC",
"glm-4.5-FC",
Expand Down