-
Notifications
You must be signed in to change notification settings - Fork 50
Description
// UpdateBotsReq represents the request structure for updating a bot
type UpdateBotsReq struct {
BotID string json:"bot_id"
// Bot ID
Name string json:"name"
// Name
Description string json:"description"
// Description
IconFileID string json:"icon_file_id"
// Icon file ID
PromptInfo *BotPromptInfo json:"prompt_info"
// Prompt information
OnboardingInfo *BotOnboardingInfo json:"onboarding_info"
// Onboarding information
Knowledge *BotKnowledge json:"knowledge"
// Knowledge
ModelInfoConfig *BotModelInfoConfig json:"model_info_config"
// ModelInfoConfig information
WorkflowIDList *WorkflowIDList json:"workflow_id_list"
// WorkflowIDList information
}
少了和官网的 plugin_id_list