fix eval test w/ tools

This commit is contained in:
Xi Yan 2025-01-15 11:45:59 -08:00
parent d0a25dd453
commit b7e59ba002
2 changed files with 15 additions and 1 deletions

View file

@ -35,7 +35,13 @@ EVAL_FIXTURES = ["meta_reference", "remote"]
@pytest_asyncio.fixture(scope="session")
async def eval_stack(request, inference_model, judge_model):
async def eval_stack(
request,
inference_model,
judge_model,
tool_group_input_memory,
tool_group_input_tavily_search,
):
fixture_dict = request.param
providers = {}
@ -48,6 +54,7 @@ async def eval_stack(request, inference_model, judge_model):
"agents",
"safety",
"memory",
"tool_runtime",
]:
fixture = request.getfixturevalue(f"{key}_{fixture_dict[key]}")
providers[key] = fixture.providers
@ -63,6 +70,7 @@ async def eval_stack(request, inference_model, judge_model):
Api.agents,
Api.safety,
Api.memory,
Api.tool_runtime,
],
providers,
provider_data,
@ -73,6 +81,7 @@ async def eval_stack(request, inference_model, judge_model):
judge_model,
]
],
tool_groups=[tool_group_input_memory, tool_group_input_tavily_search],
)
return test_stack.impls