Merge pull request #1512 from pipecat-ai/mb/fix-gemini-examples

Examples: Fix context_aggregator.assistant() pipeline position
This commit is contained in:
Mark Backman
2025-04-02 19:07:09 -04:00
committed by GitHub
6 changed files with 6 additions and 6 deletions

View File

@@ -147,8 +147,8 @@ Remember, your responses should be short. Just one or two sentences, usually."""
transport.input(), # Transport user input
context_aggregator.user(),
llm, # LLM
context_aggregator.assistant(),
transport.output(), # Transport bot output
context_aggregator.assistant(),
]
)

View File

@@ -205,8 +205,8 @@ async def main():
context_aggregator.user(),
llm, # LLM
tts,
context_aggregator.assistant(),
transport.output(), # Transport bot output
context_aggregator.assistant(),
]
)

View File

@@ -230,8 +230,8 @@ Remember, your responses should be short. Just one or two sentences, usually."""
transport.input(), # Transport user input
context_aggregator.user(),
llm, # LLM
context_aggregator.assistant(),
transport.output(), # Transport bot output
context_aggregator.assistant(),
]
)

View File

@@ -202,8 +202,8 @@ async def main():
context_aggregator.user(),
llm, # LLM
tts,
context_aggregator.assistant(),
transport.output(), # Transport bot output
context_aggregator.assistant(),
]
)

View File

@@ -261,8 +261,8 @@ async def main():
context_aggregator.user(),
llm, # LLM
tts,
context_aggregator.assistant(),
transport.output(), # Transport bot output
context_aggregator.assistant(),
]
)

View File

@@ -110,8 +110,8 @@ async def main():
transport.input(),
context_aggregator.user(),
llm,
context_aggregator.assistant(),
transport.output(),
context_aggregator.assistant(),
]
)