bfcl-eval 2025.11.3.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- bfcl_eval-2025.11.3.4/CHANGELOG.md +473 -0
- bfcl_eval-2025.11.3.4/CONTRIBUTING.md +150 -0
- bfcl_eval-2025.11.3.4/LOG_GUIDE.md +37 -0
- bfcl_eval-2025.11.3.4/PKG-INFO +384 -0
- bfcl_eval-2025.11.3.4/README.md +336 -0
- bfcl_eval-2025.11.3.4/SUPPORTED_MODELS.md +149 -0
- bfcl_eval-2025.11.3.4/TEST_CATEGORIES.md +50 -0
- bfcl_eval-2025.11.3.4/architecture_diagram.png +0 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/.env.example +46 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/__init__.py +0 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/__main__.py +320 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/_llm_response_generation.py +399 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/constants/__init__.py +0 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/constants/category_mapping.py +90 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/constants/column_headers.py +99 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/constants/default_prompts.py +107 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/constants/enums.py +41 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/constants/eval_config.py +40 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/constants/executable_backend_config.py +46 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/constants/model_config.py +2079 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/constants/supported_models.py +177 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/constants/type_mappings.py +89 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/BFCL_v4_format_sensitivity.json +10 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/BFCL_v4_irrelevance.json +240 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/BFCL_v4_live_irrelevance.json +884 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/BFCL_v4_live_multiple.json +1053 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/BFCL_v4_live_parallel.json +16 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/BFCL_v4_live_parallel_multiple.json +24 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/BFCL_v4_live_relevance.json +16 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/BFCL_v4_live_simple.json +258 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/BFCL_v4_memory.json +155 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/BFCL_v4_multi_turn_base.json +200 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/BFCL_v4_multi_turn_long_context.json +200 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/BFCL_v4_multi_turn_miss_func.json +200 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/BFCL_v4_multi_turn_miss_param.json +200 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/BFCL_v4_multiple.json +200 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/BFCL_v4_parallel.json +200 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/BFCL_v4_parallel_multiple.json +200 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/BFCL_v4_simple_java.json +100 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/BFCL_v4_simple_javascript.json +50 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/BFCL_v4_simple_python.json +400 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/BFCL_v4_web_search.json +100 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/README.md +228 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/memory_prereq_conversation/memory_customer.json +10 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/memory_prereq_conversation/memory_finance.json +7 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/memory_prereq_conversation/memory_healthcare.json +5 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/memory_prereq_conversation/memory_notetaker.json +5 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/memory_prereq_conversation/memory_student.json +10 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/multi_turn_func_doc/gorilla_file_system.json +18 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/multi_turn_func_doc/math_api.json +17 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/multi_turn_func_doc/memory_kv.json +15 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/multi_turn_func_doc/memory_rec_sum.json +5 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/multi_turn_func_doc/memory_vector.json +12 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/multi_turn_func_doc/message_api.json +10 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/multi_turn_func_doc/posting_api.json +14 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/multi_turn_func_doc/ticket_api.json +9 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/multi_turn_func_doc/trading_bot.json +21 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/multi_turn_func_doc/travel_booking.json +18 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/multi_turn_func_doc/vehicle_control.json +22 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/multi_turn_func_doc/web_search.json +2 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/possible_answer/BFCL_v4_live_multiple.json +1053 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/possible_answer/BFCL_v4_live_parallel.json +16 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/possible_answer/BFCL_v4_live_parallel_multiple.json +24 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/possible_answer/BFCL_v4_live_simple.json +258 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/possible_answer/BFCL_v4_memory.json +155 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/possible_answer/BFCL_v4_multi_turn_base.json +200 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/possible_answer/BFCL_v4_multi_turn_long_context.json +200 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/possible_answer/BFCL_v4_multi_turn_miss_func.json +200 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/possible_answer/BFCL_v4_multi_turn_miss_param.json +200 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/possible_answer/BFCL_v4_multiple.json +200 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/possible_answer/BFCL_v4_parallel.json +200 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/possible_answer/BFCL_v4_parallel_multiple.json +200 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/possible_answer/BFCL_v4_simple_java.json +100 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/possible_answer/BFCL_v4_simple_javascript.json +50 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/possible_answer/BFCL_v4_simple_python.json +400 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/possible_answer/BFCL_v4_web_search.json +100 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/unused_datasets/executable_eval_sanity_check/api_status_check_ground_truth_executable.json +28 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/unused_datasets/executable_eval_sanity_check/api_status_check_ground_truth_rest.json +70 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/unused_datasets/possible_answer/BFCL_v4_exec_multiple.json +50 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/unused_datasets/possible_answer/BFCL_v4_exec_parallel.json +50 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/unused_datasets/possible_answer/BFCL_v4_exec_parallel_multiple.json +40 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/unused_datasets/possible_answer/BFCL_v4_exec_simple.json +100 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/unused_datasets/possible_answer/BFCL_v4_multi_turn_composite.json +200 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/unused_datasets/possible_answer/BFCL_v4_rest.json +70 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/unused_datasets/possible_answer/BFCL_v4_sql.json +100 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/unused_datasets/question/BFCL_v4_chatable.json +200 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/unused_datasets/question/BFCL_v4_exec_multiple.json +50 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/unused_datasets/question/BFCL_v4_exec_parallel.json +50 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/unused_datasets/question/BFCL_v4_exec_parallel_multiple.json +40 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/unused_datasets/question/BFCL_v4_exec_simple.json +100 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/unused_datasets/question/BFCL_v4_multi_turn_composite.json +200 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/unused_datasets/question/BFCL_v4_rest.json +70 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/data/unused_datasets/question/BFCL_v4_sql.json +100 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/eval_checker/__init__.py +0 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/eval_checker/agentic_eval/__init__.py +0 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/eval_checker/agentic_eval/agentic_checker.py +49 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/eval_checker/ast_eval/__init__.py +0 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/eval_checker/ast_eval/ast_checker.py +646 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/eval_checker/ast_eval/type_convertor/__init__.py +0 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/eval_checker/ast_eval/type_convertor/java_type_converter.py +407 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/eval_checker/ast_eval/type_convertor/js_type_converter.py +311 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/eval_checker/eval_runner.py +914 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/eval_checker/eval_runner_helper.py +696 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/eval_checker/multi_turn_eval/__init__.py +0 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/eval_checker/multi_turn_eval/func_source_code/__init__.py +0 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/eval_checker/multi_turn_eval/func_source_code/gorilla_file_system.py +834 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/eval_checker/multi_turn_eval/func_source_code/long_context.py +408 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/eval_checker/multi_turn_eval/func_source_code/math_api.py +373 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/eval_checker/multi_turn_eval/func_source_code/memory_api_metaclass.py +88 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/eval_checker/multi_turn_eval/func_source_code/memory_kv.py +334 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/eval_checker/multi_turn_eval/func_source_code/memory_rec_sum.py +147 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/eval_checker/multi_turn_eval/func_source_code/memory_vector.py +372 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/eval_checker/multi_turn_eval/func_source_code/message_api.py +320 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/eval_checker/multi_turn_eval/func_source_code/posting_api.py +313 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/eval_checker/multi_turn_eval/func_source_code/ticket_api.py +265 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/eval_checker/multi_turn_eval/func_source_code/trading_bot.py +705 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/eval_checker/multi_turn_eval/func_source_code/travel_booking.py +923 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/eval_checker/multi_turn_eval/func_source_code/vehicle_control.py +703 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/eval_checker/multi_turn_eval/func_source_code/web_search.py +299 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/eval_checker/multi_turn_eval/multi_turn_checker.py +314 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/eval_checker/multi_turn_eval/multi_turn_utils.py +146 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/__init__.py +0 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/api_inference/__init__.py +0 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/api_inference/claude.py +350 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/api_inference/cohere.py +319 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/api_inference/deepseek.py +128 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/api_inference/dm_cito.py +20 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/api_inference/fireworks.py +116 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/api_inference/functionary.py +19 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/api_inference/gemini.py +359 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/api_inference/glm.py +22 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/api_inference/gogoagent.py +21 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/api_inference/gorilla.py +118 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/api_inference/grok.py +36 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/api_inference/kimi.py +23 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/api_inference/ling.py +82 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/api_inference/mining.py +127 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/api_inference/mistral.py +215 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/api_inference/nemotron.py +124 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/api_inference/nexus.py +229 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/api_inference/nova.py +211 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/api_inference/novita.py +58 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/api_inference/nvidia.py +53 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/api_inference/openai_completion.py +297 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/api_inference/openai_response.py +307 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/api_inference/qwen.py +355 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/api_inference/writer.py +46 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/base_handler.py +993 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/local_inference/__init__.py +0 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/local_inference/arch.py +209 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/local_inference/base_oss_handler.py +387 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/local_inference/bielik.py +33 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/local_inference/bitagent.py +108 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/local_inference/deepseek_reasoning.py +181 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/local_inference/falcon_fc.py +95 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/local_inference/gemma.py +69 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/local_inference/glm.py +67 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/local_inference/granite.py +112 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/local_inference/granite_3.py +292 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/local_inference/hammer.py +164 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/local_inference/llama.py +66 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/local_inference/llama_3_1.py +245 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/local_inference/minicpm.py +31 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/local_inference/minicpm_fc.py +342 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/local_inference/mistral_fc.py +303 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/local_inference/phi.py +56 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/local_inference/phi_fc.py +227 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/local_inference/quick_testing_oss.py +31 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/local_inference/qwen.py +210 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/local_inference/qwen_fc.py +306 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/local_inference/salesforce_llama.py +111 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/local_inference/salesforce_qwen.py +114 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/local_inference/think_agent.py +181 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/parser/__init__.py +0 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/parser/java_parser.py +135 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/parser/js_parser.py +63 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/parser/json_parser.py +21 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/parser/xml_parser.py +71 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/model_handler/utils.py +927 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/scripts/_compile_helper.py +249 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/scripts/check_func_doc_format.py +423 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/scripts/check_illegal_python_param_name.py +72 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/scripts/compile_multi_turn_func_doc.py +50 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/scripts/visualize_multi_turn_ground_truth_conversation.py +138 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/test_case_ids_to_generate.json.example +26 -0
- bfcl_eval-2025.11.3.4/bfcl_eval/utils.py +956 -0
- bfcl_eval-2025.11.3.4/bfcl_eval.egg-info/PKG-INFO +384 -0
- bfcl_eval-2025.11.3.4/bfcl_eval.egg-info/SOURCES.txt +193 -0
- bfcl_eval-2025.11.3.4/bfcl_eval.egg-info/dependency_links.txt +1 -0
- bfcl_eval-2025.11.3.4/bfcl_eval.egg-info/entry_points.txt +2 -0
- bfcl_eval-2025.11.3.4/bfcl_eval.egg-info/requires.txt +41 -0
- bfcl_eval-2025.11.3.4/bfcl_eval.egg-info/top_level.txt +1 -0
- bfcl_eval-2025.11.3.4/openfunctions_evaluation.py +11 -0
- bfcl_eval-2025.11.3.4/pyproject.toml +80 -0
- bfcl_eval-2025.11.3.4/setup.cfg +4 -0
|
@@ -0,0 +1,473 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to the Berkeley Function Calling Leaderboard will be documented in this file.
|
|
4
|
+
|
|
5
|
+
- [Oct 1, 2025] [#1177](https://github.com/ShishirPatil/gorilla/pull/1177): Fix ground truth for `multi_turn_base_154`.
|
|
6
|
+
- [Sep 27, 2025] [#1185](https://github.com/ShishirPatil/gorilla/pull/1185): Introduce the `--partial-eval` flag to the `bfcl evaluate` command, allowing partial evaluation on a subset of available test entries in the model result files.
|
|
7
|
+
- [Sep 17, 2025] [#1175](https://github.com/ShishirPatil/gorilla/pull/1175): Fix wrong date in ground truth for `live_simple_205-116-13`.
|
|
8
|
+
- [Jul 17, 2025] [#1019](https://github.com/ShishirPatil/gorilla/pull/1019): BFCL V4 release:
|
|
9
|
+
|
|
10
|
+
1. **New agentic domain**
|
|
11
|
+
- Introduces the agentic domain with two categories: Web Search and Memory Management.
|
|
12
|
+
- For more information, please see our accompanying [blog posts](https://gorilla.cs.berkeley.edu/blog.html).
|
|
13
|
+
2. **Revised overall-accuracy formula**
|
|
14
|
+
|
|
15
|
+
- As single-turn tasks approach saturation, weighting now favors complex, multi-step agentic tasks.
|
|
16
|
+
|
|
17
|
+
| Segment | Old % | New % |
|
|
18
|
+
| ----------- | ----: | -----: |
|
|
19
|
+
| Live | 33 | **10** |
|
|
20
|
+
| Non-Live | 33 | **10** |
|
|
21
|
+
| Irrelevance | 0 | **10** |
|
|
22
|
+
| Multi-Turn | 33 | **30** |
|
|
23
|
+
| Agentic | 0 | **40** |
|
|
24
|
+
|
|
25
|
+
3. **Leaderboard / model cleanup**
|
|
26
|
+
- Retires several deprecated models from the leaderboard.
|
|
27
|
+
- Removes unused model handlers to improve maintainability.
|
|
28
|
+
4. **Address #602**
|
|
29
|
+
- `Non-Live Acc` and `Live Acc` score calculation now excludes the Irrelevance/Relevance category scores.
|
|
30
|
+
5. **Resolve #1094.**
|
|
31
|
+
6. **Codebase refactor**
|
|
32
|
+
- Reorganizes the response-generation pipeline and related modules for easier maintenance.
|
|
33
|
+
- Simplify the response-generation pipeline logic for locally-hosted models.
|
|
34
|
+
- Introduce `enums.py`
|
|
35
|
+
7. **Test category rename**
|
|
36
|
+
The following categories have been renamed to avoid confusion. This applies to both dataset file names and leaderboard website columns.
|
|
37
|
+
- `simple` --> `simple_python`
|
|
38
|
+
- `java` --> `simple_java`
|
|
39
|
+
- `javascript` --> `simple_javascript`
|
|
40
|
+
8. **Directory layout overhaul**
|
|
41
|
+
Results and scores now use a _two-level_ hierarchy:
|
|
42
|
+
|
|
43
|
+
```text
|
|
44
|
+
result/<model>/<general_category>/<category>.json
|
|
45
|
+
score/<model>/<general_category>/<category>.json
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
`general_category` ∈ { **non_live**, **live**, **multi_turn**, **agentic**, **format_sensitivity** }
|
|
49
|
+
|
|
50
|
+
• For _agentic-memory_ tasks, an extra level distinguishes the memory backend:
|
|
51
|
+
|
|
52
|
+
```text
|
|
53
|
+
result/<model>/agentic/<memory_backend>/<category>.json
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
Migrate existing outputs to this structure before upgrading, otherwise the evaluation pipeline will fail to locate files.
|
|
57
|
+
9. **New model support**
|
|
58
|
+
Adds support for the following models:
|
|
59
|
+
- `claude-opus-4-1-20250805`
|
|
60
|
+
- `gpt-5-2025-08-07`
|
|
61
|
+
- `gpt-5-mini-2025-08-07`
|
|
62
|
+
- `gpt-5-nano-2025-08-07`
|
|
63
|
+
- `Qwen/Qwen3-30B-A3B-Instruct-2507`
|
|
64
|
+
- `Qwen/Qwen3-235B-A22B-Instruct-2507`
|
|
65
|
+
- `Qwen/Qwen3-4B-Instruct-2507`
|
|
66
|
+
|
|
67
|
+
- [Jul 8, 2025] [#1098](https://github.com/Shishirtil/gorilla/pull/1098):
|
|
68
|
+
- Re-introduce latency statistics for locally hosted models
|
|
69
|
+
- Update cost calculation to cover the entire dataset batch, instead of the average cost per 1k function calls
|
|
70
|
+
- [Jul 6, 2025] [#1100](https://github.com/ShishirPatil/gorilla/pull/1100): Add the following new models to the leaderboard:
|
|
71
|
+
- `gemini-2.5-pro-FC`
|
|
72
|
+
- `gemini-2.5-pro`
|
|
73
|
+
- `gemini-2.5-flash-FC`
|
|
74
|
+
- `gemini-2.5-flash`
|
|
75
|
+
- `gemini-2.5-flash-lite-preview-06-17-FC`
|
|
76
|
+
- `gemini-2.5-flash-lite-preview-06-17`
|
|
77
|
+
- [Jul 6, 2025] [#1099](https://github.com/ShishirPatil/gorilla/pull/1099): Migrate Gemini inference to Google AI Studio.
|
|
78
|
+
- [Jul 2, 2025] [#1090](https://github.com/ShishirPatil/gorilla/pull/1090): Updated OpenAI models to use `developer` role instead of `system` role, following OpenAI's documentation recommendations. This change affects only the OpenAI Responses handler.
|
|
79
|
+
- [Jul 2, 2025] [#1062](https://github.com/ShishirPatil/gorilla/pull/1062): Introduce OpenAI Responses handler, and add support for `o3-2025-04-16` and `o4-mini-2025-04-16`.
|
|
80
|
+
- [Jun 30, 2025] [#956](https://github.com/ShishirPatil/gorilla/pull/956): Fix typo in ground truth for multi_turn_base.
|
|
81
|
+
- [Jun 29, 2025] [#1034](https://github.com/ShishirPatil/gorilla/pull/1034): Add support for `claude-opus-4-20250514` and `claude-sonnet-4-20250514`
|
|
82
|
+
- [Jun 29, 2025] [#1086](https://github.com/ShishirPatil/gorilla/pull/1086): Fix duplicate test entry ID `live-relevance_3-3-0`.
|
|
83
|
+
- [Jun 29, 2025] [#1087](https://github.com/ShishirPatil/gorilla/pull/1087): Add missing base-cost definitions for three airport routes in `travel_booking` backend.
|
|
84
|
+
- [Jun 28, 2025] [#1085](https://github.com/ShishirPatil/gorilla/pull/1085): Fix question wording for `irrelevance_232`.
|
|
85
|
+
- [Jun 28, 2025] [#1084](https://github.com/ShishirPatil/gorilla/pull/1084): Fix typo in ground truth for `parallel_multiple_141`.
|
|
86
|
+
- [Jun 18, 2025] [#1068](https://github.com/ShishirPatil/gorilla/pull/1068): Fix prompt concatenation issue in Qwen chat template. The self-hosted `Qwen3` models are affected.
|
|
87
|
+
- [Jun 15, 2025] [#966](https://github.com/ShishirPatil/gorilla/pull/966): Remove the `travel_cost` parameter from multi-turn backend `TravelAPI.book_flight()` and now compute cost internally to eliminate ambiguity.
|
|
88
|
+
- [Jun 15, 2025] [#1060](https://github.com/ShishirPatil/gorilla/pull/1060): Fix multi-turn backend `GorillaFileSystem._get_item()` method to correctly handle `"."` in path strings.
|
|
89
|
+
- [Jun 14, 2025] [#1032](https://github.com/ShishirPatil/gorilla/pull/1032): Add `Llama-3.1-Nemotron-Ultra-253B-v1` to the leaderboard.
|
|
90
|
+
- [Jun 12, 2025] [#1056](https://github.com/ShishirPatil/gorilla/pull/1056): Add `Ling-Lite-V1.5` to the leaderboard.
|
|
91
|
+
- [Jun 12, 2025] [#1063](https://github.com/ShishirPatil/gorilla/pull/1063): Add support for `DeepSeek-R1-0528` and `DeepSeek-V3-0324`
|
|
92
|
+
- [Jun 11, 2025] [#1061](https://github.com/ShishirPatil/gorilla/pull/1061): Add support for DashScope API inference for `Qwen3` series
|
|
93
|
+
- [Jun 8, 2025] [#1054](https://github.com/ShishirPatil/gorilla/pull/1054), [#1055](https://github.com/ShishirPatil/gorilla/pull/1055): Packagerize codebase for PyPI Distribution. Now available with `pip install bfcl-eval`, in addition to the existing `pip install -e`.
|
|
94
|
+
- [May 27, 2025] [#1040](https://github.com/ShishirPatil/gorilla/pull/1040): Add the following new models to the leaderboard:
|
|
95
|
+
- `mistral-medium-2505`
|
|
96
|
+
- `mistral-medium-2505-FC`
|
|
97
|
+
- [May 24, 2025] [#1033](https://github.com/ShishirPatil/gorilla/pull/1033): Remove latency statistics for open-source models
|
|
98
|
+
- [May 24, 2025] [#1015](https://github.com/ShishirPatil/gorilla/pull/1015): Add the following new models to the leaderboard:
|
|
99
|
+
- `Qwen/Qwen3-0.6B`
|
|
100
|
+
- `Qwen/Qwen3-0.6B-FC`
|
|
101
|
+
- `Qwen/Qwen3-1.7B`
|
|
102
|
+
- `Qwen/Qwen3-1.7B-FC`
|
|
103
|
+
- `Qwen/Qwen3-4B`
|
|
104
|
+
- `Qwen/Qwen3-4B-FC`
|
|
105
|
+
- `Qwen/Qwen3-8B`
|
|
106
|
+
- `Qwen/Qwen3-8B-FC`
|
|
107
|
+
- `Qwen/Qwen3-14B`
|
|
108
|
+
- `Qwen/Qwen3-14B-FC`
|
|
109
|
+
- `Qwen/Qwen3-32B`
|
|
110
|
+
- `Qwen/Qwen3-32B-FC`
|
|
111
|
+
- `Qwen/Qwen3-30B-A3B`
|
|
112
|
+
- `Qwen/Qwen3-30B-A3B-FC`
|
|
113
|
+
- `Qwen/Qwen3-235B-A22B`
|
|
114
|
+
- `Qwen/Qwen3-235B-A22B-FC`
|
|
115
|
+
- [May 20, 2025] [#1014](https://github.com/ShishirPatil/gorilla/pull/1014): Add support for API inference for `QwQ-32B`
|
|
116
|
+
- [Apr 24, 2025] [#1002](https://github.com/ShishirPatil/gorilla/pull/1002): Add the following new models to the leaderboard:
|
|
117
|
+
- `gpt-4.1-2025-04-14-FC`
|
|
118
|
+
- `gpt-4.1-2025-04-14`
|
|
119
|
+
- `gpt-4.1-mini-2025-04-14-FC`
|
|
120
|
+
- `gpt-4.1-mini-2025-04-14`
|
|
121
|
+
- `gpt-4.1-nano-2025-04-14-FC`
|
|
122
|
+
- `gpt-4.1-nano-2025-04-14`
|
|
123
|
+
- [Apr 23, 2025] [#1000](https://github.com/ShishirPatil/gorilla/pull/1000): Add new model `microsoft/phi-4` to the leaderboard.
|
|
124
|
+
- [Apr 23, 2025] [#967](https://github.com/ShishirPatil/gorilla/pull/967): Add the following new models to the leaderboard:
|
|
125
|
+
- `microsoft/Phi-4-mini-instruct`
|
|
126
|
+
- `microsoft/Phi-4-mini-instruct-FC`
|
|
127
|
+
- [Apr 22, 2025] [#997](https://github.com/ShishirPatil/gorilla/pull/997): Several outdated or deprecated models will be excluded from the leaderboard and replaced with their updated successors to improve the leaderboard's overall maintainability.
|
|
128
|
+
- [Apr 14, 2025] [#987](https://github.com/ShishirPatil/gorilla/pull/987): Add the following new models to the leaderboard:
|
|
129
|
+
- `grok-3-beta`
|
|
130
|
+
- `grok-3-beta-FC`
|
|
131
|
+
- `grok-3-mini-beta`
|
|
132
|
+
- `grok-3-mini-beta-FC`
|
|
133
|
+
- [Apr 14, 2025] [#985](https://github.com/ShishirPatil/gorilla/pull/985): Support fully offline inference via the `--local-model-path` flag. Point it to a directory that already holds the model's files (`config.json`, tokenizer, weights, etc.); use this flag only when the model has been pre‑downloaded outside the default $HF_HOME cache.
|
|
134
|
+
- [Apr 13, 2025] [#980](https://github.com/ShishirPatil/gorilla/pull/980): Integrate Novita AI as a third-party inference provider for the following open-source models:
|
|
135
|
+
- `Llama-4-Maverick-17B-128E-Instruct-FP8` (Prompt & FC)
|
|
136
|
+
- `Llama-4-Scout-17B-16E-Instruct` (Prompt & FC)
|
|
137
|
+
- `Qwen/QwQ-32B` (Prompt & FC),
|
|
138
|
+
- [Apr 13, 2025] [#981](https://github.com/ShishirPatil/gorilla/pull/981): Add the following new models to the leaderboard:
|
|
139
|
+
- `meta-llama/Llama-4-Scout-17B-16E-Instruct-FC`
|
|
140
|
+
- `meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8-FC`
|
|
141
|
+
- [Apr 9, 2025] [#943](https://github.com/ShishirPatil/gorilla/pull/943): Retire the executable categories from the leaderboard. The following categories will be excluded from the evaluation pipeline:
|
|
142
|
+
- `rest`
|
|
143
|
+
- `exec_simple`
|
|
144
|
+
- `exec_parallel`
|
|
145
|
+
- `exec_multiple`
|
|
146
|
+
- `exec_parallel_multiple`
|
|
147
|
+
- [Apr 9, 2025] [#972](https://github.com/ShishirPatil/gorilla/pull/972): Add the following new models to the leaderboard:
|
|
148
|
+
- `Salesforce/Llama-xLAM-2-70b-fc-r`
|
|
149
|
+
- `Salesforce/Llama-xLAM-2-8b-fc-r`
|
|
150
|
+
- `Salesforce/xLAM-2-32b-fc-r`
|
|
151
|
+
- `Salesforce/xLAM-2-3b-fc-r`
|
|
152
|
+
- `Salesforce/xLAM-2-1b-fc-r`
|
|
153
|
+
- [Apr 8, 2025] [#979](https://github.com/ShishirPatil/gorilla/pull/979): Fix typo in `multi_turn_base_166` ground truth.
|
|
154
|
+
- [Apr 6, 2025] [#974](https://github.com/ShishirPatil/gorilla/pull/974): Add the following new models to the leaderboard:
|
|
155
|
+
- `gemini-2.5-pro-exp-03-25-FC`
|
|
156
|
+
- `gemini-2.5-pro-exp-03-25`
|
|
157
|
+
- [Mar 26, 2025] [#963](https://github.com/ShishirPatil/gorilla/pull/963): Fix wrong date in `live_simple_205-116-13`.
|
|
158
|
+
- [Mar 25, 2025] [#962](https://github.com/ShishirPatil/gorilla/pull/962): Fix ambiguous user query in `exec_parallel_10`.
|
|
159
|
+
- [Mar 20, 2025] [#951](https://github.com/ShishirPatil/gorilla/pull/951): Add new model `command-a-03-2025-FC` to the leaderboard.
|
|
160
|
+
- [Mar 15, 2025] [#942](https://github.com/ShishirPatil/gorilla/pull/942): Add the following new models to the leaderboard:
|
|
161
|
+
- `gemini-2.0-flash-lite-001-FC`
|
|
162
|
+
- `gemini-2.0-flash-lite-001`
|
|
163
|
+
- `gemini-2.0-flash-thinking-exp-01-21`
|
|
164
|
+
- [Mar 13, 2025] [#939](https://github.com/ShishirPatil/gorilla/pull/939): Add the following new models to the leaderboard:
|
|
165
|
+
- `google/gemma-3-1b-it`
|
|
166
|
+
- `google/gemma-3-4b-it`
|
|
167
|
+
- `google/gemma-3-12b-it`
|
|
168
|
+
- `google/gemma-3-27b-it`
|
|
169
|
+
- [Mar 13, 2025] [#941](https://github.com/ShishirPatil/gorilla/pull/941): Add new model `Team-ACE/ToolACE-2-8B` to the leaderboard.
|
|
170
|
+
- [Mar 2, 2025] [#923](https://github.com/ShishirPatil/gorilla/pull/923): Add the following new models to the leaderboard:
|
|
171
|
+
- `claude-3-7-sonnet-20250219`
|
|
172
|
+
- `claude-3-7-sonnet-20250219-FC`
|
|
173
|
+
- [Feb 28, 2025] [#925](https://github.com/ShishirPatil/gorilla/pull/925): Add support for the `Qwen2.5` models in Function Calling mode:
|
|
174
|
+
- `Qwen/Qwen2.5-0.5B-Instruct-FC`
|
|
175
|
+
- `Qwen/Qwen2.5-1.5B-Instruct-FC`
|
|
176
|
+
- `Qwen/Qwen2.5-3B-Instruct-FC`
|
|
177
|
+
- `Qwen/Qwen2.5-7B-Instruct-FC`
|
|
178
|
+
- `Qwen/Qwen2.5-14B-Instruct-FC`
|
|
179
|
+
- `Qwen/Qwen2.5-32B-Instruct-FC`
|
|
180
|
+
- `Qwen/Qwen2.5-72B-Instruct-FC`
|
|
181
|
+
- [Feb 28, 2025] [#926](https://github.com/ShishirPatil/gorilla/pull/926): Add support for local inference for `deepseek-ai/DeepSeek-R1`
|
|
182
|
+
- [Feb 27, 2025] [#922](https://github.com/ShishirPatil/gorilla/pull/922): Add the following new models to the leaderboard:
|
|
183
|
+
- `gpt-4.5-preview-2025-02-27`
|
|
184
|
+
- `gpt-4.5-preview-2025-02-27-FC`
|
|
185
|
+
- [Feb 26, 2025] [#901](https://github.com/ShishirPatil/gorilla/pull/901): Add new model `DeepSeek-R1` to the leaderboard.
|
|
186
|
+
- [Feb 24, 2025] [#917](https://github.com/ShishirPatil/gorilla/pull/917): Add new model `BitAgent/BitAgent-8B` to the leaderboard.
|
|
187
|
+
- [Feb 5, 2025] [#900](https://github.com/ShishirPatil/gorilla/pull/900), [#913](https://github.com/ShishirPatil/gorilla/pull/913): Add the following new models to the leaderboard:
|
|
188
|
+
- `uiuc-convai/CoALM-8B`
|
|
189
|
+
- `uiuc-convai/CoALM-70B`
|
|
190
|
+
- `uiuc-convai/CoALM-405B`
|
|
191
|
+
- [Feb 5, 2025] [#902](https://github.com/ShishirPatil/gorilla/pull/902): Add the following new models to the leaderboard:
|
|
192
|
+
- `gemini-2.0-flash-lite-preview-02-05-FC`
|
|
193
|
+
- `gemini-2.0-flash-lite-preview-02-05`
|
|
194
|
+
- `gemini-2.0-flash-001-FC`
|
|
195
|
+
- `gemini-2.0-flash-001`
|
|
196
|
+
- `gemini-2.0-pro-exp-02-05-FC`
|
|
197
|
+
- `gemini-2.0-pro-exp-02-05`
|
|
198
|
+
- [Feb 2, 2025] [#898](https://github.com/ShishirPatil/gorilla/pull/898): Add the following new models to the leaderboard:
|
|
199
|
+
- `o3-mini-2025-01-31-FC`
|
|
200
|
+
- `o3-mini-2025-01-31`
|
|
201
|
+
- [Jan 28, 2025] [#894](https://github.com/ShishirPatil/gorilla/pull/894): Add the following new models to the leaderboard:
|
|
202
|
+
- `tiiuae/Falcon3-1B-Instruct-FC`
|
|
203
|
+
- `tiiuae/Falcon3-3B-Instruct-FC`
|
|
204
|
+
- `tiiuae/Falcon3-7B-Instruct-FC`
|
|
205
|
+
- `tiiuae/Falcon3-10B-Instruct-FC`
|
|
206
|
+
- [Jan 27, 2025] [#895](https://github.com/ShishirPatil/gorilla/pull/895): Fix minor typo in default system prompt for prompting models.
|
|
207
|
+
- [Jan 20, 2025] [#887](https://github.com/ShishirPatil/gorilla/pull/887): Add new model `speakleash/Bielik-11B-v2.3-Instruct` to the leaderboard.
|
|
208
|
+
- [Jan 18, 2025] [#888](https://github.com/ShishirPatil/gorilla/pull/888): Add the following new models to the leaderboard:
|
|
209
|
+
- `NovaSky-AI/Sky-T1-32B-Preview`
|
|
210
|
+
- `Qwen/QwQ-32B-Preview`
|
|
211
|
+
- [Jan 12, 2025] [#881](https://github.com/ShishirPatil/gorilla/pull/881): Fix Nova handler for consecutive user prompt issue.
|
|
212
|
+
- [Jan 11, 2025] : Add new model `ZJared/Haha-7B` to the leaderboard.
|
|
213
|
+
- [Jan 4, 2025] [#865](https://github.com/ShishirPatil/gorilla/pull/865): Fix a copy-paste issue in `live_parallel_multiple_9-8-0` that caused a misalignment between the question and the possible answer.
|
|
214
|
+
- [Jan 3, 2025] [#864](https://github.com/ShishirPatil/gorilla/pull/864): Add support for pre-existing completion endpoints, allowing users to skip the local vLLM/SGLang server setup (using the `--skip-server-setup` flag) and point the generation pipeline to an existing OpenAI-compatible endpoint via `VLLM_ENDPOINT` and `VLLM_PORT`.
|
|
215
|
+
- [Jan 3, 2025] [#859](https://github.com/ShishirPatil/gorilla/pull/859): Rename directories: `proprietary_model` -> `api_inference`, `oss_model` -> `local_inference` for better clarity.
|
|
216
|
+
- [Dec 29, 2024] [#857](https://github.com/ShishirPatil/gorilla/pull/857): Add new model `DeepSeek-V3-FC` to the leaderboard.
|
|
217
|
+
- [Dec 29, 2024] [#855](https://github.com/ShishirPatil/gorilla/pull/855): Add new model `mistralai/Ministral-8B-Instruct-2410` to the leaderboard.
|
|
218
|
+
- [Dec 22, 2024] [#838](https://github.com/ShishirPatil/gorilla/pull/838): Fix parameter type mismatch error in possible answers.
|
|
219
|
+
- Simple: 2 affected
|
|
220
|
+
- Multiple: 1 affected
|
|
221
|
+
- Parallel: 6 affected
|
|
222
|
+
- Parallel Multiple: 4 affected
|
|
223
|
+
- Live Simple: 4 affected
|
|
224
|
+
- Live Multiple: 26 affected
|
|
225
|
+
- Live Parallel: 2 affected
|
|
226
|
+
- [Dec 22, 2024] [#843](https://github.com/ShishirPatil/gorilla/pull/843): Add the following new models to the leaderboard:
|
|
227
|
+
- `gemini-2.0-flash-exp-FC`
|
|
228
|
+
- `gemini-2.0-flash-exp`
|
|
229
|
+
- `gemini-exp-1206-FC`
|
|
230
|
+
- `gemini-exp-1206`
|
|
231
|
+
- [Dec 21, 2024] [#849](https://github.com/ShishirPatil/gorilla/pull/849): Use `N/A` in score report for unevaluated categories to distinguish from categories where the model actually scored a 0
|
|
232
|
+
- [Dec 21, 2024] [#848](https://github.com/ShishirPatil/gorilla/pull/848): Improves behavior for generation and evaluation pipeline. When executable categories are involved and API keys are not provided in the `.env` file, instead of throwing an error, the affected categories will now be skipped. This enhancement provides a smoother experience for first-time users.
|
|
233
|
+
- [Dec 21, 2024] [#847](https://github.com/ShishirPatil/gorilla/pull/847): Add new model `watt-ai/watt-tool-8B` and `watt-ai/watt-tool-70B` to the leaderboard.
|
|
234
|
+
- [Dec 20, 2024] [#842](https://github.com/ShishirPatil/gorilla/pull/842): Add the following new models to the leaderboard:
|
|
235
|
+
- `Qwen/Qwen2.5-0.5B-Instruct`
|
|
236
|
+
- `Qwen/Qwen2.5-3B-Instruct`
|
|
237
|
+
- `Qwen/Qwen2.5-14B-Instruct`
|
|
238
|
+
- `Qwen/Qwen2.5-32B-Instruct`
|
|
239
|
+
- [Dec 18, 2024] [#840](https://github.com/ShishirPatil/gorilla/pull/840): Add the following new models to the leaderboard:
|
|
240
|
+
- `o1-2024-12-17-FC`
|
|
241
|
+
- `o1-2024-12-17`
|
|
242
|
+
- [Dec 16, 2024] [#837](https://github.com/ShishirPatil/gorilla/pull/837): Add the following new models to the leaderboard:
|
|
243
|
+
- `meta-llama/Llama-3.3-70B-Instruct-FC`
|
|
244
|
+
- `meta-llama/Llama-3.3-70B-Instruct`
|
|
245
|
+
- [Dec 13, 2024] [#832](https://github.com/ShishirPatil/gorilla/pull/832): Add the following new models to the leaderboard:
|
|
246
|
+
- `MadeAgents/Hammer2.1-7b`
|
|
247
|
+
- `MadeAgents/Hammer2.1-3b`
|
|
248
|
+
- `MadeAgents/Hammer2.1-1.5b`
|
|
249
|
+
- `MadeAgents/Hammer2.1-0.5b`
|
|
250
|
+
- [Dec 11, 2024] [#826](https://github.com/ShishirPatil/gorilla/pull/826), [#829](https://github.com/ShishirPatil/gorilla/pull/829): Fix `enum` type mismatch error in function doc for live categories.
|
|
251
|
+
- Live Simple: 7 affected
|
|
252
|
+
- Live Multiple: 176 affected
|
|
253
|
+
- Live Parallel Multiple: 3 affected
|
|
254
|
+
- Live Irrelevance: 70 affected
|
|
255
|
+
- [Dec 9, 2024] [#822](https://github.com/ShishirPatil/gorilla/pull/822): Add the following new models to the leaderboard:
|
|
256
|
+
- `gpt-4o-2024-11-20`
|
|
257
|
+
- `gpt-4o-2024-11-20-FC`
|
|
258
|
+
- [Dec 4, 2024] [#815](https://github.com/ShishirPatil/gorilla/pull/815): Add the following new models to the leaderboard:
|
|
259
|
+
- `nova-pro-v1.0`
|
|
260
|
+
- `nova-lite-v1.0`
|
|
261
|
+
- `nova-micro-v1.0`
|
|
262
|
+
- [Dec 3, 2024] [#810](https://github.com/ShishirPatil/gorilla/pull/810): Add new model `grok-beta` to the leaderboard.
|
|
263
|
+
- [Dec 2, 2024] [#809](https://github.com/ShishirPatil/gorilla/pull/809): Resolve issue in Gemini model when no model output.
|
|
264
|
+
- [Dec 2, 2024] [#808](https://github.com/ShishirPatil/gorilla/pull/808): Improve latency measurement accuracy.
|
|
265
|
+
- [Nov 26, 2024] [#755](https://github.com/ShishirPatil/gorilla/pull/755): Add new model `palmyra-x-004` to the leaderboard.
|
|
266
|
+
- [Nov 25, 2024] [#718](https://github.com/ShishirPatil/gorilla/pull/718): Add new model `openbmb/MiniCPM3-4B-FC` to the leaderboard.
|
|
267
|
+
- [Nov 25, 2024] [#697](https://github.com/ShishirPatil/gorilla/pull/697): Add the following new models to the leaderboard:
|
|
268
|
+
- `deepseek-ai/DeepSeek-V2.5`
|
|
269
|
+
- `deepseek-ai/DeepSeek-Coder-V2-Instruct-0724`
|
|
270
|
+
- `deepseek-ai/DeepSeek-Coder-V2-Lite-Instruct`
|
|
271
|
+
- `deepseek-ai/DeepSeek-V2-Chat-0628`
|
|
272
|
+
- `deepseek-ai/DeepSeek-V2-Lite-Chat`
|
|
273
|
+
- [Nov 25, 2024] [#787](https://github.com/ShishirPatil/gorilla/pull/787): Add new model `Qwen/Qwen2.5-72B-Instruct` to the leaderboard.
|
|
274
|
+
- [Nov 24, 2024] [#743](https://github.com/ShishirPatil/gorilla/pull/743): Add support for regeneration, specific test entry IDs, and custom directory locations:
|
|
275
|
+
- Introduce the `--allow-overwrite` flag for the `generate` command to enable regeneration of test entries even if they already exist.
|
|
276
|
+
- Add a new `--run-ids` flag for the `generate` command, allowing execution of specific test entry IDs from `test_case_ids_to_generate.json`.
|
|
277
|
+
- Note: This cannot be used together with `--test-category`.
|
|
278
|
+
- Test ids needs to be the exact same as the ones in the dataset. Example: `"simple": ["simple_10", "simple_53"]`.
|
|
279
|
+
- Add `--score-dir` and `--result-dir` options for `generate` and `evaluate` commands, enabling custom paths for result and score directories relative to the project root `berkeley-function-call-leaderboard` directory.
|
|
280
|
+
- [Nov 22, 2024] [#777](https://github.com/ShishirPatil/gorilla/pull/777), [#778](https://github.com/ShishirPatil/gorilla/pull/778), [#881](https://github.com/ShishirPatil/gorilla/pull/811): Fix dataset entries where the function doc contains illegal Python parameter names (such as `class`). 55 entries are affected.
|
|
281
|
+
- [Nov 19, 2024] [#750](https://github.com/ShishirPatil/gorilla/pull/750): Add the following new models to the leaderboard:
|
|
282
|
+
- `claude-3-5-haiku-20241022`
|
|
283
|
+
- `claude-3-5-haiku-20241022-FC`
|
|
284
|
+
- `claude-3-5-sonnet-20241022`
|
|
285
|
+
- `claude-3-5-sonnet-20241022-FC`
|
|
286
|
+
- [Nov 18, 2024] [#736](https://github.com/ShishirPatil/gorilla/pull/736): Add the option to additionally log the evaluation results to [WandB](https://github.com/wandb/wandb) artifacts. User can enable this feature by providing the entity and project name in `WANDB_BFCL_PROJECT` in the `.env` file.
|
|
287
|
+
- [Nov 18, 2024] [#768](https://github.com/ShishirPatil/gorilla/pull/768), [#770](https://github.com/ShishirPatil/gorilla/pull/770): Resolve issues in Gemini models (FC mode) related to handling scenarios with no tools available and cases where the model output is empty.
|
|
288
|
+
- [Nov 17, 2024] [#767](https://github.com/ShishirPatil/gorilla/pull/767): Fix price and latency calculation. A merge conflict results in a duplicate line, and counting the input and output token for each entry multiple times.
|
|
289
|
+
- [Nov 15, 2024] [#762](https://github.com/ShishirPatil/gorilla/pull/762): Supply `data_multi_turn.csv` for multi-turn evaluation results
|
|
290
|
+
- [Nov 14, 2024] [#760](https://github.com/ShishirPatil/gorilla/pull/760), [#761](https://github.com/ShishirPatil/gorilla/pull/761): Upstream `google-cloud-aiplatform` library fixed typecasting bugs in Function Calling. Updated to version `1.72.0` and remove the workaround patch introduced in [#648](https://github.com/ShishirPatil/gorilla/pull/648).
|
|
291
|
+
- [Nov 14, 2024] [#747](https://github.com/ShishirPatil/gorilla/pull/747): Minor Grammatical Corrections to `DEFAULT_SYSTEM_PROMPT` that is supplied to all prompting models.
|
|
292
|
+
- [Nov 13, 2024] [#737](https://github.com/ShishirPatil/gorilla/pull/737), [#739](https://github.com/ShishirPatil/gorilla/pull/739), [#740](https://github.com/ShishirPatil/gorilla/pull/740), [#763](https://github.com/ShishirPatil/gorilla/pull/763), [#772](https://github.com/ShishirPatil/gorilla/pull/772), [#789](https://github.com/ShishirPatil/gorilla/pull/789), [#804](https://github.com/ShishirPatil/gorilla/pull/804): Bug fix in the dataset and possible answers for the live and multi-turn categories.
|
|
293
|
+
- [Nov 11, 2024] [#746](https://github.com/ShishirPatil/gorilla/pull/746): Improve inference log readability; inference log is now included as part of the model result file. For details on how to interpret the inference log, please refer to the [LOG_GUIDE.md](https://github.com/ShishirPatil/gorilla/blob/main/berkeley-function-call-leaderboard/LOG_GUIDE.md).
|
|
294
|
+
- [Nov 9, 2024] [#749](https://github.com/ShishirPatil/gorilla/pull/749): Remove `Llama-3.2-3B-Instruct-FC` and `Llama-3.2-1B-Instruct-FC` from the leaderboard. According to the [official Llama documentation](<https://www.llama.com/docs/model-cards-and-prompt-formats/llama3_2#-tool-calling-(1b/3b)->), these models perform function calling using the prompt-style chat template rather than the specialized function-calling format.
|
|
295
|
+
- [Nov 8, 2024] [#720](https://github.com/ShishirPatil/gorilla/pull/720): Add new model `BitAgent/GoGoAgent` to the leaderboard.
|
|
296
|
+
- [Oct 30, 2024] [#725](https://github.com/ShishirPatil/gorilla/pull/725), [#733](https://github.com/ShishirPatil/gorilla/pull/733): Update evaluation metric for multi-turn categories:
|
|
297
|
+
- Introduce a new response-based checker, which works alongside with the existing state-based checker.
|
|
298
|
+
- The new checker compares the model's execution result against the ground truth execution result, ensuring that the model's result encompasses the ground truth (i.e., ground truth must be a strict subset of the model result).
|
|
299
|
+
- It complements the state-based checker, which doesn't work well when the functions don't directly alter the state. For example, it's unclear whether the model actually invoked `get_zipcode_by_city` or `estimate_distance` by just using the state-based checker.
|
|
300
|
+
- Any multi turn entry will now only be marked correct if it passes both the state and response checkers.
|
|
301
|
+
- Remove the irrelevance detection for multi-turn categories.
|
|
302
|
+
- Instead of checking if the model produces no output in a turn with missing function/parameter information, we now assess whether the model can perform correctly once the missing information is provided.
|
|
303
|
+
- A few dataset entries have been modified to align with these changes.
|
|
304
|
+
- [Oct 30, 2024] [#719](https://github.com/ShishirPatil/gorilla/pull/719), [#722](https://github.com/ShishirPatil/gorilla/pull/722), [#723](https://github.com/ShishirPatil/gorilla/pull/723), [#728](https://github.com/ShishirPatil/gorilla/pull/728), [#732](https://github.com/ShishirPatil/gorilla/pull/732): Bug fix in the dataset and ground truth for the multi-turn categories.
|
|
305
|
+
- [Oct 17, 2024] [#683](https://github.com/ShishirPatil/gorilla/pull/683): Bug fix for the multi turn categories for ambiguity in action intention and function parameters.
|
|
306
|
+
- [Oct 17, 2024] [#709](https://github.com/ShishirPatil/gorilla/pull/709): Rephrase question prompt for Java and JavaScript categories to improve clarity and action intent.
|
|
307
|
+
- [Oct 17, 2024] [#708](https://github.com/ShishirPatil/gorilla/pull/708): Update the ground truth for the REST category to be up-to-date with the latest API response structure.
|
|
308
|
+
- [Oct 16, 2024] [#701](https://github.com/ShishirPatil/gorilla/pull/701): Bug fix the multi turn function source code for `TravelAPI`.
|
|
309
|
+
- [Oct 16, 2024] [#696](https://github.com/ShishirPatil/gorilla/pull/696): Add the following new models to the leaderboard:
|
|
310
|
+
- `google/gemma-2-2b-it`
|
|
311
|
+
- `google/gemma-2-9b-it`
|
|
312
|
+
- `google/gemma-2-27b-it`
|
|
313
|
+
- [Oct 16, 2024] [#661](https://github.com/ShishirPatil/gorilla/pull/661): Bug fix in the dataset and possible answers.
|
|
314
|
+
- Irrelevance: 1 affected
|
|
315
|
+
- Parallel Multiple: 2 affected
|
|
316
|
+
- Live Simple: 104 affected
|
|
317
|
+
- Live Multiple: 547 affected
|
|
318
|
+
- Live Parallel: 11 affected
|
|
319
|
+
- Live Parallel Multiple: 17 affected
|
|
320
|
+
- [Oct 11, 2024] [#667](https://github.com/ShishirPatil/gorilla/pull/667): Add the following new models to the leaderboard:
|
|
321
|
+
- `MadeAgents/Hammer2.0-7b`
|
|
322
|
+
- `MadeAgents/Hammer2.0-3b`
|
|
323
|
+
- `MadeAgents/Hammer2.0-1.5b`
|
|
324
|
+
- `MadeAgents/Hammer2.0-0.5b`
|
|
325
|
+
- [Oct 10, 2024] [#621](https://github.com/ShishirPatil/gorilla/pull/621), [#675](https://github.com/ShishirPatil/gorilla/pull/675): Add a basic command-line interface for ease of use.
|
|
326
|
+
- [Oct 5, 2024] [#633](https://github.com/ShishirPatil/gorilla/pull/633): Add new model `openbmb/MiniCPM3-4B` to the leaderboard.
|
|
327
|
+
- [Oct 5, 2024] [#642](https://github.com/ShishirPatil/gorilla/pull/642): Add the following new models to the leaderboard:
|
|
328
|
+
- `Qwen/Qwen2.5-7B-Instruct`
|
|
329
|
+
- `Qwen/Qwen2.5-1.5B-Instruct`
|
|
330
|
+
- `Qwen/Qwen2-7B-Instruct`
|
|
331
|
+
- `Qwen/Qwen2-1.5B-Instruct`
|
|
332
|
+
- [Oct 4, 2024] [#653](https://github.com/ShishirPatil/gorilla/pull/653): Add new model `Team-ACE/ToolACE-8B` to the leaderboard.
|
|
333
|
+
- [Oct 4, 2024] [#671](https://github.com/ShishirPatil/gorilla/pull/671): Speed up locally-hosted model's inference process by parallelizing the inference requests.
|
|
334
|
+
- [Sept 27, 2024] [#640](https://github.com/ShishirPatil/gorilla/pull/640): Add the following new models to the leaderboard:
|
|
335
|
+
- `microsoft/Phi-3.5-mini-instruct`
|
|
336
|
+
- `microsoft/Phi-3-medium-128k-instruct`
|
|
337
|
+
- `microsoft/Phi-3-medium-4k-instruct`
|
|
338
|
+
- `microsoft/Phi-3-small-128k-instruct`
|
|
339
|
+
- `microsoft/Phi-3-small-8k-instruct`
|
|
340
|
+
- `microsoft/Phi-3-mini-128k-instruct`
|
|
341
|
+
- `microsoft/Phi-3-mini-4k-instruct`
|
|
342
|
+
- [Sept 25, 2024] [#660](https://github.com/ShishirPatil/gorilla/pull/660): Bug fix in `parse_nested_value` function to handle nested dictionary values properly.
|
|
343
|
+
- [Sept 24, 2024] [#657](https://github.com/ShishirPatil/gorilla/pull/657): Add the following new models to the leaderboard:
|
|
344
|
+
- `meta-llama/Llama-3.2-1B-Instruct`
|
|
345
|
+
- `meta-llama/Llama-3.2-1B-Instruct-FC`
|
|
346
|
+
- `meta-llama/Llama-3.2-3B-Instruct`
|
|
347
|
+
- `meta-llama/Llama-3.2-3B-Instruct-FC`
|
|
348
|
+
- `meta-llama/Llama-3.1-8B-Instruct`
|
|
349
|
+
- `meta-llama/Llama-3.1-8B-Instruct-FC`
|
|
350
|
+
- `meta-llama/Llama-3.1-70B-Instruct`
|
|
351
|
+
- `meta-llama/Llama-3.1-70B-Instruct-FC`
|
|
352
|
+
- [Sept 24, 2024] [#648](https://github.com/ShishirPatil/gorilla/pull/648): Add the following new models to the leaderboard:
|
|
353
|
+
- `gemini-1.5-pro-002`
|
|
354
|
+
- `gemini-1.5-pro-002-FC`
|
|
355
|
+
- `gemini-1.5-pro-001`
|
|
356
|
+
- `gemini-1.5-pro-001-FC`
|
|
357
|
+
- `gemini-1.5-flash-002`
|
|
358
|
+
- `gemini-1.5-flash-002-FC`
|
|
359
|
+
- `gemini-1.5-flash-001`
|
|
360
|
+
- `gemini-1.5-flash-001-FC`
|
|
361
|
+
- `gemini-1.0-pro-002`
|
|
362
|
+
- `gemini-1.0-pro-002-FC`
|
|
363
|
+
- [Sept 19, 2024] [#644](https://github.com/ShishirPatil/gorilla/pull/644): BFCL V3 release:
|
|
364
|
+
- Introduce new multi-turn dataset and state-based evaluation metric
|
|
365
|
+
- Separate ast_checker and executable_checker for readability
|
|
366
|
+
- Several outdated or deprecated models will be excluded from the leaderboard and replaced with their updated successors to improve the leaderboard's overall maintainability.
|
|
367
|
+
- Switch to use vllm serve for OSS model inference
|
|
368
|
+
- [Sept 13, 2024] [#638](https://github.com/ShishirPatil/gorilla/pull/638): Fix prompt formatting issue for `THUDM/glm-4-9b-chat`.
|
|
369
|
+
- [Sept 12, 2024] [#635](https://github.com/ShishirPatil/gorilla/pull/635): Add new models `o1-preview-2024-09-12` and `o1-mini-2024-09-12` to the leaderboard.
|
|
370
|
+
- [Sept 8, 2024] [#627](https://github.com/ShishirPatil/gorilla/pull/627) Add new model `MadeAgents/Hammer-7b` to the leaderboard.
|
|
371
|
+
- [Sept 7, 2024] [#626](https://github.com/ShishirPatil/gorilla/pull/626): Fix prompt format for Llama models.
|
|
372
|
+
- [Sept 4, 2024] [#623](https://github.com/ShishirPatil/gorilla/pull/623): Fix decoding issue in the `NvidiaHandler`; remove duplicate `ArcticHandler` class.
|
|
373
|
+
- [August 29, 2024] [#616](https://github.com/ShishirPatil/gorilla/pull/6160): Add the following new models to the leaderboard:
|
|
374
|
+
- `Salesforce/xLAM-7b-r`
|
|
375
|
+
- `Salesforce/xLAM-8x7b-r`
|
|
376
|
+
- `Salesforce/xLAM-8x22b-r`
|
|
377
|
+
- [August 28, 2024] [#565](https://github.com/ShishirPatil/gorilla/pull/565), [#612](https://github.com/ShishirPatil/gorilla/pull/612): Packagerize the BFCL pipeline for easier deployment and maintenance.
|
|
378
|
+
- [August 27, 2024] [#608](https://github.com/ShishirPatil/gorilla/pull/608): Bug fix in the dataset and possible answers.
|
|
379
|
+
- simple: 16 affected
|
|
380
|
+
- multiple: 5 affected
|
|
381
|
+
- [August 23, 2024] [#600](https://github.com/ShishirPatil/gorilla/pull/600): Bug fix in the dataset and possible answers.
|
|
382
|
+
- simple: 12 affected
|
|
383
|
+
- multiple: 3 affected
|
|
384
|
+
- parallel: 3 affected
|
|
385
|
+
- parallel multiple: 6 affected
|
|
386
|
+
- [August 22, 2024] [#593](https://github.com/ShishirPatil/gorilla/pull/593):
|
|
387
|
+
- Move formatting instructions and function documentation to system prompt instead of user prompt in the message section. All prompting models are affected.
|
|
388
|
+
- Bug fix in the dataset and possible answers.
|
|
389
|
+
- irrelevance: 1 affected
|
|
390
|
+
- live_irrelevance: 1 affected
|
|
391
|
+
- live_simple: 1 affected
|
|
392
|
+
- live_parallel: 3 affected
|
|
393
|
+
- [August 19, 2024] [#580](https://github.com/ShishirPatil/gorilla/pull/580): Introduce BFCL V2 Live dataset, featuring user-contributed live prompts and function docs. To read more about the composition and construction of this dataset, please refer to our [blog](https://gorilla.cs.berkeley.edu/blogs/12_bfcl_v2_live.html). All CLI commands have been updated to support the new dataset.
|
|
394
|
+
- [August 8, 2024] [#574](https://github.com/ShishirPatil/gorilla/pull/574): Set temperature to 0.001 for all models for consistency and reproducibility.
|
|
395
|
+
- [August 7, 2024] [#571](https://github.com/ShishirPatil/gorilla/pull/571): Support parallel inference for hosted models. User can specify the number of threads to use for parallel inference by setting the `--num-threads` flag. The default is 1, which means no parallel inference.
|
|
396
|
+
- [August 6, 2024] [#569](https://github.com/ShishirPatil/gorilla/pull/569), [#570](https://github.com/ShishirPatil/gorilla/pull/570), [#573](https://github.com/ShishirPatil/gorilla/pull/573): Add the following new models to the leaderboard:
|
|
397
|
+
- `open-mistral-nemo-2407`
|
|
398
|
+
- `open-mistral-nemo-2407-FC`
|
|
399
|
+
- `open-mixtral-8x22b`
|
|
400
|
+
- `open-mixtral-8x22b-FC`
|
|
401
|
+
- `open-mixtral-8x7b`
|
|
402
|
+
- `gpt-4o-mini-2024-07-18`
|
|
403
|
+
- `gpt-4o-mini-2024-07-18-FC`
|
|
404
|
+
- `gpt-4o-2024-08-06`
|
|
405
|
+
- `gpt-4o-2024-08-06-FC`
|
|
406
|
+
- `meetkai/functionary-medium-v3.1-FC`
|
|
407
|
+
- `meetkai/functionary-small-v3.1-FC`
|
|
408
|
+
- `meetkai/functionary-small-v3.2-FC`
|
|
409
|
+
- [August 5, 2024] [#568](https://github.com/ShishirPatil/gorilla/pull/568): Rephrase the question prompt for the `executable_parallel_function` category to remove potentially misleading information implying multi-turn function calls.
|
|
410
|
+
- [August 4, 2024] [#557](https://github.com/ShishirPatil/gorilla/pull/557): Bug fix in the possible answers.
|
|
411
|
+
- simple: 7 affected
|
|
412
|
+
- multiple function: 3 affected
|
|
413
|
+
- parallel function: 5 affected
|
|
414
|
+
- parallel multiple function: 6 affected
|
|
415
|
+
- executable parallel function: 1 affected
|
|
416
|
+
- javascript: 3 affected
|
|
417
|
+
- [July 26, 2024] [#549](https://github.com/ShishirPatil/gorilla/pull/549): Fix `js_type_converter.py` to properly handle JavaScript array value inside dictionary.
|
|
418
|
+
- [July 25, 2024] [#532](https://github.com/ShishirPatil/gorilla/pull/532), [#543](https://github.com/ShishirPatil/gorilla/pull/543), [#556](https://github.com/ShishirPatil/gorilla/pull/556), [#542](https://github.com/ShishirPatil/gorilla/pull/542): Add the following new models to the leaderboard:
|
|
419
|
+
- `Salesforce/xLAM-7b-fc-r`
|
|
420
|
+
- `Salesforce/xLAM-1b-fc-r`
|
|
421
|
+
- `yi-large-fc`
|
|
422
|
+
- `NousResearch/Hermes-2-Pro-Llama-3-8B`
|
|
423
|
+
- `NousResearch/Hermes-2-Pro-Llama-3-70B`
|
|
424
|
+
- `NousResearch/Hermes-2-Theta-Llama-3-8B`
|
|
425
|
+
- `NousResearch/Hermes-2-Theta-Llama-3-70B`
|
|
426
|
+
- [July 22, 2024] [#540](https://github.com/ShishirPatil/gorilla/pull/540): Chore: Improve handling of vLLM's cleanup phase error by combining all selected test categories into one single task to submit to the vLLM server.
|
|
427
|
+
- [July 21, 2024] [#538](https://github.com/ShishirPatil/gorilla/pull/538), [#545](https://github.com/ShishirPatil/gorilla/pull/545): Fix `language_specific_pre_processing` and `convert_to_tool` function to properly handle pre-processing for prompts and function docs in Java and JavaScript test categories. All entries in these categories are affected.
|
|
428
|
+
- [July 20, 2024] [#537](https://github.com/ShishirPatil/gorilla/pull/537): Update generation script for locally-hosted OSS model to use single-node multi-GPU inference method (tensor parallel). Ray is not used anymore.
|
|
429
|
+
- [July 16, 2024] [#525](https://github.com/ShishirPatil/gorilla/pull/525), [#536](https://github.com/ShishirPatil/gorilla/pull/536): Add new model `ibm-granite/granite-20b-functioncalling` to the leaderboard.
|
|
430
|
+
- [July 10, 2024] [#522](https://github.com/ShishirPatil/gorilla/pull/522): Bug fix in the evaluation dataset for Executable Parallel Multiple category. This includes updates to both prompts and function docs. 2 entries are affected.
|
|
431
|
+
- [July 8, 2024] [#516](https://github.com/ShishirPatil/gorilla/pull/516): Fix double-casting issue in `model_handler` for Java and JavaScript test categories.
|
|
432
|
+
- [July 7, 2024] [#504](https://github.com/ShishirPatil/gorilla/pull/504), [#505](https://github.com/ShishirPatil/gorilla/pull/505), [#506](https://github.com/ShishirPatil/gorilla/pull/506), [#508](https://github.com/ShishirPatil/gorilla/pull/508), [#512](https://github.com/ShishirPatil/gorilla/pull/512), [#517](https://github.com/ShishirPatil/gorilla/pull/517): Make BFCL user-friendly and easy to extend.
|
|
433
|
+
- [July 6, 2024] [#423](https://github.com/ShishirPatil/gorilla/pull/423) and [#503](https://github.com/ShishirPatil/gorilla/pull/503): Bug fix in possible answers for the AST evaluation dataset (parallel category: 14 affected; parallel_multiple category: 25 affected).
|
|
434
|
+
- [July 5, 2024] [#496](https://github.com/ShishirPatil/gorilla/pull/496): Updates to API status checks. Checking the health of executable APIs is now off by default. Further, even when triggered, un-healthy APIs will not terminate the evaluation process. Users can enable this feature by setting the `--api-sanity-check` flag or `-c` for short. The previous `--skip-api-sanity-check` or `-s` flag is now deprecated.
|
|
435
|
+
- [July 3, 2024] [#489](https://github.com/ShishirPatil/gorilla/pull/489): Add new model `nvidia/nemotron-4-340b-instruct` to the leaderboard.
|
|
436
|
+
- [July 2, 2024] [#474](https://github.com/ShishirPatil/gorilla/pull/474): Add new model `THUDM/glm-4-9b-chat` to the leaderboard.
|
|
437
|
+
- [June 18, 2024] [#470](https://github.com/ShishirPatil/gorilla/pull/470): Add new model `firefunction-v2-FC` to the leaderboard.
|
|
438
|
+
- [June 15, 2024] [#437](https://github.com/ShishirPatil/gorilla/pull/437): Fix prompting issues for `Nexusflow-Raven-v2 (FC)`.
|
|
439
|
+
- [June 7, 2024] [#407](https://github.com/ShishirPatil/gorilla/pull/407), [#462](https://github.com/ShishirPatil/gorilla/pull/462): Update the AST evaluation logic to allow the use of `int` values for Python parameters expecting `float` values. This is to accommodate the Python auto-conversion feature from `int` to `float`.
|
|
440
|
+
- [May 14, 2024] [#426](https://github.com/ShishirPatil/gorilla/pull/426):
|
|
441
|
+
- Add the following new models to the leaderboard:
|
|
442
|
+
- `gpt-4o-2024-05-13`
|
|
443
|
+
- `gpt-4o-2024-05-13-FC`
|
|
444
|
+
- `gemini-1.5-pro-preview-0514`
|
|
445
|
+
- `gemini-1.5-flash-preview-0514`
|
|
446
|
+
- Update price for the following models:
|
|
447
|
+
- All Gemini Series
|
|
448
|
+
- `Claude-2.1 (Prompt)` and `Claude-instant-1.2 (Prompt)`
|
|
449
|
+
- `Mistral-large` and `Mistral-Small`
|
|
450
|
+
- `GPT-3.5-Turbo-0125`
|
|
451
|
+
- [May 8, 2024] [#406](https://github.com/ShishirPatil/gorilla/pull/406) and [#421](https://github.com/ShishirPatil/gorilla/pull/421): Update the `gemini_handler.py` to better handle parallel function calls for Gemini models.
|
|
452
|
+
- [May 6, 2024] [#412](https://github.com/ShishirPatil/gorilla/pull/412): Bug fix in evaluation dataset for AST categories. This includes updates to both prompts and function docs.
|
|
453
|
+
- [May 2, 2024] [#405](https://github.com/ShishirPatil/gorilla/pull/405): Bug fix in the possible answers for the AST Simple evaluation dataset. Prompt and function docs are not affected.
|
|
454
|
+
- [April 28, 2024] [#397](https://github.com/ShishirPatil/gorilla/pull/397): Add new model `snowflake/arctic` to the leaderboard. Note that there are multiple ways to inference the model, and we choose to do it via Nvidia API catalog.
|
|
455
|
+
- [April 27, 2024] [#390](https://github.com/ShishirPatil/gorilla/pull/390): Bug fix in cost and latency calculation for open-source models, which are now all calculated when serving the model with [vLLM](https://github.com/vllm-project/vllm) using 8 V100 GPUs for consistency. $$\text{Cost} = \text{Latency per 1000 function call} * (\text{8xV100 azure-pay-as-you-go-price per hour / 3600})$$
|
|
456
|
+
- [April 25, 2024] [#386](https://github.com/ShishirPatil/gorilla/pull/386): Add 5 new models to the leaderboard: `meta-llama/Meta-Llama-3-8B-Instruct`, `meta-llama/Meta-Llama-3-70B-Instruct`, `gemini-1.5-pro-preview-0409`, `command-r-plus`, `command-r-plus-FC`.
|
|
457
|
+
- [April 19, 2024] [#377](https://github.com/ShishirPatil/gorilla/pull/377):
|
|
458
|
+
- Bug fix for the evaluation dataset in the executable test categories. This includes updates to both prompts and function docs.
|
|
459
|
+
- The `evaluation_result` field has been removed to accommodate the variability in API execution results across different evaluation runs. Instead, a human-verified `ground_truth` is now included for the executable test categories. During each evaluation run, `evaluation_result` is generated anew using the `ground_truth`, and then compared against the model output.
|
|
460
|
+
- A stricter metric has been adopted when using the `structural_match` (aka. type match) evaluation criteria ---- For `list` results, the lengths are compared; for `dict` results, the keys are matched. This is to account for the fast-changing nature of some of the real-time API results while ensuring the evaluation remains meaningful.
|
|
461
|
+
- Added another evaluation criteria `real_time_match` for the executable category, which is a looser form of `exact_match` specifically for numerical execution results. The execution result must be within a certain percentage threshold (20%) from the expected result to accommodate the live updates of API responses. User can change this threshold value in `eval_checker_constant.py`.
|
|
462
|
+
- [April 18, 2024] [#375](https://github.com/ShishirPatil/gorilla/pull/375): A more comprehensive API sanity check is included; the APIs that are invoked during the non-REST executable evaluation process will also be checked for their availability before running the evaluation. Also, add support for the shortcut `-s` for the `--skip-api-sanity-check` flag, based on the community feedback.
|
|
463
|
+
- [April 16, 2024] [#366](https://github.com/ShishirPatil/gorilla/pull/366): Switch to use Anthropic's new Tool Use Beta `tools-2024-04-04` when generating Claude 3 FC series data. `gpt-4-turbo-2024-04-09` and `gpt-4-turbo-2024-04-09-FC` are also added to the leaderboard.
|
|
464
|
+
- [April 11, 2024] [#347](https://github.com/ShishirPatil/gorilla/pull/347): Add the 95th percentile latency to the leaderboard statistics. This metric is useful for understanding the latency distribution of the models, especially the worst-case scenario.
|
|
465
|
+
- [April 10, 2024] [#339](https://github.com/ShishirPatil/gorilla/pull/339): Introduce REST API sanity check for the REST executable test category. It ensures that all the API endpoints involved during the execution evaluation process are working properly. If any of them are not behaving as expected, the evaluation process will be stopped by default as the result will be inaccurate. Users can choose to bypass this check by setting the `--skip-api-sanity-check` flag or `-s` for short.
|
|
466
|
+
- [April 9, 2024] [#338](https://github.com/ShishirPatil/gorilla/pull/338): Bug fix in the evaluation datasets (including both prompts and function docs). Bug fix for possible answers as well.
|
|
467
|
+
- [April 8, 2024] [#330](https://github.com/ShishirPatil/gorilla/pull/330): Fixed an oversight that was introduced in [#299](https://github.com/ShishirPatil/gorilla/pull/299). For function-calling (FC) models that cannot take `float` type in input, when the parameter type is a `float`, the evaluation procedure will convert that type to `number` in the model input and mention in the parameter description that `This is a float type value.`. An additional field `format: float` will also be included in the model input to make it clear about the type. Updated the model handler for Claude, Mistral, and OSS to better parse the model output.
|
|
468
|
+
- [April 8, 2024] [#327](https://github.com/ShishirPatil/gorilla/pull/327): Add new model `NousResearch/Hermes-2-Pro-Mistral-7B` to the leaderboard.
|
|
469
|
+
- [April 3, 2024] [#309](https://github.com/ShishirPatil/gorilla/pull/309): Bug fix for evaluation dataset possible answers. Implement **string standardization** for the AST evaluation pipeline, i.e. removing white spaces and a subset of punctuations (`,./-_*^`) to make the AST evaluation more robust and accurate. Fixed AST evaluation issue for type `tuple`. Add 2 new models `meetkai/functionary-small-v2.4 (FC)`, `meetkai/functionary-medium-v2.4 (FC)` to the leaderboard.
|
|
470
|
+
- [April 1, 2024] [#299](https://github.com/ShishirPatil/gorilla/pull/299): Leaderboard update with new models (`Claude-3-Haiku`, `Databrick-DBRX-Instruct`), more advanced AST evaluation procedure, and updated evaluation datasets. Cost and latency statistics during evaluation are also measured. We also released the manual that our evaluation procedure is based on, available [here](https://gorilla.cs.berkeley.edu/blogs/8_berkeley_function_calling_leaderboard.html#metrics).
|
|
471
|
+
- [Mar 11, 2024] [#254](https://github.com/ShishirPatil/gorilla/pull/254): Leaderboard update with 3 new models: `Claude-3-Opus-20240229 (Prompt)`, `Claude-3-Sonnet-20240229 (Prompt)`, and `meetkai/functionary-medium-v2.2 (FC)`
|
|
472
|
+
- [Mar 5, 2024] [#237](https://github.com/ShishirPatil/gorilla/pull/237) and [238](https://github.com/ShishirPatil/gorilla/pull/238): leaderboard update resulting from [#223](https://github.com/ShishirPatil/gorilla/pull/223); 3 new models: `mistral-large-2402`, `gemini-1.0-pro`, and `google/gemma-7b-it`.
|
|
473
|
+
- [Feb 29, 2024] [#223](https://github.com/ShishirPatil/gorilla/pull/223): modifications to REST evaluation.
|