최첨단 멀티모달 이해력, 박사급 추론 능력, 최고 수준의 코딩 성능을 갖춘 Google의 가장 진보된 추론 모델입니다.
이 모델의 사용법을 Claude, ChatGPT 등에 복사
| 토큰 종류 | 크레딧 | 달러 환산 |
|---|---|---|
| 입력 토큰 | 3.6 | $0.00 |
| 출력 토큰 | 21.6 | $0.02 |
* 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-flash",
"messages": [
{
"role": "user",
"content": "A researcher has 5 compounds. Compound A reacts with B to form C. C reacts with D only in the presence of a catalyst E. If only 3g of E is available and each reaction consumes 1g of catalyst, what is the maximum yield of the final product if we start with 10g each of A, B, and D?"
}
],
"max_tokens": 4096,
"temperature": 0.5
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
messages | array | Yes | - | 메시지 객체 배열 (OpenAI 형식) |
temperature | float | No | 1 | 샘플링 온도 (0-2) |
top_p | float | No | 0.95 | 핵심 샘플링 파라미터 |
max_tokens | integer | No | - | 최대 출력 토큰 수 |
복잡한 다단계 추론 문제 해결
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-flash",
"messages": [
{
"role": "user",
"content": "A researcher has 5 compounds. Compound A reacts with B to form C. C reacts with D only in the presence of a catalyst E. If only 3g of E is available and each reaction consumes 1g of catalyst, what is the maximum yield of the final product if we start with 10g each of A, B, and D?"
}
],
"max_tokens": 4096,
"temperature": 0.5
}'전문가 수준의 분석으로 코드 리뷰 및 개선
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-flash",
"messages": [
{
"role": "system",
"content": "You are a senior software engineer. Provide detailed code review with severity levels and concrete fixes."
},
{
"role": "user",
"content": "Review this Python function for performance issues and security vulnerabilities, and suggest improvements."
}
],
"max_tokens": 2000,
"temperature": 0.3
}'POST /llm/gemini/v1beta/openai/chat/completions