Adding documentation comments to the newly added astream_events method on the Agent class

pull/576/head
tad dy 4 months ago
parent 92675ef081
commit 8a64e12885

@ -885,6 +885,10 @@ class Agent:
async def astream_events(
self, task: str = None, img: str = None, *args, **kwargs
):
"""
Run the Agent with LangChain's astream_events API.
Only works with LangChain-based models.
"""
try:
async for evt in self.llm.astream_events(task, version="v1"):
yield evt

Loading…
Cancel
Save