Jack Collins
Jack Collins
Hi @rawwerks This should just be a case of registering an implementation of `message_to_anthropic_message` for `UserImageMessage`, which can actually be done externally to magentic / without needing a new version,...
Support for Anthropic vision release now in https://github.com/jackmpcollins/magentic/releases/tag/v0.31.0
@piiq I'd prefer to add all the settings individually (rather than kwargs) because some settings are set by magentic so shouldn't be supplied by users, and it's nice to have...
Hi @jaromiru The OpenAI API returns _either_ a message or tool call(s), while the Anthropic API can return "thoughts" before making a tool call (see related issue https://github.com/jackmpcollins/magentic/issues/220). Because of...
@jaromiru Let's leave this open because it would be great for magentic to support this for the Anthropic API. Please let me know if/how you solve this for OpenAI using...
GPT-4o also supports thinking before tool use. I'll try to get this added soon. Probably will be a new return type that is an iterable of `StreamedStr` and `FunctionCall`, similar...
@jaromiru @mnicstruwig This should now be resolved by `StreamedResponse` in https://github.com/jackmpcollins/magentic/releases/tag/v0.34.0 Please let me know if this works for you! Thanks --- Example from there ```python from magentic import prompt,...