[GH-ISSUE #15408] issue: Emoji in Calls #17558

Closed
opened 2026-04-19 23:20:38 -05:00 by GiteaMirror · 1 comment
Owner

Originally created by @DraculaVladimir on GitHub (Jun 30, 2025).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/15408

Originally assigned to: @tjbck on GitHub.

Check Existing Issues

  • I have searched the existing issues and discussions.
  • I am using the latest version of Open WebUI.

Installation Method

Docker

Open WebUI Version

v0.6.15

Ollama Version (if applicable)

0.9.3

Operating System

Windows 11

Browser (if applicable)

Chrome 137.0.7151.120

Confirmation

  • I have read and followed all instructions in README.md.
  • I am using the latest version of both Open WebUI and Ollama.
  • I have included the browser console logs.
  • I have included the Docker container logs.
  • I have provided every relevant configuration, setting, and environment variable used in my setup.
  • I have clearly listed every relevant configuration, custom setting, environment variable, and command-line option that influences my setup (such as Docker Compose overrides, .env values, browser settings, authentication configurations, etc).
  • I have documented step-by-step reproduction instructions that are precise, sequential, and leave nothing to interpretation. My steps:
  • Start with the initial platform/version/OS and dependencies used,
  • Specify exact install/launch/configure commands,
  • List URLs visited, user input (incl. example values/emails/passwords if needed),
  • Describe all options and toggles enabled or changed,
  • Include any files or environmental changes,
  • Identify the expected and actual result at each stage,
  • Ensure any reasonably skilled user can follow and hit the same issue.

Expected Behavior

I expect the Display Emoji in Call to work.

Actual Behavior

STT works,
Model provides answer
TTS does not read outloud
In the phone call it shows "Thinking..." prepertually.

Steps to Reproduce

  1. Have Docker installed on Windows 11
  2. Install OpenWebUi using docker run -d -p 3000:8080 --gpus=all -v open-webui:/app/backend/data --name open-webui --restart always ghcr.io/open-webui/open-webui:dev-cuda
  3. Inside of OpenWebUi user settings got to Interface, enable Display Emoji in Call
  4. Try to have a conversation with either local or external model.

Logs & Screenshots


│                            └ <function request_response.<locals>.app.<locals>.app at 0x7e1c0c96f1a0>

          └ <function wrap_app_handling_exceptions at 0x7e1dac514540>

  File "/usr/local/lib/python3.11/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app

    await app(scope, receive, sender)

          │   │      │        └ <function wrap_app_handling_exceptions.<locals>.wrapped_app.<locals>.sender at 0x7e1c0c96fb00>

          │   │      └ <function BaseHTTPMiddleware.__call__.<locals>.call_next.<locals>.receive_or_disconnect at 0x7e1c0c96f7e0>

          │   └ {'type': 'http', 'asgi': {'version': '3.0', 'spec_version': '2.3'}, 'http_version': '1.1', 'server': ('172.17.0.5', 8080), 'c...

          └ <function request_response.<locals>.app.<locals>.app at 0x7e1c0c96f1a0>

  File "/usr/local/lib/python3.11/site-packages/starlette/routing.py", line 73, in app

    response = await f(request)

                     │ └ <starlette.requests.Request object at 0x7e1c0c99a290>

                     └ <function get_request_handler.<locals>.app at 0x7e1c2ef74900>

  File "/usr/local/lib/python3.11/site-packages/fastapi/routing.py", line 301, in app

    raw_response = await run_endpoint_function(

                         └ <function run_endpoint_function at 0x7e1dac5179c0>

  File "/usr/local/lib/python3.11/site-packages/fastapi/routing.py", line 212, in run_endpoint_function

    return await dependant.call(**values)

                 │         │      └ {'user': UserModel(id='34856ae5-67e3-4261-a41b-36228e68afbd', name='user', email='Example@gmail.com', role='a...

                 │         └ <function generate_emoji at 0x7e1c7cace160>

                 └ Dependant(path_params=[], query_params=[], header_params=[], cookie_params=[], body_params=[ModelField(field_info=Body(Pydant...


  File "/app/backend/open_webui/routers/tasks.py", line 713, in generate_emoji

    return await generate_chat_completion(request, form_data=payload, user=user)

                 │                        │                  │             └ UserModel(id='34856ae5-67e3-4261-a41b-36228e68afbd', name='user', email='Example@gmail.com', role='admin', pr...

                 │                        │                  └ {'model': 'OpenAI.gpt-4.1-nano', 'messages': [{'role': 'user', 'content': "Your task is to reflect the speaker's likely facia...

                 │                        └ <starlette.requests.Request object at 0x7e1c0c99a290>

                 └ <function generate_chat_completion at 0x7e1c7ca4a5c0>


  File "/app/backend/open_webui/utils/chat.py", line 278, in generate_chat_completion

    return await generate_openai_chat_completion(

                 └ <function generate_chat_completion at 0x7e1c7cbf8ea0>


> File "/app/backend/open_webui/routers/openai.py", line 878, in generate_chat_completion

    r.raise_for_status()

    │ └ <function ClientResponse.raise_for_status at 0x7e1dad04b4c0>

    └ <ClientResponse(https://api.openai.com/v1/chat/completions) [400 Bad Request]>

      <CIMultiDictProxy('Date': 'Mon, 30 Jun 2025 20...


  File "/usr/local/lib/python3.11/site-packages/aiohttp/client_reqrep.py", line 1161, in raise_for_status

    raise ClientResponseError(

          └ <class 'aiohttp.client_exceptions.ClientResponseError'>


aiohttp.client_exceptions.ClientResponseError: 400, message='Bad Request', url='https://api.openai.com/v1/chat/completions'

2025-06-30 20:21:40.360 | INFO     | uvicorn.protocols.http.httptools_impl:send:476 - 172.17.0.1:42818 - "POST /api/v1/tasks/emoji/completions HTTP/1.1" 400 - {}

2025-06-30 20:22:13.267 | INFO     | uvicorn.protocols.http.httptools_impl:send:476 - 172.17.0.1:37792 - "GET /_app/version.json HTTP/1.1" 200 - {}

Additional Information

No response

Originally created by @DraculaVladimir on GitHub (Jun 30, 2025). Original GitHub issue: https://github.com/open-webui/open-webui/issues/15408 Originally assigned to: @tjbck on GitHub. ### Check Existing Issues - [x] I have searched the existing issues and discussions. - [x] I am using the latest version of Open WebUI. ### Installation Method Docker ### Open WebUI Version v0.6.15 ### Ollama Version (if applicable) 0.9.3 ### Operating System Windows 11 ### Browser (if applicable) Chrome 137.0.7151.120 ### Confirmation - [x] I have read and followed all instructions in `README.md`. - [x] I am using the latest version of **both** Open WebUI and Ollama. - [x] I have included the browser console logs. - [x] I have included the Docker container logs. - [x] I have **provided every relevant configuration, setting, and environment variable used in my setup.** - [x] I have clearly **listed every relevant configuration, custom setting, environment variable, and command-line option that influences my setup** (such as Docker Compose overrides, .env values, browser settings, authentication configurations, etc). - [x] I have documented **step-by-step reproduction instructions that are precise, sequential, and leave nothing to interpretation**. My steps: - Start with the initial platform/version/OS and dependencies used, - Specify exact install/launch/configure commands, - List URLs visited, user input (incl. example values/emails/passwords if needed), - Describe all options and toggles enabled or changed, - Include any files or environmental changes, - Identify the expected and actual result at each stage, - Ensure any reasonably skilled user can follow and hit the same issue. ### Expected Behavior I expect the `Display Emoji in Call` to work. ### Actual Behavior STT works, Model provides answer TTS does not read outloud In the phone call it shows "Thinking..." prepertually. ### Steps to Reproduce 1. Have Docker installed on Windows 11 2. Install OpenWebUi using `docker run -d -p 3000:8080 --gpus=all -v open-webui:/app/backend/data --name open-webui --restart always ghcr.io/open-webui/open-webui:dev-cuda` 3. Inside of OpenWebUi user settings got to `Interface`, enable `Display Emoji in Call` 4. Try to have a conversation with either local or external model. ### Logs & Screenshots ``` │ └ <function request_response.<locals>.app.<locals>.app at 0x7e1c0c96f1a0> └ <function wrap_app_handling_exceptions at 0x7e1dac514540> File "/usr/local/lib/python3.11/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app await app(scope, receive, sender) │ │ │ └ <function wrap_app_handling_exceptions.<locals>.wrapped_app.<locals>.sender at 0x7e1c0c96fb00> │ │ └ <function BaseHTTPMiddleware.__call__.<locals>.call_next.<locals>.receive_or_disconnect at 0x7e1c0c96f7e0> │ └ {'type': 'http', 'asgi': {'version': '3.0', 'spec_version': '2.3'}, 'http_version': '1.1', 'server': ('172.17.0.5', 8080), 'c... └ <function request_response.<locals>.app.<locals>.app at 0x7e1c0c96f1a0> File "/usr/local/lib/python3.11/site-packages/starlette/routing.py", line 73, in app response = await f(request) │ └ <starlette.requests.Request object at 0x7e1c0c99a290> └ <function get_request_handler.<locals>.app at 0x7e1c2ef74900> File "/usr/local/lib/python3.11/site-packages/fastapi/routing.py", line 301, in app raw_response = await run_endpoint_function( └ <function run_endpoint_function at 0x7e1dac5179c0> File "/usr/local/lib/python3.11/site-packages/fastapi/routing.py", line 212, in run_endpoint_function return await dependant.call(**values) │ │ └ {'user': UserModel(id='34856ae5-67e3-4261-a41b-36228e68afbd', name='user', email='Example@gmail.com', role='a... │ └ <function generate_emoji at 0x7e1c7cace160> └ Dependant(path_params=[], query_params=[], header_params=[], cookie_params=[], body_params=[ModelField(field_info=Body(Pydant... File "/app/backend/open_webui/routers/tasks.py", line 713, in generate_emoji return await generate_chat_completion(request, form_data=payload, user=user) │ │ │ └ UserModel(id='34856ae5-67e3-4261-a41b-36228e68afbd', name='user', email='Example@gmail.com', role='admin', pr... │ │ └ {'model': 'OpenAI.gpt-4.1-nano', 'messages': [{'role': 'user', 'content': "Your task is to reflect the speaker's likely facia... │ └ <starlette.requests.Request object at 0x7e1c0c99a290> └ <function generate_chat_completion at 0x7e1c7ca4a5c0> File "/app/backend/open_webui/utils/chat.py", line 278, in generate_chat_completion return await generate_openai_chat_completion( └ <function generate_chat_completion at 0x7e1c7cbf8ea0> > File "/app/backend/open_webui/routers/openai.py", line 878, in generate_chat_completion r.raise_for_status() │ └ <function ClientResponse.raise_for_status at 0x7e1dad04b4c0> └ <ClientResponse(https://api.openai.com/v1/chat/completions) [400 Bad Request]> <CIMultiDictProxy('Date': 'Mon, 30 Jun 2025 20... File "/usr/local/lib/python3.11/site-packages/aiohttp/client_reqrep.py", line 1161, in raise_for_status raise ClientResponseError( └ <class 'aiohttp.client_exceptions.ClientResponseError'> aiohttp.client_exceptions.ClientResponseError: 400, message='Bad Request', url='https://api.openai.com/v1/chat/completions' 2025-06-30 20:21:40.360 | INFO | uvicorn.protocols.http.httptools_impl:send:476 - 172.17.0.1:42818 - "POST /api/v1/tasks/emoji/completions HTTP/1.1" 400 - {} 2025-06-30 20:22:13.267 | INFO | uvicorn.protocols.http.httptools_impl:send:476 - 172.17.0.1:37792 - "GET /_app/version.json HTTP/1.1" 200 - {} ``` ### Additional Information _No response_
GiteaMirror added the bug label 2026-04-19 23:20:38 -05:00
Author
Owner

@tjbck commented on GitHub (Jul 16, 2025):

Addressed with 19f1286cc7 in dev!

<!-- gh-comment-id:3078196431 --> @tjbck commented on GitHub (Jul 16, 2025): Addressed with 19f1286cc7ac5b984fe5e4264c21df8ac2ab0b43 in dev!
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/open-webui#17558