Skip to main content
Core.Today
|
OpenAI빠름높음

GPT-4o Mini

비용 효율적이고 빠른 모델로 강력한 성능을 제공합니다. 절대적인 성능보다 속도와 비용이 중요한 대량 작업에 최적입니다.

1 크레딧
1K 토큰당 (평균)
128K 컨텍스트 윈도우
16K 최대 출력 토큰
비전 기능
함수 호출 지원
매우 비용 효율적
빠른 응답 시간

AI 어시스턴트에서 사용하기

이 모델의 사용법을 Claude, ChatGPT 등에 복사

llms.txt

모델 상세 사양

컨텍스트 윈도우
128K
토큰
최대 출력
16K
토큰
학습 데이터
2023-10
호환 SDK
OpenAI

기능 지원

비전
함수 호출
스트리밍
JSON 모드
시스템 프롬프트

토큰별 가격 (1M 토큰당)

토큰 종류크레딧달러 환산
입력 토큰150$0.15
출력 토큰600$0.60
캐시된 토큰75$0.07

* 1 크레딧 ≈ $0.001 (실제 요금은 사용량에 따라 달라질 수 있습니다)

빠른 시작

curl -X POST "https://api.core.today/llm/openai/v1/chat/completions" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer cdt_your_api_key" \
  -d '{
  "model": "gpt-4o-mini",
  "messages": [
    {
      "role": "system",
      "content": "Classify the sentiment of the following text as positive, negative, or neutral. Respond with only the classification."
    },
    {
      "role": "user",
      "content": "The product arrived on time and works great!"
    }
  ],
  "temperature": 0
}'

파라미터

파라미터타입필수기본값설명
messagesarrayYes-메시지 객체 배열
temperaturefloatNo1.0샘플링 온도 (0-2)
max_tokensintegerNo-최대 응답 토큰 수
streambooleanNofalse스트리밍 활성화

예제

분류

고객 피드백 분류

curl -X POST "https://api.core.today/llm/openai/v1/chat/completions" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer cdt_your_api_key" \
  -d '{
  "model": "gpt-4o-mini",
  "messages": [
    {
      "role": "system",
      "content": "Classify the sentiment of the following text as positive, negative, or neutral. Respond with only the classification."
    },
    {
      "role": "user",
      "content": "The product arrived on time and works great!"
    }
  ],
  "temperature": 0
}'

요약

긴 텍스트 요약

curl -X POST "https://api.core.today/llm/openai/v1/chat/completions" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer cdt_your_api_key" \
  -d '{
  "model": "gpt-4o-mini",
  "messages": [
    {
      "role": "user",
      "content": "Summarize this article in 3 bullet points: [article text here]"
    }
  ],
  "max_tokens": 500
}'

팁 & 모범 사례

1대용량, 비용 민감형 애플리케이션에 최적
2GPT-4o로 업그레이드 전 간단한 작업에 사용
3프로토타이핑 및 테스트에 탁월
4쉬운 전환을 위해 GPT-4o와 동일한 API

사용 사례

대용량 챗봇
간단한 분류 작업
콘텐츠 요약
데이터 추출
배치 처리
개발 및 테스트

모델 정보

제공자OpenAI
버전2024-07-18
카테고리LLM
가격1 크레딧

API Endpoint

POST /llm/openai/v1/chat/completions
Playground에서 테스트문서로 돌아가기