Merge remote-tracking branch 'origin/docs/docs-cb' into docs/docs-cb

This commit is contained in:
2025-11-25 12:56:33 +01:00
7 changed files with 6 additions and 7 deletions

View File

@@ -1,4 +1,5 @@
from .bdi_core_agent.bdi_core_agent import BDICoreAgent as BDICoreAgent
from control_backend.agents.bdi.bdi_core_agent import BDICoreAgent as BDICoreAgent
from .belief_collector_agent import (
BDIBeliefCollectorAgent as BDIBeliefCollectorAgent,
)

View File

@@ -165,7 +165,7 @@ class LLMAgent(BaseAgent):
:yield: Raw text tokens (deltas) from the SSE stream.
:raises httpx.HTTPError: If the API returns a non-200 status.
"""
async with httpx.AsyncClient(timeout=None) as client:
async with httpx.AsyncClient() as client:
async with client.stream(
"POST",
settings.llm_settings.local_llm_url,