feat: launch async agent loop (#2658)

This commit is contained in:
cthomas
2025-06-05 14:30:24 -07:00
committed by GitHub
parent 91432088f9
commit c323771762
3 changed files with 10 additions and 26 deletions

View File

@@ -13,7 +13,6 @@ from letta_client.types import ToolReturnMessage
from letta.schemas.agent import AgentState
from letta.schemas.llm_config import LLMConfig
from letta.settings import settings
# ------------------------------
# Fixtures
@@ -54,10 +53,7 @@ def server_url() -> str:
else:
raise RuntimeError(f"Could not reach {url} within {timeout_seconds}s")
temp = settings.use_experimental
settings.use_experimental = True
yield url
settings.use_experimental = temp
@pytest.fixture(scope="module")