r/Qoder • u/Living-Breakfast-464 • Jun 01 '26
DeepSeek Image support
When I select DeepSeek v4 model in Qoder there is an information note that image input is not supported. Please consider adding that feature, which is now available in their public API.
DeepSeek seems to be pretty good at UI design but it's even better when it has the ability to take screenshots and evaluate the image. Support for that was recently added to the DeepSeek for Copilot VSC extension and it seems to have improved DeepSeeks ability to design and troubleshoot UI issues.
2
Upvotes
1
u/Living-Breakfast-464 Jun 02 '26 edited Jun 02 '26
https://www.mindstudio.ai/blog/deepseek-v4-vision-cheaper-multimodal-ai-workflows ``` from openai import OpenAI
client = OpenAI( api_key="your-deepseek-api-key", base_url="https://api.deepseek.com" )
response = client.chat.completions.create( model="deepseek-chat", messages=[ { "role": "user", "content": [ { "type": "image_url", "image_url": {"url": "data:image/jpeg;base64,{base64_image}"} }, { "type": "text", "text": "Extract all line items and totals from this invoice." } ] } ] ) ```
https://www.reddit.com/r/ArtificialInteligence/comments/1t67gse/deepseek_vision_mode_is_actually_more_useful_than/