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

This commit is contained in:
cem-unuvar
2023-06-20 18:33:53 +03:00
committed by GitHub
parent 68f9ef92be
commit 720377087f

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 {