Alex Baranov
Alex Baranov
Looks like it is better to migrate to IBM's library https://github.com/IBM-Swift/Swift-JWT
Got the same error and I think it is similar to #70 So there is a IAPResponseForIOS6 which should handle that. The problem is that Apple's verification server suddenly started...
The Verify method takes `interface{}` as response type, so I guess it is possible to try iOS7 style receipt and than re-try with iOS 6 one.
@sichvoge +1, I also need this
The best I came up with: ```yaml types: Value: properties: name: TypeA value: TypeB Type3: type: Value[] ```
Thank you for the issue! So, with `omitempty` we have: * "Empty" (zero-valued) arguments are removed * OpenAI's backend uses its default for omitted arguments * Zeroing floats requires something...
Looking at `CompletionRequest` in [completion.go](https://github.com/sashabaranov/go-gpt3/blob/master/completion.go) it seems that OpenAPI's default parameter values do not match Go's zero-values: ```go type CompletionRequest struct { Prompt string `json:"prompt,omitempty"` MaxTokens int `json:"max_tokens,omitempty"` // OpenAPI...
It seems that playground's default parameters match API ones, except for `max_tokens`. Which parameters did you tune in order to get proper result?
@ealvar3z `embeddings_utils.py` is mainly focused on plotting, which is out of scope for this library as well as many other ML-specific use cases. However, having cosine similarity (= dot product)...
Related: https://github.com/openai/tiktoken