Service | Microsoft Docs article | Related commit history on GitHub | Change details |
---|---|---|---|
platform | How Conversation Ai Get Started | https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/bots/how-to/Teams conversational AI/how-conversation-ai-get-started.md | Prompt template is a simple and powerful way to define and compose AI functions The language supports features that allow you to include variables, call external functions, and pass parameters to functions. You don't need to write any code or import any external libraries, just use the curly braces {{...}} to embed expressions in your prompts. Teams parses your template and execute the logic behind it. This way, you can easily integrate AI into your apps with minimal effort and maximum flexibility. -* {{function}}: Calls a registered function and inserts its value.ΓÇï +* ``{{function}}``: Calls a registered function and inserts its return value string.ΓÇï -* {{$input}}: Inserts the message text. It gets it's value from state.temp.input. +* ``{{$input}}``: Inserts the message text. It gets it's value from state.temp.input. -* {{$history}}: Inserts the conversation history.ΓÇï It gets it's value from state.temp.history +* ``{{$history}}``: Inserts the conversation history.ΓÇï It gets it's value from state.temp.history -* {{$state.< property >}}: Inserts state properties. +* ``{{$state.[property]}}``: Inserts state properties. ## Actions |
platform | Extend M365 Teams Message Extension | https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/m365-apps/extend-m365-teams-message-extension.md | As you test your message extension, you can identify the source (originating fro ||--|--| | NPM Search Connector | Use Teams Toolkit to build a message extension app. Works in Teams, Outlook. | [View](https://github.com/OfficeDev/TeamsFx-Samples/tree/v2.1.0/NPM-search-connector-M365) | | Teams Link Unfurling | Simple Teams app to demonstrate link unfurling. Works in Teams, Outlook. | [View](https://github.com/OfficeDev/Microsoft-Teams-Samples/tree/main/samples/msgext-link-unfurling/nodejs)-| Tab in stage view | Microsoft Teams tab sample app for demonstrating a tab in stage view. Works in Teams, Outlook, Microsoft 365 app. | [View](https://github.com/OfficeDev/Microsoft-Teams-Samples/tree/main/samples/msgext-link-unfurling/nodejs) +| Tab in stage view | Microsoft Teams tab sample app for demonstrating a tab in stage view. Works in Teams, Outlook, Microsoft 365 app. | [View](https://github.com/OfficeDev/Microsoft-Teams-Samples/tree/main/samples/tab-stage-view/nodejs) ## Next step |