From 6f77017408a22b68d212470378c8bbe18200f9e3 Mon Sep 17 00:00:00 2001 From: cthomas Date: Tue, 29 Jul 2025 13:24:07 -0700 Subject: [PATCH] fix: cloud api test Embedding is not allowed in cloud API (#3621) --- tests/test_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_client.py b/tests/test_client.py index af24a6c3..3f860ce9 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -593,7 +593,7 @@ def test_attach_detach_agent_source(client: Letta, agent: AgentState): # Create a source source = client.sources.create( name="test_source", - embedding="letta/letta-free", + embedding="openai/text-embedding-3-small", ) initial_sources = client.agents.sources.list(agent_id=agent.id) assert source.id not in [s.id for s in initial_sources]