-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add chatcompletion stream delta refusal and logprobs #882
add chatcompletion stream delta refusal and logprobs #882
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #882 +/- ##
==========================================
+ Coverage 98.46% 98.85% +0.39%
==========================================
Files 24 26 +2
Lines 1364 1749 +385
==========================================
+ Hits 1343 1729 +386
+ Misses 15 14 -1
Partials 6 6 ☔ View full report in Codecov by Sentry. |
chat_stream.go
Outdated
ContentFilterResults ContentFilterResults `json:"content_filter_results,omitempty"` | ||
Index int `json:"index"` | ||
Delta ChatCompletionStreamChoiceDelta `json:"delta"` | ||
Logprobs ChatCompletionStreamChoiceLogprobs `json:"logprobs,omitempty"` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, one more quirk here: it's an object or null
, so this should be a pointer probably
Logprobs ChatCompletionStreamChoiceLogprobs `json:"logprobs,omitempty"` | |
Logprobs *ChatCompletionStreamChoiceLogprobs `json:"logprobs,omitempty"` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, I modified it here. @sashabaranov
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!
Describe the change
Like #844, In ChatCompletionStream.delta the refusal and logprobs field is missing
Provide OpenAI documentation link
Provide a relevant API doc from https://platform.openai.com/docs/api-reference
Describe your solution
Add Refusal and Logprobs Fields
Tests
n/a
Additional context
n/a