CHANGELOG and code comment tweaks
This commit is contained in:
@@ -25,7 +25,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
(Note that even though `OpenAIRealtimeLLMService` now supports the universal
|
(Note that even though `OpenAIRealtimeLLMService` now supports the universal
|
||||||
`LLMContext`, it is not meant to be swapped out for another LLM service at
|
`LLMContext`, it is not meant to be swapped out for another LLM service at
|
||||||
runtime.)
|
runtime with `LLMSwitcher`.)
|
||||||
|
|
||||||
Note: `TranscriptionFrame`s and `InterimTranscriptionFrame`s now go upstream
|
Note: `TranscriptionFrame`s and `InterimTranscriptionFrame`s now go upstream
|
||||||
from `OpenAIRealtimeLLMService`, so if you're using `TranscriptProcessor`,
|
from `OpenAIRealtimeLLMService`, so if you're using `TranscriptProcessor`,
|
||||||
@@ -108,7 +108,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
(Note that even though `GeminiLiveLLMService` now supports the universal
|
(Note that even though `GeminiLiveLLMService` now supports the universal
|
||||||
`LLMContext`, it is not meant to be swapped out for another LLM service at
|
`LLMContext`, it is not meant to be swapped out for another LLM service at
|
||||||
runtime.)
|
runtime with `LLMSwitcher`.)
|
||||||
|
|
||||||
Worth noting: whether or not you use the new context-setup pattern with
|
Worth noting: whether or not you use the new context-setup pattern with
|
||||||
`GeminiLiveLLMService`, some types have changed under the hood:
|
`GeminiLiveLLMService`, some types have changed under the hood:
|
||||||
@@ -212,7 +212,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
(Note that even though `AWSNovaSonicLLMService` now supports the universal
|
(Note that even though `AWSNovaSonicLLMService` now supports the universal
|
||||||
`LLMContext`, it is not meant to be swapped out for another LLM service at
|
`LLMContext`, it is not meant to be swapped out for another LLM service at
|
||||||
runtime.)
|
runtime with `LLMSwitcher`.)
|
||||||
|
|
||||||
Worth noting: whether or not you use the new context-setup pattern with
|
Worth noting: whether or not you use the new context-setup pattern with
|
||||||
`AWSNovaSonicLLMService`, some types have changed under the hood:
|
`AWSNovaSonicLLMService`, some types have changed under the hood:
|
||||||
|
|||||||
@@ -222,6 +222,7 @@ Remember, your responses should be short. Just one or two sentences, usually. Re
|
|||||||
# Kick off the conversation.
|
# Kick off the conversation.
|
||||||
await task.queue_frames([LLMRunFrame()])
|
await task.queue_frames([LLMRunFrame()])
|
||||||
|
|
||||||
|
# Add a new tool at runtime after a delay.
|
||||||
async def set_tools_after_delay():
|
async def set_tools_after_delay():
|
||||||
await asyncio.sleep(15)
|
await asyncio.sleep(15)
|
||||||
new_tools = ToolsSchema(
|
new_tools = ToolsSchema(
|
||||||
|
|||||||
Reference in New Issue
Block a user