docs: clarify videodb reference guides

This commit is contained in:
Affaan Mustafa
2026-03-10 21:04:02 -07:00
parent b8ab34e362
commit b0c2e77bd8
3 changed files with 4 additions and 1 deletions

View File

@@ -1,5 +1,7 @@
# Complete API Reference
Reference material for the VideoDB skill. For usage guidance and workflow selection, start with [../SKILL.md](../SKILL.md).
## Connection
```python

View File

@@ -1,6 +1,7 @@
# RTStream Reference
Code-level details for RTStream operations. For workflow guide, see [rtstream.md](rtstream.md).
For usage guidance and workflow selection, start with [../SKILL.md](../SKILL.md).
Based on [docs.videodb.io](https://docs.videodb.io/pages/ingest/live-streams/realtime-apis.md).

View File

@@ -184,7 +184,7 @@ async def main_async():
listen_task = asyncio.create_task(listen_with_retry())
shutdown_task = asyncio.create_task(shutdown_event.wait())
done, pending = await asyncio.wait(
_done, pending = await asyncio.wait(
[listen_task, shutdown_task],
return_when=asyncio.FIRST_COMPLETED,
)