This commit is contained in:
Timothy Jaeryang Baek
2026-04-17 15:01:42 +09:00
parent 49430de42d
commit 7cfb260b8a

View File

@@ -3366,7 +3366,7 @@ async def non_streaming_chat_response_handler(response, ctx):
await post_webhook(
request.app.state.WEBUI_NAME,
webhook_url,
f'{title} - {request.app.state.config.WEBUI_URL}/c/{metadata["chat_id"]}\n\n{content}',
f'{content}\n\n{title} - {request.app.state.config.WEBUI_URL}/c/{metadata["chat_id"]}',
{
'action': 'chat',
'message': content,
@@ -4910,7 +4910,7 @@ async def streaming_chat_response_handler(response, ctx):
await post_webhook(
request.app.state.WEBUI_NAME,
webhook_url,
f'{title} - {request.app.state.config.WEBUI_URL}/c/{metadata["chat_id"]}\n\n{content}',
f'{content}\n\n{title} - {request.app.state.config.WEBUI_URL}/c/{metadata["chat_id"]}',
{
'action': 'chat',
'message': content,