fix(bot): better buttons

This commit is contained in:
h
2026-01-21 02:51:59 +01:00
parent 646254cd24
commit bd361c6e7d
3 changed files with 15 additions and 16 deletions

View File

@@ -202,7 +202,7 @@ async def process_message_from_web( # noqa: C901, PLR0912, PLR0915
follow_up_agent = create_follow_up_agent(
api_key=api_key, model_name=follow_up_model, system_prompt=follow_up_prompt
)
follow_ups = await get_follow_ups(follow_up_agent, full_history)
follow_ups = await get_follow_ups(follow_up_agent, full_history, chat_images)
if state:
await state.stop_typing()
@@ -336,7 +336,7 @@ async def process_message(
follow_up_agent = create_follow_up_agent(
api_key=api_key, model_name=follow_up_model, system_prompt=follow_up_prompt
)
follow_ups = await get_follow_ups(follow_up_agent, full_history)
follow_ups = await get_follow_ups(follow_up_agent, full_history, chat_images)
await state.stop_typing()