push of current changes
This commit is contained in:
13
function.go
Normal file
13
function.go
Normal file
@@ -0,0 +1,13 @@
|
||||
package go_llm
|
||||
|
||||
type Function struct {
|
||||
Name string `json:"name"`
|
||||
Description string `json:"description,omitempty"`
|
||||
Strict bool `json:"strict,omitempty"`
|
||||
Parameters any `json:"parameters"`
|
||||
}
|
||||
|
||||
type FunctionCall struct {
|
||||
Name string `json:"name,omitempty"`
|
||||
Arguments any `json:"arguments,omitempty"`
|
||||
}
|
Reference in New Issue
Block a user