open ai document

henry·2023년 4월 23일
0

응답 예시

{
 'id': 'chatcmpl-6p9XYPYSTTRi0xEviKjjilqrWU2Ve',
 'object': 'chat.completion',
 'created': 1677649420,
 'model': 'gpt-3.5-turbo',
 'usage': {'prompt_tokens': 56, 'completion_tokens': 31, 'total_tokens': 87},
 'choices': [
   {
    'message': {
      'role': 'assistant',
      'content': 'The 2020 World Series was played in Arlington, Texas at the Globe Life Field, which was the new home stadium for the Texas Rangers.'},
    'finish_reason': 'stop',
    'index': 0
   }
  ]
}

모든 응답에는 finish_reason 이 포함되어서 반환된다.

finish_reason의 응닶 값 리스트

  • stop: API가 완전한 모델 출력을 반환했습니다.
  • lengthmax_tokens: 매개변수 또는 토큰 제한 으로 인해 불완전한 모델 출력
  • content_filter: 콘텐츠 필터의 플래그로 인해 누락된 콘텐츠
  • null: API 응답이 아직 진행 중이거나 완료되지 않음

https://platform.openai.com/docs/api-reference/chat

0개의 댓글