From d292b6e4de76d61718ff07906a466ab08abb7e1e Mon Sep 17 00:00:00 2001 From: Shubham Naik Date: Sat, 26 Jul 2025 16:14:23 -0700 Subject: [PATCH] chore: restrict custom embeddings in cloud (#3578) Co-authored-by: Shubham Naik --- tests/test_client.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tests/test_client.py b/tests/test_client.py index 77507b0b..2f9d881d 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -593,13 +593,6 @@ def test_attach_detach_agent_source(client: Letta, agent: AgentState): # Create a source source = client.sources.create( name="test_source", - embedding_config={ # TODO: change this - "embedding_endpoint": "https://embeddings.memgpt.ai", - "embedding_model": "BAAI/bge-large-en-v1.5", - "embedding_dim": 1024, - "embedding_chunk_size": 300, - "embedding_endpoint_type": "hugging-face", - }, ) initial_sources = client.agents.sources.list(agent_id=agent.id) assert source.id not in [s.id for s in initial_sources]