fix: Fix anthropic step parallel tool calling and add tests [LET-5438] (#5379)

* Fix anthropic step parallel tool calling and add tests

* Remove print statements
This commit is contained in:
Matthew Zhou
2025-10-13 11:58:58 -07:00
committed by Caren Thomas
parent 248c7c0b44
commit 25f140bd13
3 changed files with 9 additions and 10 deletions

View File

@@ -522,9 +522,9 @@ async def test_greeting(
TESTED_LLM_CONFIGS,
ids=[c.model for c in TESTED_LLM_CONFIGS],
)
@pytest.mark.parametrize("send_type", ["stream_tokens"]) # ["step", "stream_steps", "stream_tokens", "stream_tokens_background"])
@pytest.mark.parametrize("send_type", ["step", "stream_tokens"]) # ["step", "stream_steps", "stream_tokens", "stream_tokens_background"])
@pytest.mark.asyncio(loop_scope="function")
async def test_parallel_tool_call_anthropic_streaming(
async def test_parallel_tool_call_anthropic(
disable_e2b_api_key: Any,
client: AsyncLetta,
agent_state: AgentState,