Skip to content

Commit

Permalink
Merge pull request #131 from mattf/use-llama-3.3-for-tool-tests
Browse files Browse the repository at this point in the history
use llama 3.3 for tool tests to address accuracy failures from 3.1
  • Loading branch information
mattf authored Jan 10, 2025
2 parents 34b5c42 + 55a2a1e commit a7d8dc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/ai-endpoints/tests/integration_tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def get_all_known_models() -> List[Model]:
metafunc.parametrize("chat_model", models, ids=models)

if "tool_model" in metafunc.fixturenames:
models = ["meta/llama-3.1-8b-instruct"]
models = ["meta/llama-3.3-70b-instruct"]
if model_list := metafunc.config.getoption("tool_model_id"):
models = model_list
if metafunc.config.getoption("all_models"):
Expand Down

0 comments on commit a7d8dc3

Please sign in to comment.