go-chatgpt
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

10 rader
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. }