Google

Gemini 2.5 Flash Live API

US Google
Playground에서 사용해보기 → API 키 받기

Gemini 2.5 Flash Live는 Google의 빠르고 비용 효율적인 모델입니다. 멀티모달 비전을 제공합니다. MeshTok 통합 API를 통해 사용 가능합니다.

이미지오디오빠름도구

가격 (공식 목록, 100만 토큰 기준)

입력
$0.10/M
출력
$0.40/M

사양

컨텍스트 창1000K 토큰 입력 모달리티이미지, 오디오 스트리밍 APIOpenAI 호환

Gemini 2.5 Flash Live 사용 방법

OpenAI를 바로 대체할 수 있습니다. base_url과 model만 변경하세요.

# Python - pip install openai
from openai import OpenAI

client = OpenAI(
    base_url="https://meshtok.com/v1",
    api_key="sk-your-MeshTok-key",
)

resp = client.chat.completions.create(
    model="google/gemini-2.5-flash-live",
    messages=[{"role":"user","content":"Hello!"}],
)
print(resp.choices[0].message.content)
# cURL
curl https://meshtok.com/v1/chat/completions \
  -H "Authorization: Bearer sk-your-MeshTok-key" \
  -H "Content-Type: application/json" \
  -d '{"model":"google/gemini-2.5-flash-live","messages":[{"role":"user","content":"Hello!"}]}'

관련 모델

고려해볼 만한 다른 모델입니다.