-
Notifications
You must be signed in to change notification settings - Fork 546
Suggested actions proposed updates #14329
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
Closed
Closed
Changes from 2 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
7166ac4
Prompt-suggestions.md updates
nickwalkmsft ac46680
suggested-actions.md updates
nickwalkmsft af24d4f
Update prompt-suggestions.md
SharanGarcha-MSFT bd5f200
Update prompt-suggestions.md
SharanGarcha-MSFT 8f62099
Update prompt-suggestions.md
SharanGarcha-MSFT 1798646
Merge branch 'main' into nickwalkmsft-patch-1
nickwalkmsft 28b6f93
WIP
nickwalkmsft 8d17d75
Merge branch 'main' into nickwalkmsft-patch-1
nickwalkmsft dfe62ed
Fix tabs, delete old include
nickwalkmsft 92bf5cf
WIP
nickwalkmsft 8d1d82d
WIP
nickwalkmsft 0fdc540
Acrolinx
nickwalkmsft File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,7 +5,7 @@ description: Learn how to create and handle a prompt starter and suggested actio | |
| ms.topic: how-to | ||
| ms.localizationpriority: medium | ||
| ms.author: vikasalmal | ||
| ms.date: 4/7/2026 | ||
| ms.date: 05/17/2026 | ||
| --- | ||
|
|
||
| # Create prompt suggestions | ||
|
|
@@ -52,19 +52,13 @@ Prompt starters are supported in one-on-one chats, group chats, and channels. To | |
| * The `type` field indicates whether the bot command is basic or prompt. Set `type` to **prompt** and provide the text in the prompt field. When selected, the prompt text appears in the compose box instead of the title or description. | ||
| * The `prompt` field specifies the text that appears in the compose box for a prompt command. It supports up to 4,000 characters. | ||
|
|
||
| >[!NOTE] | ||
| > | ||
| >If you're building an agent, you must set `type` to **prompt** and provide a valid prompt value. If the `prompt` field is empty, the app manifest fails validation during submission. | ||
|
|
||
| ## Define `commands` in app manifest | ||
| ### Define `commands` in app manifest | ||
|
|
||
| To create a prompt starter, add it directly in the app manifest file while developing your bot source code. To use this method, follow these points: | ||
|
|
||
| * The `command` property supports up to 10 commands. | ||
| * You can either create prompt starters that work in all scopes or create different prompt starters for each scope. | ||
|
|
||
| #### Manifest example for prompt starters | ||
|
|
||
| The manifest example code for prompt starters is as follows: | ||
|
|
||
| ```json | ||
|
|
@@ -118,7 +112,7 @@ The manifest example code for prompt starters is as follows: | |
| > [!NOTE] | ||
| > If you remove any commands from your manifest, you must redeploy your app to implement the changes. In general, any changes to the manifest require you to redeploy your app. | ||
|
|
||
| The following image illustrates an example of prompt suggestions: | ||
| The following image illustrates an example of prompt starters: | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Move the images up close to the top of the section.
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. done |
||
|
|
||
| # [Desktop](#tab/desktop) | ||
|
|
||
|
|
@@ -130,7 +124,7 @@ The following image illustrates an example of prompt suggestions: | |
|
|
||
| --- | ||
|
|
||
| Prompt starters reappear in the **View Prompts** flyout above the compose box during a conversation. They enable users to review the prompts while interacting with your bot. | ||
| After the user begins a conversation, the prompt starters will disappear from the conversation pane but remain available in the **View Prompts** flyout above the compose box, enabling users to review the prompts while interacting with your bot. | ||
|
|
||
| # [Personal chat](#tab/pc) | ||
|
nickwalkmsft marked this conversation as resolved.
Outdated
|
||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Use required or similar above, not in a separate note block here. Are these fields not all required?
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.
Made changes