openai: allow openai endpoint to accept webp images (#11412)

Co-authored-by: Richard Lyons <frob@cloudstaff.com>
This commit is contained in:
frob
2025-07-17 12:31:49 +08:00
committed by GitHub
parent e840ccb523
commit 5e67f4f90e

View File

@@ -423,7 +423,7 @@ func fromChatRequest(r ChatCompletionRequest) (*api.ChatRequest, error) {
}
}
types := []string{"jpeg", "jpg", "png"}
types := []string{"jpeg", "jpg", "png", "webp"}
valid := false
for _, t := range types {
prefix := "data:image/" + t + ";base64,"