feat(sdk/go): add support for image inputs in ai calls - #164
Merged
AbirAbbas merged 6 commits intoFeb 18, 2026
Merged
Conversation
Contributor
Performance
✓ No regressions detected |
Contributor
|
@BenjaminGoehry just checking to see if I should review this or not (seems to be in draft) |
BenjaminGoehry
force-pushed
the
feat/add_support_image_and_audio
branch
from
February 11, 2026 15:31
cda4c41 to
207cda8
Compare
BenjaminGoehry
force-pushed
the
feat/add_support_image_and_audio
branch
from
February 11, 2026 22:07
71ccf05 to
14dc063
Compare
BenjaminGoehry
force-pushed
the
feat/add_support_image_and_audio
branch
from
February 11, 2026 22:41
45f4afb to
be04ab9
Compare
Contributor
Author
|
Hi @AbirAbbas , The changes for images were more significant than expected, so I think the PR is ready to review as-is. I can follow up with a separate PR for audio input later if that’s ok. Thanks! |
BenjaminGoehry
marked this pull request as ready for review
February 11, 2026 23:01
- Use OpenAI-standard image_url format with nested {url} struct instead
of non-standard input_image type with flat string
- Add MarshalJSON to Message for backward-compatible serialization
(single text parts serialize as plain string)
- Remove transformForOpenRouter that was dropping Temperature, MaxTokens,
Stream, ResponseFormat and other request fields
- Remove debug fmt.Printf left in production code
- Fix case-sensitive MIME type detection (now handles .PNG, .JPG, etc.)
- Fix typo in test ("Reponse" -> "Response")
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #99
Changes
Modified Files
agent_test.go– Updated tests to reflect the new struct.client.go– Adapted request handling for OpenRouter compatibility.client_test.go– Updated tests to use the new struct.config.go– Added transformForOpenRouter to map OpenAI-style JSON to OpenRouter format.request.go–request_test.go– Added tests for the new image-related functions.README.md– Updated documentation for the new options.New File
multimodal.go: Added helper functions such as detectMIMEType.Features
✅ Image Support:
✅ Error Handling: