adding image support for gif and webp (#11237)

Adds image support for gif and webp images. Tested using webp and gif
(both single and multi image gif files)
This commit is contained in:
natea-oai
2026-02-09 14:47:22 -08:00
committed by GitHub
parent 373f5467ef
commit ed977dbeda
4 changed files with 37 additions and 4 deletions
+2 -2
View File
@@ -9,11 +9,11 @@ workspace = true
[dependencies]
base64 = { workspace = true }
image = { workspace = true, features = ["jpeg", "png"] }
image = { workspace = true, features = ["jpeg", "png", "gif", "webp"] }
codex-utils-cache = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true, features = ["fs", "rt", "rt-multi-thread", "macros"] }
[dev-dependencies]
image = { workspace = true, features = ["jpeg", "png"] }
image = { workspace = true, features = ["jpeg", "png", "gif", "webp"] }
tempfile = { workspace = true }