go-chatgpt
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
306 B

  1. // common.go defines common types used throughout the OpenAI API.
  2. package gogpt
  3. // Usage Represents the total token usage per request to OpenAI.
  4. type Usage struct {
  5. PromptTokens int `json:"prompt_tokens"`
  6. CompletionTokens int `json:"completion_tokens"`
  7. TotalTokens int `json:"total_tokens"`
  8. }