DeepSeek: DeepSeek V4 Flash 0423 is a capable model from OpenRouter with a 1.0M context window, supporting function calling. Priced at $0.000047/1K input, $0.000094/1K output.
Total Requests
5
Success Rate
100%
P50 Latency
5231ms
P95 Latency
14596ms
Selection Rate
0.0%
of eligible requests
Intelligence Score
45/100
from openai import OpenAI
client = OpenAI(
base_url="https://api.antbase.ai/v1",
api_key="YOUR_ANT_API_KEY",
)
response = client.chat.completions.create(
model="deepseek/deepseek-v4-flash",
messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)