From db418d99f40cf58ffa9af72669bb6729665c7e7e Mon Sep 17 00:00:00 2001 From: cthomas Date: Mon, 23 Feb 2026 16:42:27 -0800 Subject: [PATCH] test: remove sonnet 3-7 reference (#9618) --- tests/test_sdk_client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_sdk_client.py b/tests/test_sdk_client.py index 99de594c..ec749c54 100644 --- a/tests/test_sdk_client.py +++ b/tests/test_sdk_client.py @@ -2145,13 +2145,13 @@ async def test_create_batch(client: LettaSDKClient, server: SyncServer): agent1 = client.agents.create( name="agent1_batch", memory_blocks=[{"label": "persona", "value": "you are agent 1"}], - model="anthropic/claude-3-7-sonnet-20250219", + model="anthropic/claude-sonnet-4-20250514", embedding="openai/text-embedding-3-small", ) agent2 = client.agents.create( name="agent2_batch", memory_blocks=[{"label": "persona", "value": "you are agent 2"}], - model="anthropic/claude-3-7-sonnet-20250219", + model="anthropic/claude-sonnet-4-20250514", embedding="openai/text-embedding-3-small", )