mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-04-04 16:23:31 +08:00
docs: clarify videodb reference guides
This commit is contained in:
@@ -1,5 +1,7 @@
|
|||||||
# Complete API Reference
|
# Complete API Reference
|
||||||
|
|
||||||
|
Reference material for the VideoDB skill. For usage guidance and workflow selection, start with [../SKILL.md](../SKILL.md).
|
||||||
|
|
||||||
## Connection
|
## Connection
|
||||||
|
|
||||||
```python
|
```python
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
# RTStream Reference
|
# RTStream Reference
|
||||||
|
|
||||||
Code-level details for RTStream operations. For workflow guide, see [rtstream.md](rtstream.md).
|
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).
|
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())
|
listen_task = asyncio.create_task(listen_with_retry())
|
||||||
shutdown_task = asyncio.create_task(shutdown_event.wait())
|
shutdown_task = asyncio.create_task(shutdown_event.wait())
|
||||||
|
|
||||||
done, pending = await asyncio.wait(
|
_done, pending = await asyncio.wait(
|
||||||
[listen_task, shutdown_task],
|
[listen_task, shutdown_task],
|
||||||
return_when=asyncio.FIRST_COMPLETED,
|
return_when=asyncio.FIRST_COMPLETED,
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user