OpenRouter 애그리게이터를 경유하는 Mistral Large 3 (2512)입니다. Mistral의 역대 최고 성능 모델로, 41B 활성 파라미터(총 675B)의 희소 MoE 아키텍처를 Apache 2.0 라이선스로 공개했으며 256K 컨텍스트와 이미지·파일 입력을 지원합니다. OpenRouter 실사용 비용 기준으로 실비 정산됩니다.
콘솔의 Playground에서 별도 코드 없이 이 모델을 즉시 테스트할 수 있어요
이 모델의 사용법을 Claude, ChatGPT 등에 복사
| 토큰 종류 | 크레딧 | 달러 환산 |
|---|---|---|
| 입력 토큰 | 929 | $0.62 |
| 출력 토큰 | 2,787 | $1.86 |
| 캐시된 토큰 | 92.9 | $0.06 |
* 1,500 크레딧 ≈ $1 (실제 요금은 사용량에 따라 달라질 수 있습니다)
curl -X POST "https://api.core.today/llm/openrouter/v1/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "mistralai/mistral-large-2512",
"messages": [
{
"role": "user",
"content": "Summarize the attached report in 5 bullets."
}
],
"max_tokens": 1024
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
model | string | Yes | - | 모델 ID입니다 (vendor/model 형식). 예: "mistralai/mistral-large-2512". |
messages | array | Yes | - | OpenAI 형식의 대화 메시지 배열입니다 (system/user/assistant 역할). |
temperature | number | No | 0.7 | 샘플링 온도입니다 (0~2). |
max_tokens | integer | No | 2048 | 최대 완성 토큰 수입니다. |
stream | boolean | No | false | SSE 스트리밍 응답 여부입니다. |
OpenRouter 경유 OpenAI 호환 챗 컴플리션 요청
curl -X POST "https://api.core.today/llm/openrouter/v1/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "mistralai/mistral-large-2512",
"messages": [
{
"role": "user",
"content": "Summarize the attached report in 5 bullets."
}
],
"max_tokens": 1024
}'