You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 16, 2025. It is now read-only.
Preparation for #279
* Introducing a base File that centralizes mime type, base64 handling,
etc.
* Image split into ImageUrl and Image based on File => i usually know
what i need in user land
* `new Image('https://...')` => `new ImageUrl('https://...)`
* `new Image('data:image/jpeg;base64,...')` =>
`Image::fromDataUrl('data:image/jpeg;base64,...')`
* `new Image('/path/to/jpeg.jpg')` =>
`Image::fromFile('/path/to/jpeg.jpg')`
* removing `File` class of Whisper bridge in favor of `Audio`
0 commit comments