You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
Added
Add the ability to stream Chat responses from the API! Thanks to everyone who requested this and made suggestions.
Added instructions for streaming to the README.
Changed
Switch HTTP library from HTTParty to Faraday to allow streaming and future feature and performance improvements.
[BREAKING] Endpoints now return JSON rather than HTTParty objects. You will need to update your code to handle this change, changing JSON.parse(response.body)["key"] and response.parsed_response["key"] to just response["key"].