feat: added function call info to chat completions (#390)

This commit is contained in:
cem-unuvar
2023-06-20 19:33:53 +04:00
committed by GitHub
parent 68f9ef92be
commit 720377087f
+3 -2
View File
@@ -8,8 +8,9 @@ import (
)
type ChatCompletionStreamChoiceDelta struct {
Content string `json:"content,omitempty"`
Role string `json:"role,omitempty"`
Content string `json:"content,omitempty"`
Role string `json:"role,omitempty"`
FunctionCall *FunctionCall `json:"function_call,omitempty"`
}
type ChatCompletionStreamChoice struct {