Text Generator Brain Text Generator
Modelschevron_rightDeepSeekchevron_rightDeepSeek V4 Flash Vision Exp
DeepSeek model

DeepSeek V4 Flash Vision Exp

deepseek-v4-flash-vision-exp

Experimental DeepSeek V4 Flash vision model for mixed text and image input, including base64 URLs, external URLs, and Files API parts.

Drop-in OpenAI compatibility

Use one model ID.

Python
from openai import OpenAI

client = OpenAI(
    base_url="https://api.text-generator.io/v1",
    api_key="YOUR_TEXT_GENERATOR_KEY",
)

response = client.chat.completions.create(
    model="deepseek-v4-flash-vision-exp",
    messages=[{"role": "user", "content": "Hello"}],
)