Fix weird 'C' in CompletionResponse struct

This commit is contained in:
bnwlkr
2020-11-22 20:59:40 -08:00
parent 7ed6fe128b
commit 042eff08b4

View File

@@ -49,7 +49,7 @@ type CompletionResponse struct {
Object string `json:"object"`
Created uint64 `json:"created"`
Model string `json:"model"`
Сhoices []Choice `json:"choices"`
Choices []Choice `json:"choices"`
}
// CreateCompletion — API call to create a completion. This is the main endpoint of the API. Returns new text as well as, if requested, the probabilities over each alternative token at each position.