mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-03-30 21:53:28 +08:00
docs: clarify videodb reference guides
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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).
|
||||
|
||||
|
||||
@@ -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,
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user