go-chatgpt
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

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