From 40b10eee6d62a32578ca7e884fb73d4c8bc644a0 Mon Sep 17 00:00:00 2001 From: Adrien Duermael Date: Wed, 23 Apr 2025 20:13:51 -0700 Subject: [PATCH] api: fix ImageData struct comment to expect raw image bytes (#10386) --- api/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/types.go b/api/types.go index 53a9593e5..7d8b6e532 100644 --- a/api/types.go +++ b/api/types.go @@ -76,7 +76,7 @@ type GenerateRequest struct { // this request. KeepAlive *Duration `json:"keep_alive,omitempty"` - // Images is an optional list of base64-encoded images accompanying this + // Images is an optional list of raw image bytes accompanying this // request, for multimodal models. Images []ImageData `json:"images,omitempty"`