Use more flexibile aggregator

This commit is contained in:
Moishe Lettvin
2024-01-22 16:02:35 -05:00
parent 95c92e5304
commit 3fda9b0ecb
3 changed files with 32 additions and 35 deletions

View File

@@ -24,44 +24,36 @@ class QueueTee:
for queue in output_queues:
await queue.put(frame)
class TranscriptionToLLMMessageAggregator(AIService):
def __init__(self, messages, bot_participant_id):
class LLMContextAggregator(AIService):
def __init__(self, messages: list[dict], role:str, bot_participant_id=None):
self.messages = messages
self.bot_participant_id = bot_participant_id
self.role = role
self.sentence = ""
async def process_frame(self, frame:QueueFrame) -> AsyncGenerator[QueueFrame, None]:
if frame.frame_type != FrameType.TRANSCRIPTION:
return
content: str = ""
message = frame.frame_data
if not isinstance(message, dict):
return
if frame.frame_type == FrameType.TRANSCRIPTION:
message = frame.frame_data
if not isinstance(message, dict):
return
if message["session_id"] == self.bot_participant_id:
return
if message["session_id"] == self.bot_participant_id:
return
print("transcription to message", frame)
content = message["text"]
elif frame.frame_type == FrameType.TEXT:
if not isinstance(frame.frame_data, str):
return
# todo: we could differentiate between transcriptions from different participants
self.sentence += message["text"]
content = frame.frame_data
# todo: we should differentiate between transcriptions from different participants
self.sentence += content
if self.sentence.endswith((".", "?", "!")):
self.messages.append({"role": "user", "content": self.sentence})
self.messages.append({"role": self.role, "content": self.sentence})
self.sentence = ""
yield QueueFrame(FrameType.LLM_MESSAGE, self.messages)
class LLMResponseToLLMMessageAggregator(AIService):
def __init__(self, messages):
self.messages = messages
self.sentence = ""
async def process_frame(self, frame:QueueFrame) -> AsyncGenerator[QueueFrame, None]:
if frame.frame_type == FrameType.TEXT and isinstance(frame.frame_data, str):
print("llmresponse to message", frame)
self.sentence += frame.frame_data
if self.sentence.endswith((".", "?", "!")):
self.messages.append({"role": "assistant", "content": self.sentence})
self.sentence = ""
yield frame

View File

@@ -112,8 +112,12 @@ class TTSService(AIService):
yield bytes()
async def process_frame(self, frame: QueueFrame) -> AsyncGenerator[QueueFrame, None]:
if frame.frame_type != FrameType.TEXT or type(frame.frame_data) != str:
raise Exception(f"TTS service requires a string for the data field, got {frame.frame_type} and frame_data type {type(frame.frame_data)}")
if frame.frame_type != FrameType.TEXT:
yield frame
return
if not isinstance(frame.frame_data, str):
raise(Exception(f"Invalid data type in frame type: {frame.frame_type}, type: {type(frame.frame_data)}"))
text: str | None = None
if not self.aggregate_sentences:

View File

@@ -6,10 +6,7 @@ import urllib.parse
from dailyai.services.daily_transport_service import DailyTransportService
from dailyai.services.azure_ai_services import AzureLLMService, AzureTTSService
from dailyai.queue_aggregators import (
TranscriptionToLLMMessageAggregator,
LLMResponseToLLMMessageAggregator,
)
from dailyai.queue_aggregators import LLMContextAggregator
async def main(room_url:str, token):
global transport
@@ -38,8 +35,12 @@ async def main(room_url:str, token):
{"role": "system", "content": "You are a helpful LLM in a WebRTC call. Your goal is to demonstrate your capabilities in a succinct way. Your output will be converted to audio. Respond to what the user said in a creative and helpful way."},
]
tma_in = TranscriptionToLLMMessageAggregator(messages, transport.my_participant_id)
tma_out = LLMResponseToLLMMessageAggregator(messages)
tma_in = LLMContextAggregator(
messages, "user", transport.my_participant_id
)
tma_out = LLMContextAggregator(
messages, "assistant", transport.my_participant_id
)
await tts.run_to_queue(
transport.send_queue,
tma_out.run(