GoogleBezahltBetriebsbereit
Gemini 2.0 Flash 001
API-Modellname: gemini-2.0-flash-001
Gemini 2.0 Flash 001 ist das Chat-Modell von Google, bereitgestellt über die einheitliche API von Api.Airforce. Es kostet 0,11 € pro Million Eingabe-Tokens und 0,45 € pro Million Ausgabe-Tokens. Greife über die OpenAI-kompatible API mit einem einzigen Schlüssel darauf zu — zusammen mit über 65 weiteren Modellen auf Api.Airforce.
Preise
Preis nach Eingabelänge
| Eingabelänge | Eingabe / 1M Tokens | Ausgabe / 1M Tokens |
|---|---|---|
| ≤128000 | ≈ 0,11 € | ≈ 0,45 € |
| long_context | ≈ 0,23 € | ≈ 0,45 € |
Spezifikationen
- Anbieter
- Typ
- Chat-Modell
Wofür wird Gemini 2.0 Flash 001 verwendet?
- Chatbots & Assistenten — konversationelle KI, Textentwürfe, Zusammenfassungen und Q&A.
Gemini 2.0 Flash 001 vs. ähnliche Modelle
| Modell | Intelligenz | Kontext | Input / 1M | Output / 1M |
|---|---|---|---|---|
| Gemini 2.0 Flash 001 | — | — | 0,11 € | 0,45 € |
| Gemini 2.0 Flash | — | 1M | 0,11 € | 0,45 € |
| Gemini 2.0 Flash Lite | — | — | 0,08 € | 0,33 € |
| Gemini 2.0 Flash Lite 001 | — | — | 49,78 € | 199,12 € |
Preise sind Api.Airforce Pay-as-you-go-Tarife pro 1M Token. Der Kontext ist die maximale Eingabelänge.
Verwandte Modelle
Gemini 2.0 FlashGoogle · 0,11 € / 1MGemini 2.0 Flash LiteGoogle · 0,08 € / 1MGemini 2.0 Flash Lite 001Google · 49,78 € / 1MGemini 2.5 Computer Use Preview 10Google · 49,78 € / 1MGemini 2.5 FlashGoogle · 0,46 € / 1MGemini 2.5 Flash Image PreviewGoogle · 0,06 € / 1MGemini 2.5 Flash Image TokenGoogle · 0,29 € / 1MGemini 2.5 Flash LiteGoogle · 0,0087 € / 1MGemini 2.5 Flash Lite Preview 09Google · 0,11 € / 1MGemini 2.5 Flash Lite Preview 09Google · 0,07 € / 1MGemini 2.5 Flash Native Audio LatestGoogle · 49,78 € / 1MGemini 2.5 Flash Native Audio Preview 09Google · 49,78 € / 1M
Gemini 2.0 Flash 001 — häufig gestellte Fragen
- Was kostet Gemini 2.0 Flash 001?
- Gemini 2.0 Flash 001 wird Pay-as-you-go abgerechnet: 0,11 € pro 1M Input-Token und 0,45 € pro 1M Output-Token. Kein Abonnement — du zahlst nur, was du verwendest.
- Was kann Gemini 2.0 Flash 001?
- Gemini 2.0 Flash 001 ist das Chat-Modell von Google, zugänglich über die Api.Airforce API.
- Ist Gemini 2.0 Flash 001 kostenlos nutzbar?
- Gemini 2.0 Flash 001 ist ein kostenpflichtiges Pay-as-you-go-Modell — kein Abonnement, du wirst nur für die tatsächliche Nutzung berechnet.
- Wie verwende ich Gemini 2.0 Flash 001 über die API?
- Gemini 2.0 Flash 001 ist OpenAI-kompatibel. Richte ein beliebiges OpenAI SDK auf https://api.airforce/v1 aus und übergib die Modell-ID gemini-2.0-flash-001 zusammen mit deinem Api.Airforce API-Key.
- Von wem stammt Gemini 2.0 Flash 001?
- Gemini 2.0 Flash 001 ist das Chat-Modell von Google, bereitgestellt über das einheitliche Api.Airforce-Gateway neben 100+ weiteren Modellen.
Live-Metriken werden geladen…
Live-Metriken werden geladen…
Live-Metriken werden geladen…
Gemini 2.0 Flash 001 über die API nutzen
OpenAI-kompatibel — richte ein beliebiges OpenAI-SDK auf https://api.airforce/v1 und übergib gemini-2.0-flash-001 als Modell.
cURL
curl https://api.airforce/v1/chat/completions \
-H "Authorization: Bearer $AIRFORCE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gemini-2.0-flash-001",
"messages": [{ "role": "user", "content": "Hello!" }]
}'Python
from openai import OpenAI
client = OpenAI(base_url="https://api.airforce/v1", api_key="$AIRFORCE_API_KEY")
r = client.chat.completions.create(
model="gemini-2.0-flash-001",
messages=[{"role": "user", "content": "Hello!"}],
)
print(r.choices[0].message.content)JavaScript
import OpenAI from "openai";
const client = new OpenAI({ baseURL: "https://api.airforce/v1", apiKey: process.env.AIRFORCE_API_KEY });
const r = await client.chat.completions.create({
model: "gemini-2.0-flash-001",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(r.choices[0].message.content);