mirror of
https://github.com/langgenius/dify-plugin-daemon.git
synced 2026-07-22 09:45:27 -04:00
12 lines
394 B
Go
12 lines
394 B
Go
package requests
|
|
|
|
type InvokeAgentStrategySchema struct {
|
|
AgentStrategyProvider string `json:"agent_strategy_provider" validate:"required"`
|
|
AgentStrategy string `json:"agent_strategy" validate:"required"`
|
|
AgentStrategyParams map[string]any `json:"agent_strategy_params" validate:"omitempty"`
|
|
}
|
|
|
|
type RequestInvokeAgentStrategy struct {
|
|
InvokeAgentStrategySchema
|
|
}
|