Skip to content

Commit 71affcc

Browse files
committed
rename to aws
1 parent d2eeba7 commit 71affcc

File tree

24 files changed

+29
-5324
lines changed

24 files changed

+29
-5324
lines changed

docs/ai/ai-overview.md

Lines changed: 0 additions & 59 deletions
This file was deleted.

docs/ai/instructions/ai-function-calling.md

Lines changed: 0 additions & 204 deletions
This file was deleted.

docs/ai/instructions/ai-llm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,4 @@ class MyLLM(LLM):
7878
If you need more examples look in
7979

8080
- gemini_llm.py
81-
- bedrock_llm.py
81+
- aws_llm.py (AWS Bedrock implementation)

docs/ai/instructions/ai-realtime-llm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,4 +101,4 @@ class MyRealtime(realtime.Realtime):
101101
If you need more examples look in
102102

103103
- gemini_llm.py
104-
- bedrock_llm.py
104+
- aws_llm.py (AWS Bedrock implementation)

docs/ai/instructions/ai-stt.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
## STT
2+
3+
```python
4+
from vision_agents.core import stt
5+
6+
class MySTT(stt.STT):
7+
8+
def __init__(
9+
self,
10+
api_key: Optional[str] = None,
11+
sample_rate: int = 48000,
12+
client: Optional[AsyncDeepgramClient] = None,
13+
):
14+
super().__init__(sample_rate=sample_rate)
15+
16+
17+
async def _process_audio_impl(
18+
self, pcm_data: PcmData, user_metadata: Optional[Union[Dict[str, Any], Participant]] = None
19+
) -> Optional[List[Tuple[bool, str, Dict[str, Any]]]]:
20+
pass
21+
22+
```

0 commit comments

Comments
 (0)