Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 54 additions & 0 deletions schemas/manifest.schema.1.0.0.json
Original file line number Diff line number Diff line change
Expand Up @@ -422,6 +422,57 @@
}
}
},
"app-manifests.v1.features.agent_view": {

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

note: added after the assistant_view property. These properties don't appear to be alphabetically ordered.

"type": "object",
"description": "Settings related to agent view for apps using agent features.",
"additionalProperties": false,
"properties": {
"agent_description": {
"type": "string",
"maxLength": 300,
"description": "A description specific to the agent, used to communicate to end users what agent functionality the app provides."
},
"suggested_prompts": {
"type": "array",
"maxItems": 4,
"description": "An array of pre-written prompts designed to guide users when interacting with the agent.",
"items": {
"type": "object",
"additionalProperties": false,
"required": ["title", "message"],
"properties": {
"title": {
"type": "string",
"description": "The prompt title."
},
"message": {
"type": "string",
"description": "The prompt content."
}
}
}
},
"actions": {
"type": "array",
"description": "Quick actions surfaced in the agent UI.",
"items": {
"type": "object",
"additionalProperties": false,
"required": ["name", "description"],
"properties": {
"name": {
"type": "string",
"description": "The action name."
},
"description": {
"type": "string",
"description": "A short description of what the action does."
}
}
}
}
}
},
"app-manifests.v1.features.schema": {
"type": "object",
"description": "Key app features driving interactivity and functionality.",
Expand Down Expand Up @@ -450,6 +501,9 @@
},
"assistant_view": {
"$ref": "#/definitions/app-manifests.v1.features.assistant_view"
},
"agent_view": {
"$ref": "#/definitions/app-manifests.v1.features.agent_view"
Comment on lines +504 to +506

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

note: Added after the assistant_view because these properties don't appear to be organized alphabetically.

}
}
},
Expand Down
54 changes: 54 additions & 0 deletions schemas/manifest.schema.2.0.0.json
Original file line number Diff line number Diff line change
Expand Up @@ -444,6 +444,57 @@
}
}
},
"app-manifests.v1.features.agent_view": {
"type": "object",
"description": "Settings related to agent view for apps using agent features.",
"additionalProperties": false,
"properties": {
"agent_description": {
"type": "string",
"maxLength": 300,
"description": "A description specific to the agent, used to communicate to end users what agent functionality the app provides."
},
"suggested_prompts": {
"type": "array",
"maxItems": 4,
"description": "An array of pre-written prompts designed to guide users when interacting with the agent.",
"items": {
"type": "object",
"additionalProperties": false,
"required": ["title", "message"],
"properties": {
"title": {
"type": "string",
"description": "The prompt title."
},
"message": {
"type": "string",
"description": "The prompt content."
}
}
}
},
"actions": {
"type": "array",
"description": "Quick actions surfaced in the agent UI.",
"items": {
"type": "object",
"additionalProperties": false,
"required": ["name", "description"],
"properties": {
"name": {
"type": "string",
"description": "The action name."
},
"description": {
"type": "string",
"description": "A short description of what the action does."
}
}
}
}
}
},
"app-manifests.v1.features.schema": {
"type": "object",
"properties": {
Expand All @@ -470,6 +521,9 @@
},
"assistant_view": {
"$ref": "#/definitions/app-manifests.v1.features.assistant_view"
},
"agent_view": {
"$ref": "#/definitions/app-manifests.v1.features.agent_view"
}
},
"description": "A group of settings corresponding to the Features section of the app config pages.",
Expand Down