We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dda8110 + be6852a commit 0d02289Copy full SHA for 0d02289
types.go
@@ -2,8 +2,6 @@ package openairt
2
3
import (
4
"encoding/json"
5
-
6
- "github.com/sashabaranov/go-openai/jsonschema"
7
)
8
9
type Voice string
@@ -127,10 +125,10 @@ type InputAudioTranscription struct {
127
125
}
128
126
129
type Tool struct {
130
- Type ToolType `json:"type"`
131
- Name string `json:"name"`
132
- Description string `json:"description"`
133
- Parameters jsonschema.Definition `json:"parameters"`
+ Type ToolType `json:"type"`
+ Name string `json:"name"`
+ Description string `json:"description"`
+ Parameters any `json:"parameters"`
134
135
136
type MessageItemType string
0 commit comments