Google의 가장 강력한 Gemini 모델 프리뷰 버전입니다. 획기적인 추론, 코딩, 멀티모달 기능과 최대 컨텍스트 윈도우를 제공합니다.
이 모델의 사용법을 Claude, ChatGPT 등에 복사
| 토큰 종류 | 크레딧 | 달러 환산 |
|---|---|---|
| 입력 토큰 | 4,000 | $4.00 |
| 출력 토큰 | 24,000 | $24.00 |
* 1 크레딧 ≈ $0.001 (실제 요금은 사용량에 따라 달라질 수 있습니다)
curl -X POST "https://api.core.today/llm/gemini/v1beta/openai/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "gemini-3-pro-preview",
"messages": [
{
"role": "user",
"content": "Analyze the architectural differences between transformer and state-space models, and discuss their implications for future AI system design."
}
],
"max_tokens": 4096,
"temperature": 0.7
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
messages | array | Yes | - | 메시지 객체 배열 (OpenAI 형식) |
temperature | float | No | 1 | 샘플링 온도 (0-2) |
max_tokens | integer | No | - | 최대 출력 토큰 수 |
Gemini 3 Pro를 활용한 심층 분석
curl -X POST "https://api.core.today/llm/gemini/v1beta/openai/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "gemini-3-pro-preview",
"messages": [
{
"role": "user",
"content": "Analyze the architectural differences between transformer and state-space models, and discuss their implications for future AI system design."
}
],
"max_tokens": 4096,
"temperature": 0.7
}'POST /llm/gemini/v1beta/openai/chat/completions