Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type ResultMeta ¶
type ToolFunction ¶ added in v0.0.3
func (ToolFunction) String ¶ added in v0.0.3
func (t ToolFunction) String() string
type ToolKit ¶
type ToolKit struct {
// contains filtered or unexported fields
}
ToolKit represents a toolkit of tools
type ToolMeta ¶
type ToolMeta struct {
Name string `json:"name"`
Description string `json:"description"`
// Variation on how schema is output
Parameters *ToolParameters `json:"parameters,omitempty"`
InputSchema *ToolParameters `json:"input_schema,omitempty"`
}
type ToolParameter ¶
type ToolParameters ¶
type ToolParameters struct {
Type string `json:"type,omitempty"`
Required []string `json:"required"`
Properties map[string]ToolParameter `json:"properties"`
}
Click to show internal directories.
Click to hide internal directories.