-
Notifications
You must be signed in to change notification settings - Fork 532
Update prompt-suggestions.md #13363
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Update prompt-suggestions.md #13363
Changes from 1 commit
622e07c
57381ee
fb40dee
619ca6a
e1766ad
52055eb
2c4c486
3d603e0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -37,7 +37,7 @@ Suggested actions help users continue conversations with your bot. | |||||
|
||||||
:::column-end::: | ||||||
|
||||||
:::row-end::: | ||||||
:::row-end::: | ||||||
|
||||||
## Prompt starters | ||||||
|
||||||
|
@@ -47,7 +47,16 @@ Suggested actions help users continue conversations with your bot. | |||||
> | ||||||
> * Prompt starters are only supported for one-on-one chat bots. | ||||||
|
||||||
To enable prompt starters, define the `commands` property in your bot's app manifest. Each command contains a `title` and `description`. The `title` is the prompt and the `description` describes what the users accomplish. When the user selects on a prompt starter, the `title` of the prompt is populated in the compose box. To define `commands` in your app manifest, you can either use **Developer Portal** or add them manually in the app manifest. | ||||||
To enable prompt starters, define the `commands` property in your bot's app manifest. Each command now contains four fields, a `title`, `description`, `type` and `prompt`. The `title` field is the text shown in the prompt starter and the `description` describes what the users accomplish. The `type` field indicates whether the bot command is a basic command or a prompt. The `prompt` field defines the text to populate in the compose box, when the command is a prompt type. | ||||||
When the user selects on a prompt starter, the `title` of the prompt is populated in the compose box. To define `commands` in your app manifest, you can either use **Developer Portal** or add them manually in the app manifest. | ||||||
The `type ` field determines how the command behaves. | ||||||
|
The `type ` field determines how the command behaves. | |
The `type` field determines how the command behaves. |
Copilot uses AI. Check for mistakes.
Outdated
Copilot
AI
Sep 19, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing comma after the description field. JSON syntax requires commas between object properties.
"description":"Displays this help message" | |
"description":"Displays this help message", |
Copilot uses AI. Check for mistakes.
Uh oh!
There was an error while loading. Please reload this page.