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-events-example.md
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Event System Developer Guide
2
2
3
-
This guide explains how to use the event system when building plugins for stream-agents. The event system provides a centralized way to handle asynchronous communication between components.
3
+
This guide explains how to use the event system when building plugins for vision-agents. The event system provides a centralized way to handle asynchronous communication between components.
4
4
5
5
## Table of Contents
6
6
@@ -29,7 +29,7 @@ The `EventManager` is the core component that handles event registration, subscr
Copy file name to clipboardExpand all lines: docs/ai/instructions/ai-llm.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,15 +2,15 @@
2
2
3
3
## Overview
4
4
5
-
LLM plugins provide language model functionality for the stream-agents framework. They handle text generation, conversation management, and function calling capabilities.
5
+
LLM plugins provide language model functionality for the vision-agents framework. They handle text generation, conversation management, and function calling capabilities.
6
6
7
7
## Base Class
8
8
9
-
All LLM plugins should inherit from `stream_agents.core.llm.llm.LLM`:
9
+
All LLM plugins should inherit from `vision_agents.core.llm.llm.LLM`:
Copy file name to clipboardExpand all lines: docs/ai/instructions/ai-stt.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,15 +2,15 @@
2
2
3
3
## Overview
4
4
5
-
STT (Speech-to-Text) plugins provide audio transcription functionality for the stream-agents framework. They convert audio streams into text transcripts that can be processed by other components.
5
+
STT (Speech-to-Text) plugins provide audio transcription functionality for the vision-agents framework. They convert audio streams into text transcripts that can be processed by other components.
6
6
7
7
## Base Class
8
8
9
-
All STT plugins should inherit from `stream_agents.core.stt.stt.STT`:
9
+
All STT plugins should inherit from `vision_agents.core.stt.stt.STT`:
Copy file name to clipboardExpand all lines: docs/ai/instructions/ai-tts.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,15 +2,15 @@
2
2
3
3
## Overview
4
4
5
-
TTS (Text-to-Speech) plugins provide audio synthesis functionality for the stream-agents framework. They convert text into audio streams that can be played to users.
5
+
TTS (Text-to-Speech) plugins provide audio synthesis functionality for the vision-agents framework. They convert text into audio streams that can be played to users.
6
6
7
7
## Base Class
8
8
9
-
All TTS plugins should inherit from `stream_agents.core.tts.tts.TTS`:
9
+
All TTS plugins should inherit from `vision_agents.core.tts.tts.TTS`:
0 commit comments