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
4 changes: 4 additions & 0 deletions berkeley-function-call-leaderboard/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog

All notable changes to the Berkeley Function Calling Leaderboard will be documented in this file.
- [Feb 5, 2025] [#900](https://github.com/ShishirPatil/gorilla/pull/900): Add the following new models to the leaderboard:
- `uiuc-convai/CALM-8B`
- `uiuc-convai/CALM-70B`
- `uiuc-convai/CALM-405B`

- [Feb 2, 2025] [#898](https://github.com/ShishirPatil/gorilla/pull/898): Add the following new models to the leaderboard:
- `o3-mini-2025-01-31-FC`
Expand Down
1 change: 1 addition & 0 deletions berkeley-function-call-leaderboard/SUPPORTED_MODELS.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ Below is a comprehensive table of models supported for running leaderboard evalu
|Qwen/QwQ-32B-Preview 💻| Prompt|
|NovaSky-AI/Sky-T1-32B-Preview 💻| Prompt|
|tiiuae/Falcon3-{1B,3B,7B,10B}-Instruct 💻| Function Calling|
|uiuc-convai/CALM-{8B,70B,405B} 💻| Function Calling|

---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -865,6 +865,24 @@
"TII UAE",
"falcon-llm-license",
],
"uiuc-convai/CALM-8B": [
"CALM-8B",
"https://huggingface.co/uiuc-convai/CALM-8B",
"UIUC + Oumi"
"Meta Llama 3 Community"
],
"uiuc-convai/CALM-70B": [
"CALM-8B",
"https://huggingface.co/uiuc-convai/CALM-70B",
"UIUC + Oumi"
"Meta Llama 3 Community"
],
"uiuc-convai/CALM-405B": [
"CALM-8B",
"https://huggingface.co/uiuc-convai/CALM-405B",
"UIUC + Oumi"
"Meta Llama 3 Community"
]
}

INPUT_PRICE_PER_MILLION_TOKEN = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,9 @@
"tiiuae/Falcon3-7B-Instruct-FC": Falcon3FCHandler,
"tiiuae/Falcon3-3B-Instruct-FC": Falcon3FCHandler,
"tiiuae/Falcon3-1B-Instruct-FC": Falcon3FCHandler,
"uiuc-convai/CALM-8B": LlamaHandler,
"uiuc-convai/CALM-70B": LlamaHandler,
"uiuc-convai/CALM-405B": LlamaHandler
}

# Deprecated/outdated models, no longer on the leaderboard
Expand Down