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 a9c7201 commit d55f6b2Copy full SHA for d55f6b2
agents-core/vision_agents/core/agents/agents.py
@@ -1359,7 +1359,7 @@ async def _get_video_track_override(self) -> VideoFileTrack:
1359
if not self._video_track_override_path:
1360
raise ValueError("video_track_override_path is not set")
1361
return await asyncio.to_thread(
1362
- lambda: VideoFileTrack(self._video_track_override_path)
+ lambda p: VideoFileTrack(p), self._video_track_override_path
1363
)
1364
1365
0 commit comments