LocalAI/core/schema
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
..
backend.go feat: Add backend gallery (#5607) 2025-06-15 14:56:52 +02:00
elevenlabs.go feat: Centralized Request Processing middleware (#3847) 2025-02-10 12:06:16 +01:00
jina.go feat: Centralized Request Processing middleware (#3847) 2025-02-10 12:06:16 +01:00
localai.go feat(video-gen): add endpoint for video generation (#5247) 2025-04-26 18:05:01 +02:00
openai.go feat(openai): support input_audio chat api field (#5870) 2025-07-21 09:15:55 +02:00
prediction.go chore(autogptq): drop archived backend (#5214) 2025-04-19 15:52:29 +02:00
request.go feat: Centralized Request Processing middleware (#3847) 2025-02-10 12:06:16 +01:00
tokenize.go feat: Centralized Request Processing middleware (#3847) 2025-02-10 12:06:16 +01:00
transcription.go feat: Centralized Request Processing middleware (#3847) 2025-02-10 12:06:16 +01:00