LocalAI/core/http
Max Goltzsche eae4ca08da
feat(openai): support input_audio chat api field (#5870)
Improving the chat completion endpoint OpenAI API compatibility by supporting messages of type `input_audio`, e.g.:
```
{
  ...
  "messages": [
    {
      "role": "user",
      "content": [{
        "type": "input_audio",
        "input_audio": {
          "data": "<base64-encoded audio data>",
          "format": "wav"
        }
      }]
    }
  ]
}
```

Closes #5869

Signed-off-by: Max Goltzsche <max.goltzsche@gmail.com>
2025-07-21 09:15:55 +02:00
..
elements feat: Add backend gallery (#5607) 2025-06-15 14:56:52 +02:00
endpoints feat: split piper from main binary (#5858) 2025-07-19 08:31:33 +02:00
middleware feat(openai): support input_audio chat api field (#5870) 2025-07-21 09:15:55 +02:00
routes fix(gallery): correctly show status for downloading OCI images (#5774) 2025-07-02 08:25:48 +02:00
static feat(ui): display thinking tags appropriately (#5540) 2025-05-31 08:50:46 +02:00
utils feat(ui): path prefix support via HTTP header (#4497) 2025-01-07 17:18:21 +01:00
views fix: explorer page should not have login (#5855) 2025-07-17 10:54:03 +02:00
app.go feat(backend gallery): add meta packages (#5696) 2025-06-24 17:08:27 +02:00
app_test.go feat: split piper from main binary (#5858) 2025-07-19 08:31:33 +02:00
explorer.go feat: rebrand - LocalAGI and LocalRecall joins the LocalAI stack family (#5159) 2025-04-15 17:51:24 +02:00
http_suite_test.go fix: rename fiber entrypoint from http/api to http/app (#2096) 2024-04-21 22:39:28 +02:00
render.go feat(ui): path prefix support via HTTP header (#4497) 2025-01-07 17:18:21 +01:00