You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/ai/instructions/ai-plugin.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ llm = anthropic.LLM()
48
48
When building the plugin read these guides:
49
49
50
50
-**TTS**: [ai-tts.md](ai-tts.md)
51
-
-**STT**: [ai-stt.md](ai-stt.md)
51
+
-**STT**: [ai-stt.md](ai-stt.md)
52
52
-**STS/realtime/LLM**: [ai-llm.md](ai-llm.md) or [ai-realtime-llm.md](ai-realtime-llm.md)
53
53
54
54
## Update pyproject.toml
@@ -65,4 +65,8 @@ members = [
65
65
"plugins/myplugin",
66
66
# ... other plugins
67
67
]
68
-
```
68
+
```
69
+
70
+
## PCM / Audio management
71
+
72
+
Use `PcmData` and other utils available from the `getstream.video.rtc.track_util` module. Do not write code that directly manipulates PCM, use the audio utilities instead.
@@ -101,4 +101,8 @@ class MyRealtime(realtime.Realtime):
101
101
If you need more examples look in
102
102
103
103
- gemini_llm.py
104
-
- aws_llm.py (AWS Bedrock implementation)
104
+
- aws_llm.py (AWS Bedrock implementation)
105
+
106
+
## PCM / Audio management
107
+
108
+
Use `PcmData` and other utils available from the `getstream.video.rtc.track_util` module. Do not write code that directly manipulates PCM, use the audio utilities instead.
0 commit comments