Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add NousResearch/Hermes-2-{Pro-Llama-3-80B,Theta-Llama-3-80B} #556

Merged
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: 3 additions & 1 deletion berkeley-function-call-leaderboard/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,9 @@ Below is *a table of models we support* to run our leaderboard evaluation agains
|mistral-small-2402 | Prompt|
|mistral-tiny-2312 | Prompt|
|Nexusflow-Raven-v2 | Function Calling|
|NousResearch/Hermes-2-{Pro-Llama-3-8B,Pro-Mistral-7B,Theta-Llama-3-8B} 💻| Function Calling|
|NousResearch/Hermes-2-Pro-Llama-3-{8B,70B} 💻| Function Calling|
|NousResearch/Hermes-2-Pro-Mistral-7B 💻| Function Calling|
|NousResearch/Hermes-2-Theta-Llama-3-{8B,70B} 💻| Function Calling|
|snowflake/arctic | Prompt|
|nvidia/nemotron-4-340b-instruct| Prompt|
|THUDM/glm-4-9b-chat 💻| Function Calling|
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,12 @@
"NousResearch",
"apache-2.0",
],
"NousResearch/Hermes-2-Pro-Llama-3-70B": [
"Hermes-2-Pro-Llama-3-70B (FC)",
"https://huggingface.co/NousResearch/Hermes-2-Pro-Llama-3-70B",
"NousResearch",
"apache-2.0",
],
"NousResearch/Hermes-2-Pro-Mistral-7B": [
"Hermes-2-Pro-Mistral-7B (FC)",
"https://huggingface.co/NousResearch/Hermes-2-Pro-Mistral-7B",
Expand All @@ -336,6 +342,12 @@
"NousResearch",
"apache-2.0",
],
"NousResearch/Hermes-2-Theta-Llama-3-70B": [
"Hermes-2-Theta-Llama-3-70B (FC)",
"https://huggingface.co/NousResearch/Hermes-2-Theta-Llama-3-70B",
"NousResearch",
"apache-2.0",
],
"meta-llama/Meta-Llama-3-8B-Instruct": [
"Meta-Llama-3-8B-Instruct (Prompt)",
"https://llama.meta.com/llama3",
Expand Down Expand Up @@ -489,6 +501,8 @@
"NousResearch/Hermes-2-Pro-Mistral-7B": 135,
"NousResearch/Hermes-2-Pro-Llama-3-8B": 77,
"NousResearch/Hermes-2-Theta-Llama-3-8B": 73,
"NousResearch/Hermes-2-Theta-Llama-3-70B": 716,
"NousResearch/Hermes-2-Pro-Llama-3-70B": 674,
"meta-llama/Meta-Llama-3-8B-Instruct": 73,
"meta-llama/Meta-Llama-3-70B-Instruct": 307,
"gorilla-openfunctions-v2": 83,
Expand Down
2 changes: 2 additions & 0 deletions berkeley-function-call-leaderboard/model_handler/constant.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,10 @@
"meetkai/functionary-small-v2.4-FC",
"meetkai/functionary-medium-v2.4-FC",
"NousResearch/Hermes-2-Pro-Llama-3-8B",
"NousResearch/Hermes-2-Pro-Llama-3-70B",
"NousResearch/Hermes-2-Pro-Mistral-7B",
"NousResearch/Hermes-2-Theta-Llama-3-8B",
"NousResearch/Hermes-2-Theta-Llama-3-70B",
"command-r-plus-FC",
"command-r-plus-FC-optimized",
"THUDM/glm-4-9b-chat",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,10 @@
"meetkai/functionary-medium-v2.4-FC": FunctionaryHandler,
"databricks-dbrx-instruct": DatabricksHandler,
"NousResearch/Hermes-2-Pro-Llama-3-8B": HermesHandler,
"NousResearch/Hermes-2-Pro-Llama-3-70B": HermesHandler,
"NousResearch/Hermes-2-Pro-Mistral-7B": HermesHandler,
"NousResearch/Hermes-2-Theta-Llama-3-8B": HermesHandler,
"NousResearch/Hermes-2-Theta-Llama-3-70B": HermesHandler,
"meta-llama/Meta-Llama-3-8B-Instruct": LlamaHandler,
"meta-llama/Meta-Llama-3-70B-Instruct": LlamaHandler,
"command-r-plus-FC": CohereHandler,
Expand Down