GoogleTrả phíĐang hoạt độngĐã kiểm duyệt
Gemini 2.5 Pro Preview Tts
Tên mô hình API: gemini-2.5-pro-preview-tts
Gemini 2.5 Pro Preview Tts là mô hình tạo nhạc của Google, được phục vụ trên API hợp nhất của Api.Airforce. Các khả năng bao gồm Suy luận. Truy cập nó thông qua API tương thích với OpenAI chỉ với một khóa, cùng với hơn 65 mô hình khác trên Api.Airforce.
Bảng giá
Thông số kỹ thuật
- Nhà cung cấp
- Loại
- mô hình tạo nhạc
Khả năng
Suy luận
Gemini 2.5 Pro Preview Tts được sử dụng để làm gì?
- Tạo nhạc & âm thanh — nhạc nền, jingle và soundscape.
Mô hình liên quan
Gemini 2.0 FlashGoogle · 3.384 ₫ / 1MGemini 2.0 Flash 001Google · 3.384 ₫ / 1MGemini 2.0 Flash LiteGoogle · 2.343 ₫ / 1MGemini 2.0 Flash Lite 001Google · 1.494.592 ₫ / 1MGemini 2.5 Computer Use Preview 10Google · 1.494.592 ₫ / 1MGemini 2.5 FlashGoogle · 13.798 ₫ / 1MGemini 2.5 Flash Image PreviewGoogle · 1.822 ₫ / 1MGemini 2.5 Flash Image TokenGoogle · 8.591 ₫ / 1MGemini 2.5 Flash LiteGoogle · 260 ₫ / 1MGemini 2.5 Flash Lite Preview 09Google · 3.384 ₫ / 1MGemini 2.5 Flash Lite Preview 09Google · 2.083 ₫ / 1MGemini 2.5 Flash Native Audio LatestGoogle · 1.494.592 ₫ / 1M
Gemini 2.5 Pro Preview Tts — câu hỏi thường gặp
- Gemini 2.5 Pro Preview Tts có giá bao nhiêu?
- Gemini 2.5 Pro Preview Tts được tính phí theo lần tạo, không theo token. Xem trang định giá để biết mức hiện tại.
- Gemini 2.5 Pro Preview Tts có thể làm gì?
- Gemini 2.5 Pro Preview Tts hỗ trợ Suy luận.
- Gemini 2.5 Pro Preview Tts có miễn phí không?
- Gemini 2.5 Pro Preview Tts là mô hình trả phí pay-as-you-go — không cần đăng ký, bạn chỉ bị tính phí theo mức sử dụng.
- Làm thế nào để sử dụng Gemini 2.5 Pro Preview Tts qua API?
- Gemini 2.5 Pro Preview Tts tương thích với OpenAI. Trỏ bất kỳ OpenAI SDK nào đến https://api.airforce/v1 và truyền model ID gemini-2.5-pro-preview-tts cùng với API key Api.Airforce của bạn.
- Ai tạo ra Gemini 2.5 Pro Preview Tts?
- Gemini 2.5 Pro Preview Tts là mô hình tạo nhạc của Google, được phục vụ qua cổng Api.Airforce thống nhất cùng với hơn 100+ mô hình khác.
Đang tải số liệu trực tiếp…
Đang tải số liệu trực tiếp…
Đang tải số liệu trực tiếp…
Sử dụng Gemini 2.5 Pro Preview Tts qua API
Tương thích với OpenAI — trỏ bất kỳ OpenAI SDK nào tới https://api.airforce/v1 và truyền gemini-2.5-pro-preview-tts làm mô hình.
cURL
curl https://api.airforce/v1/chat/completions \
-H "Authorization: Bearer $AIRFORCE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gemini-2.5-pro-preview-tts",
"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.5-pro-preview-tts",
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.5-pro-preview-tts",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(r.choices[0].message.content);