feat: Add toggle on llm config for parallel tool calling [LET-5610] (#5542)

* Add parallel tool calling field

* Thread through parallel tool use

* Fern autogen

* Fix send message v2
This commit is contained in:
Matthew Zhou
2025-10-17 15:35:48 -07:00
committed by Caren Thomas
parent 264de822e5
commit 396959da2f
5 changed files with 75 additions and 3 deletions

View File

@@ -543,6 +543,8 @@ async def test_parallel_tool_call_anthropic(
if llm_config.model_endpoint_type != "anthropic":
pytest.skip("Parallel tool calling test only applies to Anthropic models.")
# change llm_config to support parallel tool calling
llm_config.parallel_tool_calls = True
agent_state = await client.agents.modify(agent_id=agent_state.id, llm_config=llm_config)
if send_type == "step":