Replies: 1 comment 1 reply
-
Thanks, this makes sense! Would you be willing to open a PR to fix this in the spec? We can incorporate it in the next draft version. I'm going to close this out, as this would be better as an issue or PR, but very much agree with the point. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Pre-submission Checklist
Your Idea
I feel like having just ImageContent is limiting, and could be a mistake that should be prevented early on.
This is especially redundant considering that it represents base64 encoded data, and the mime type is required anyway.
I think that it should be changed to BlobContent, like so:
`
export interface BlobContent extends Annotated {
type: "blob";
/**
/
data: string;
/*
*/
mimeType: string;
}
`
Scope
Beta Was this translation helpful? Give feedback.
All reactions