We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f0434e commit b70f17dCopy full SHA for b70f17d
agents-core/vision_agents/core/agents/agents.py
@@ -240,6 +240,8 @@ def __init__(
240
self._prepare_rtc()
241
self._setup_stt()
242
243
+ self.events.send(events.AgentInitEvent())
244
+
245
@contextlib.contextmanager
246
def span(self, name):
247
with tracer.start_as_current_span(name, context=self._root_ctx) as span:
@@ -265,8 +267,6 @@ def end_tracing(self):
265
267
def __aexit__(self, exc_type, exc_val, exc_tb):
266
268
self.end_tracing()
269
- self.events.send(events.AgentInitEvent())
-
270
async def simple_response(
271
self, text: str, participant: Optional[Participant] = None
272
) -> None:
0 commit comments