성능과 비용의 훌륭한 균형을 갖춘 Google의 프로덕션 레디 모델입니다. 대량 문서 처리를 위한 2M 토큰 컨텍스트 윈도우를 제공합니다.
| 토큰 종류 | 크레딧 | 달러 환산 |
|---|---|---|
| 입력 토큰 | 1,250 | $1.25 |
| 출력 토큰 | 5,000 | $5.00 |
* 1 크레딧 ≈ $0.001 (실제 요금은 사용량에 따라 달라질 수 있습니다)
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{
"model": "gemini-1.5-pro",
"input": {
"model": "gemini-1.5-pro",
"messages": [
{
"role": "user",
"content": "Analyze the themes, character development, and narrative structure of this novel: [full book text]"
}
]
}
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
messages | array | Yes | - | 메시지 객체 배열 |
temperature | float | No | 1.0 | 샘플링 온도 |
max_tokens | integer | No | - | 최대 출력 토큰 |
전체 책 분석
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{
"model": "gemini-1.5-pro",
"input": {
"model": "gemini-1.5-pro",
"messages": [
{
"role": "user",
"content": "Analyze the themes, character development, and narrative structure of this novel: [full book text]"
}
]
}
}'POST /llm/openai/v1/chat/completions