Danny Sievers
Results
1
comments of
Danny Sievers
This can be solved by using `errors.As()` as seen in the example README. Check out PR comments #293 for implementation details. ``` e := &openai.APIError{} if errors.As(err, &e) { switch...