deepseek-vision

deepseek-vision

Provide DeepSeek with proxy services that complement visual understanding, networked search and Anthropic /OpenAI-compatible interfaces.

Description

##Functional characteristics - DeepSeek Anthropic/OpenAI-compatible proxy. - For image input, first call the visual model to generate a description, and then forward it to DeepSeek. - Support online configuration of operating parameters such as visual endpoints, networked search keys, and model lists. - The configurator administrator password and agent Key are generated through installation parameters to avoid upstream default weak passwords. - The `.env` and run logs written by the home configurator will fall into the Lazy Cat persistence directory and will remain after the application is restarted. - The installation parameters are only used for the first time when starting and generating the initial `.env`; thereafter, the persistence configuration saved by the page configurator shall prevail. - After clicking "Application Configuration" on the page, most operating parameters will be hot-loaded immediately, and the container will no longer be restarted proactively. - After logging in, the configurator will automatically read the currently saved configuration, and there is no need to re-fill it after refreshing the page. Note: 1. If there is any parameter change, you need to "generate.env configuration file" and "apply configuration" again. If there is no modification, you do not need to "generate.env configuration file" after the revision, and you can use it directly. 2. Refer to the curl command below to test vision and web search Visual example: ``` curl -s 'https://deepseek-vision. Your micro service name. heiyu.space/v1/chat/completions'\ -H 'content-type: application/json' \ -H 'authorization: Bearer corresponds to the MASTER_API KEY' in the application -d "$(jq -n \ --arg model 'deepseek-v4-pro' \ --arg image "data:image/png;base64,$(base64 <replace it with your image path| tr -d '\n')" \ '{ model: $model, messages: [ { role: "user", content: [ {type: "text", text: "Please describe the content in this picture in detail in Chinese. "}, {type: "image_url", image_url: {url: $image}} ] } ], max_tokens: 700 }')" | jq ``` Example of web search ``` curl -s 'https://deepseek-vision. Your micro service name.heiyu.space/v1/messages' \ -H 'content-type: application/json' \ - H'x-api-key: Corresponding to the MASTER_API KEY'in the application -d "$(jq -n \ --arg model 'deepseek-v4-pro' \ '{ model: $model, max_tokens: 900, messages: [ { role: "user", content: [ { type: "text", text: "Please search for recent important developments in DeepSeek in 2026, summarize them in Chinese, and attach a source quote after each fact. " } ] } ], tools: [ { type: "web_search_20260209", name: "web_search", max_uses: 2 } ] }')" | jq ```

Screenshots
Screenshot 1
Screenshot 2
Screenshot 3
Screenshot 4
Screenshot 5
App Information
Version
0.1.0
Package Size
72 KB
Image Size
55.77 MB
Updated
July 2, 2026
Source Code
ErlichLiu
Platform Support
PC
Keywords
DeepSeekvisual modelsAnthropic APIOpenAI-compatible agents