You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Generates an image using AI based on a prompt. Be specific in the prompt about physical characteristics and settings as names of people may not be known.",
26005
+
"description": "Generates or modifies an image using AI based on a prompt. Be specific in the prompt about physical characteristics and settings as names of people may not be known.",
26005
26006
"args": {
26006
26007
"prompt": "<prompt to generate image with>",
26007
26008
"aspect": {
26008
26009
type: "string",
26009
26010
description: "<aspect ratio - must be \"landscape\", \"portrait\" or \"square\">"
26010
26011
},
26011
-
"use_another_image_as_source": {
26012
-
description: "<if the user wished to generate a new image based on one they provide, set this to true>",
26012
+
"modify_existing_image": {
26013
+
description: "<set this to true to modify an existing image with the prompt>",
26013
26014
type: "boolean"
26014
26015
}
26015
26016
},
@@ -26018,7 +26019,7 @@ else
26018
26019
let prompt = action?.args?.prompt
26019
26020
let aspect = action?.args?.aspect
26020
26021
if (!!prompt) {
26021
-
if (!!action?.args?.use_another_image_as_source)
26022
+
if (!!action?.args?.modify_existing_image)
26022
26023
{
26023
26024
waitingFori2iSelection = true
26024
26025
addThought(createSysPrompt, `Please click an image as a source for img2img generation`, true)
@@ -26135,8 +26136,12 @@ else
26135
26136
return [
26136
26137
{
26137
26138
"name": "plan_actions",
26138
-
"description": "Defines a list of actions to respond to a user instruction",
26139
+
"description": "Defines a list of actions to respond to a user instruction.",
26139
26140
"args": {
26141
+
"responsePlanOverview": {
26142
+
type: "string",
26143
+
description: "<short overview of what the user asked for, planned actions and why the order makes sense - this must be specific to the last user instruction>"
26144
+
},
26140
26145
"orderOfActions": {
26141
26146
type: "array",
26142
26147
description: "<array of actions needed to complete the instruction and their objectives>",
0 commit comments