├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── activity-protocol-spec-change-request.md │ ├── bug_report.md │ └── feature-request-for-agent-sdk.md ├── labeler.yml ├── scripts │ └── updatenode.sh └── workflows │ ├── cd-samples.yml │ └── pullrequestlabeler.yml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── AgentErrorCodes.md ├── AgentErrorCodesJS.md ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── LICENSE ├── MCSandAgentsEcosystemLinks.md ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── eslint.config.js ├── experimental ├── README.md ├── agent-provision │ ├── add-oauth.ps1 │ ├── create-azurebot.ps1 │ ├── func-create-fic.ps1 │ ├── func-create-msi.ps1 │ └── func-create-secret.ps1 └── bicep-scripts │ ├── README.md │ ├── bicep │ ├── bicepconfig.json │ ├── bot.bicep │ ├── oauth_app.bicep │ └── simple_app.bicep │ ├── bot │ ├── color.png │ ├── manifest.json │ └── outline.png │ ├── decompose.ps1 │ ├── gen_teams_manifest.ps1 │ └── samples │ ├── README.md │ ├── auto-signin │ ├── README.md │ ├── oauth.bicep │ ├── prov_app.ps1 │ ├── prov_bot.ps1 │ └── provision.ps1 │ ├── obo-authorization │ ├── README.md │ ├── oauth.bicep │ ├── prov_app.ps1 │ ├── prov_bot.ps1 │ ├── prov_oauth_app.ps1 │ └── provision.ps1 │ └── quickstart │ ├── README.md │ └── provision.ps1 ├── package.json ├── samples ├── README.md ├── dotnet │ ├── .gitignore │ ├── Agent Framework │ │ ├── .gitignore │ │ ├── Agent │ │ │ └── WeatherAgent.cs │ │ ├── AgentFrameworkWeather.csproj │ │ ├── AspNetExtensions.cs │ │ ├── Program.cs │ │ ├── README.md │ │ ├── Tools │ │ │ ├── DateTimeFunctionTool.cs │ │ │ └── WeatherLookupTool.cs │ │ ├── appPackage │ │ │ ├── color.png │ │ │ ├── manifest.json │ │ │ └── outline.png │ │ ├── appsettings.Playground.json │ │ └── appsettings.json │ ├── GenesysHandoff │ │ ├── AspNetExtensions.cs │ │ ├── Genesys │ │ │ ├── GenesysConnectionSetting.cs │ │ │ ├── GenesysOutboundPayload.cs │ │ │ ├── GenesysService.cs │ │ │ └── IGenesysConnectionSettings.cs │ │ ├── GenesysHandoff.csproj │ │ ├── GenesysHandoffAgent.cs │ │ ├── Images │ │ │ ├── CompleteEscalationTopic.png │ │ │ ├── ContentModerationImage.png │ │ │ ├── CustomizeResponseImage.png │ │ │ ├── GenesysPlatformConfig.png │ │ │ ├── MessageRouting.png │ │ │ ├── MessagingFlow.png │ │ │ └── OpenMessagingImage.png │ │ ├── Program.cs │ │ ├── README.md │ │ ├── appManifest │ │ │ ├── color.png │ │ │ ├── manifest.json │ │ │ └── outline.png │ │ └── appsettings.json │ ├── README.md │ ├── RetrievalBot │ │ ├── Agents │ │ │ ├── RetrievalAgent.cs │ │ │ └── RetrievalAgentResponse.cs │ │ ├── AppManifest │ │ │ ├── color.png │ │ │ ├── manifest.json │ │ │ └── outline.png │ │ ├── AspNetExtensions.cs │ │ ├── Controllers │ │ │ └── BotController.cs │ │ ├── Plugins │ │ │ ├── AdaptiveCardPlugin.cs │ │ │ ├── BuildRetrievalPlugin.cs │ │ │ ├── DateTimePlugin.cs │ │ │ └── StaticTokenProvider.cs │ │ ├── Program.cs │ │ ├── README.md │ │ ├── RetrievalBot.cs │ │ ├── RetrievalBot.csproj │ │ ├── RetrievalBot.sln │ │ ├── SharePoint Documents │ │ │ └── Contoso Sessions at Microsoft Build Conference 2025.docx │ │ ├── appsettings.json │ │ └── dotnet │ │ │ ├── .gitignore │ │ │ ├── Microsoft.Agents.M365Copilot.sln │ │ │ ├── README.md │ │ │ ├── src │ │ │ └── Microsoft.Agents.M365Copilot.Beta │ │ │ │ ├── Generated │ │ │ │ ├── BaseM365CopilotClient.cs │ │ │ │ ├── Copilot │ │ │ │ │ ├── Admin │ │ │ │ │ │ ├── AdminRequestBuilder.cs │ │ │ │ │ │ └── Settings │ │ │ │ │ │ │ ├── LimitedMode │ │ │ │ │ │ │ └── LimitedModeRequestBuilder.cs │ │ │ │ │ │ │ └── SettingsRequestBuilder.cs │ │ │ │ │ ├── CopilotRequestBuilder.cs │ │ │ │ │ ├── InteractionHistory │ │ │ │ │ │ ├── GetAllEnterpriseInteractions │ │ │ │ │ │ │ ├── GetAllEnterpriseInteractionsGetResponse.cs │ │ │ │ │ │ │ ├── GetAllEnterpriseInteractionsRequestBuilder.cs │ │ │ │ │ │ │ └── GetAllEnterpriseInteractionsResponse.cs │ │ │ │ │ │ ├── InteractionHistoryRequestBuilder.cs │ │ │ │ │ │ └── Interactions │ │ │ │ │ │ │ ├── Count │ │ │ │ │ │ │ └── CountRequestBuilder.cs │ │ │ │ │ │ │ ├── InteractionsRequestBuilder.cs │ │ │ │ │ │ │ └── Item │ │ │ │ │ │ │ └── AiInteractionItemRequestBuilder.cs │ │ │ │ │ ├── Retrieval │ │ │ │ │ │ ├── RetrievalPostRequestBody.cs │ │ │ │ │ │ └── RetrievalRequestBuilder.cs │ │ │ │ │ └── Users │ │ │ │ │ │ ├── Count │ │ │ │ │ │ └── CountRequestBuilder.cs │ │ │ │ │ │ ├── Item │ │ │ │ │ │ ├── AiUserItemRequestBuilder.cs │ │ │ │ │ │ └── InteractionHistory │ │ │ │ │ │ │ ├── GetAllEnterpriseInteractions │ │ │ │ │ │ │ ├── GetAllEnterpriseInteractionsGetResponse.cs │ │ │ │ │ │ │ ├── GetAllEnterpriseInteractionsRequestBuilder.cs │ │ │ │ │ │ │ └── GetAllEnterpriseInteractionsResponse.cs │ │ │ │ │ │ │ ├── InteractionHistoryRequestBuilder.cs │ │ │ │ │ │ │ └── Interactions │ │ │ │ │ │ │ ├── Count │ │ │ │ │ │ │ └── CountRequestBuilder.cs │ │ │ │ │ │ │ ├── InteractionsRequestBuilder.cs │ │ │ │ │ │ │ └── Item │ │ │ │ │ │ │ └── AiInteractionItemRequestBuilder.cs │ │ │ │ │ │ └── UsersRequestBuilder.cs │ │ │ │ ├── Models │ │ │ │ │ ├── AccessScope.cs │ │ │ │ │ ├── AiInteraction.cs │ │ │ │ │ ├── AiInteractionAttachment.cs │ │ │ │ │ ├── AiInteractionCollectionResponse.cs │ │ │ │ │ ├── AiInteractionContext.cs │ │ │ │ │ ├── AiInteractionHistory.cs │ │ │ │ │ ├── AiInteractionLink.cs │ │ │ │ │ ├── AiInteractionMention.cs │ │ │ │ │ ├── AiInteractionMentionedIdentitySet.cs │ │ │ │ │ ├── AiInteractionType.cs │ │ │ │ │ ├── AiUser.cs │ │ │ │ │ ├── AiUserCollectionResponse.cs │ │ │ │ │ ├── ApprovalIdentitySet.cs │ │ │ │ │ ├── AuditUserIdentity.cs │ │ │ │ │ ├── AzureCommunicationServicesUserIdentity.cs │ │ │ │ │ ├── BaseCollectionPaginationCountResponse.cs │ │ │ │ │ ├── BodyType.cs │ │ │ │ │ ├── CallRecords │ │ │ │ │ │ └── UserIdentity.cs │ │ │ │ │ ├── ChatMessageFromIdentitySet.cs │ │ │ │ │ ├── ChatMessageMentionedIdentitySet.cs │ │ │ │ │ ├── ChatMessageReactionIdentitySet.cs │ │ │ │ │ ├── CommunicationsApplicationIdentity.cs │ │ │ │ │ ├── CommunicationsApplicationInstanceIdentity.cs │ │ │ │ │ ├── CommunicationsEncryptedIdentity.cs │ │ │ │ │ ├── CommunicationsGuestIdentity.cs │ │ │ │ │ ├── CommunicationsIdentitySet.cs │ │ │ │ │ ├── CommunicationsPhoneIdentity.cs │ │ │ │ │ ├── CommunicationsUserIdentity.cs │ │ │ │ │ ├── CopilotAdmin.cs │ │ │ │ │ ├── CopilotAdminLimitedMode.cs │ │ │ │ │ ├── CopilotAdminSetting.cs │ │ │ │ │ ├── DetailsInfo.cs │ │ │ │ │ ├── Dictionaries.cs │ │ │ │ │ ├── EmailIdentity.cs │ │ │ │ │ ├── EndpointType.cs │ │ │ │ │ ├── EngagementIdentitySet.cs │ │ │ │ │ ├── Entity.cs │ │ │ │ │ ├── GroundingEntityType.cs │ │ │ │ │ ├── Identity.cs │ │ │ │ │ ├── IdentitySet.cs │ │ │ │ │ ├── Initiator.cs │ │ │ │ │ ├── InitiatorType.cs │ │ │ │ │ ├── ItemBody.cs │ │ │ │ │ ├── KeyValuePair.cs │ │ │ │ │ ├── MessageUserRole.cs │ │ │ │ │ ├── ODataErrors │ │ │ │ │ │ ├── ErrorDetails.cs │ │ │ │ │ │ ├── InnerError.cs │ │ │ │ │ │ ├── MainError.cs │ │ │ │ │ │ └── ODataError.cs │ │ │ │ │ ├── ProgramResource.cs │ │ │ │ │ ├── ProvisionedIdentity.cs │ │ │ │ │ ├── ProvisioningServicePrincipal.cs │ │ │ │ │ ├── ProvisioningSystem.cs │ │ │ │ │ ├── RetrievalExtract.cs │ │ │ │ │ ├── RetrievalHit.cs │ │ │ │ │ ├── RetrievalResponse.cs │ │ │ │ │ ├── SearchResourceMetadataDictionary.cs │ │ │ │ │ ├── SearchSensitivityLabelInfo.cs │ │ │ │ │ ├── Security │ │ │ │ │ │ └── SubmissionUserIdentity.cs │ │ │ │ │ ├── ServicePrincipalIdentity.cs │ │ │ │ │ ├── SharePointIdentity.cs │ │ │ │ │ ├── SharePointIdentitySet.cs │ │ │ │ │ ├── SourceProvisionedIdentity.cs │ │ │ │ │ ├── TargetProvisionedIdentity.cs │ │ │ │ │ ├── TeamworkApplicationIdentity.cs │ │ │ │ │ ├── TeamworkApplicationIdentityType.cs │ │ │ │ │ ├── TeamworkConversationIdentity.cs │ │ │ │ │ ├── TeamworkConversationIdentityType.cs │ │ │ │ │ ├── TeamworkTagIdentity.cs │ │ │ │ │ ├── TeamworkUserIdentity.cs │ │ │ │ │ ├── TeamworkUserIdentityType.cs │ │ │ │ │ ├── UserIdentity.cs │ │ │ │ │ └── UserInformation.cs │ │ │ │ ├── kiota-dom-export.txt │ │ │ │ └── kiota-lock.json │ │ │ │ └── Microsoft.Agents.M365Copilot.Beta.csproj │ │ │ └── tests │ │ │ └── Microsoft.Agents.M365Copilot.Beta.Tests │ │ │ └── Microsoft.Agents.M365Copilot.Beta.Tests.csproj │ ├── Samples.sln │ ├── auto-signin │ │ ├── AspNetExtensions.cs │ │ ├── AuthAgent.cs │ │ ├── AutoSignIn.csproj │ │ ├── Program.cs │ │ ├── README.md │ │ ├── appManifest │ │ │ ├── color.png │ │ │ ├── manifest.json │ │ │ └── outline.png │ │ └── appsettings.json │ ├── azure-ai-streaming │ │ ├── AspNetExtensions.cs │ │ ├── Program.cs │ │ ├── README.md │ │ ├── StreamingAgent.cs │ │ ├── StreamingMessageAgent.csproj │ │ ├── appManifest │ │ │ ├── color.png │ │ │ ├── manifest.json │ │ │ └── outline.png │ │ └── appsettings.json │ ├── copilotstudio-client │ │ ├── AddTokenHandler.cs │ │ ├── AddTokenHandlerS2S.cs │ │ ├── ChatConsoleService.cs │ │ ├── CopilotStudioClient.csproj │ │ ├── Program.cs │ │ ├── README.md │ │ ├── SampleConnectionSettings.cs │ │ ├── TimeSpanExtensions.cs │ │ └── appsettings.json │ ├── copilotstudio-skill │ │ ├── AspNetExtensions.cs │ │ ├── CopilotStudioEchoSkill.csproj │ │ ├── EchoSkill.cs │ │ ├── Program.cs │ │ ├── README.md │ │ ├── appsettings.json │ │ └── wwwroot │ │ │ ├── default.htm │ │ │ └── manifest │ │ │ └── echoskill-manifest-1.0.json │ ├── obo-authorization │ │ ├── AspNetExtensions.cs │ │ ├── OBOAuthorization.csproj │ │ ├── Program.cs │ │ ├── README.md │ │ ├── appManifest │ │ │ ├── color.png │ │ │ ├── manifest.json │ │ │ └── outline.png │ │ └── appsettings.json │ ├── quickstart │ │ ├── AspNetExtensions.cs │ │ ├── MyAgent.cs │ │ ├── Program.cs │ │ ├── QuickStart.csproj │ │ ├── README.md │ │ ├── appManifest │ │ │ ├── color.png │ │ │ ├── manifest.json │ │ │ └── outline.png │ │ └── appsettings.json │ └── semantic-kernel-multiturn │ │ ├── Agents │ │ ├── WeatherForecastAgent.cs │ │ └── WeatherForecastAgentResponse.cs │ │ ├── AspNetExtensions.cs │ │ ├── MyAgent.cs │ │ ├── Plugins │ │ ├── AdaptiveCardPlugin.cs │ │ ├── DateTimePlugin.cs │ │ ├── WeatherForecast.cs │ │ └── WeatherForecastPlugin.cs │ │ ├── Program.cs │ │ ├── README.md │ │ ├── SemanticKernelMultiturn.csproj │ │ ├── appManifest │ │ ├── color.png │ │ ├── manifest.json │ │ └── outline.png │ │ └── appsettings.json ├── nodejs │ ├── README.md │ ├── auto-signin │ │ ├── README.md │ │ ├── env.TEMPLATE │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── pullRequestCard.json │ │ │ ├── userGraphClient.ts │ │ │ └── userProfileCard.json │ │ └── tsconfig.json │ ├── azure-ai-streaming │ │ ├── README.md │ │ ├── env.TEMPLATE │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ └── tsconfig.json │ ├── cards │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── README.md │ │ ├── env.TEMPLATE │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── cardMessages.ts │ │ │ ├── index.ts │ │ │ └── resources │ │ │ │ └── adaptiveCard.json │ │ └── tsconfig.json │ ├── copilotstudio-client │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── README.md │ │ ├── env.TEMPLATE │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── msalCachePlugin.ts │ │ └── tsconfig.json │ ├── copilotstudio-skill │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── README.md │ │ ├── env.TEMPLATE │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ ├── icon.png │ │ │ ├── manifest.json │ │ │ ├── manifest.template.json │ │ │ └── privacy.html │ │ ├── src │ │ │ └── agent.ts │ │ └── tsconfig.json │ ├── copilotstudio-webchat-react │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ ├── index.css │ │ │ └── index.html │ │ ├── src │ │ │ ├── Chat.tsx │ │ │ ├── acquireToken.ts │ │ │ ├── index.tsx │ │ │ └── settings.EXAMPLE.js │ │ └── tsconfig.json │ ├── copilotstudio-webclient │ │ ├── README.md │ │ └── web │ │ │ ├── .gitignore │ │ │ ├── acquireToken.js │ │ │ ├── index.css │ │ │ ├── index.html │ │ │ ├── index.js │ │ │ └── settings.TEMPLATE.js │ ├── langchain-multiturn │ │ ├── README.md │ │ ├── env.TEMPLATE │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── myAgent.ts │ │ │ └── tools │ │ │ │ ├── dateTimeTool.ts │ │ │ │ └── getWeatherTool.ts │ │ └── tsconfig.json │ ├── multi-turn-prompt │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── env.TEMPLATE │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── dialogAgent.ts │ │ │ ├── index.ts │ │ │ ├── userProfile.ts │ │ │ └── userProfileDialog.ts │ │ └── tsconfig.json │ ├── obo-authorization │ │ ├── README.md │ │ ├── env.TEMPLATE │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ └── tsconfig.json │ └── quickstart │ │ ├── README.md │ │ ├── env.TEMPLATE │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ └── index.ts │ │ └── tsconfig.json └── python │ ├── README.md │ ├── auto-signin │ ├── README.md │ ├── env.TEMPLATE │ ├── requirements.txt │ └── src │ │ ├── agent.py │ │ ├── cards.py │ │ ├── github_api_client.py │ │ ├── main.py │ │ ├── start_server.py │ │ └── user_graph_client.py │ ├── azureai-streaming │ ├── README.md │ ├── env.TEMPLATE │ ├── requirements.txt │ └── src │ │ ├── agent.py │ │ ├── main.py │ │ └── start_server.py │ ├── cards │ ├── README.md │ ├── env.TEMPLATE │ ├── requirements.txt │ └── src │ │ ├── agent.py │ │ ├── card_messages.py │ │ ├── main.py │ │ ├── resources │ │ └── adaptive_card.json │ │ └── start_server.py │ ├── copilotstudio-client │ ├── README.md │ ├── env.TEMPLATE │ ├── requirements.txt │ └── src │ │ ├── local_token_cache.py │ │ └── main.py │ ├── copilotstudio-skill │ ├── README.md │ ├── env.TEMPLATE │ ├── public │ │ ├── icon.png │ │ ├── manifest.template.json │ │ └── privacy.html │ ├── requirements.txt │ └── src │ │ ├── agent.py │ │ └── main.py │ ├── obo-authorization │ ├── README.md │ ├── env.TEMPLATE │ ├── requirements.txt │ └── src │ │ ├── agent.py │ │ ├── main.py │ │ └── start_server.py │ ├── quickstart │ ├── README.md │ ├── env.TEMPLATE │ ├── requirements.txt │ └── src │ │ ├── agent.py │ │ ├── main.py │ │ └── start_server.py │ └── semantic-kernel-multiturn │ ├── README.md │ ├── env.TEMPLATE │ ├── requirements.txt │ └── src │ ├── __init__.py │ ├── agent.py │ ├── app.py │ ├── main.py │ ├── plugins │ ├── __init__.py │ ├── adaptive_card_plugin.py │ ├── date_time_plugin.py │ ├── weather_forecast.py │ └── weather_forecast_plugin.py │ └── start_server.py └── specs ├── activity ├── protocol-activity.md └── protocol-cards.md ├── channel-api ├── ChannelAPI-OpenAPI.yaml └── TokenAPI-OpenAPI.yaml ├── manifest ├── bot-manifest.md ├── example.man ├── manifest.json └── schemas │ ├── SchemaManifestTests │ ├── SchemaManifestTests.csproj │ ├── SchemaManifestTests.sln │ └── ValidateSchemaTests.cs │ ├── readme.md │ ├── skill-manifest-2.0.0.json │ ├── skill-manifest-2.1.preview-1.json │ ├── v2.0 │ ├── samples │ │ ├── complex-skillmanifest.json │ │ ├── echo-skillmanifest.json │ │ └── simple-skillmanifest.json │ └── skill-manifest.json │ ├── v2.1.preview-1 │ ├── samples │ │ ├── complex-skillmanifest.json │ │ ├── echo-skillmanifest.json │ │ └── simple-skillmanifest.json │ └── skill-manifest.json │ ├── v2.1 │ ├── samples │ │ ├── complex-pva-manifest.json │ │ ├── complex-skillmanifest.json │ │ ├── echo-skillmanifest.json │ │ └── simple-skillmanifest.json │ └── skill-manifest.json │ └── v2.2 │ ├── samples │ ├── complex-pva-manifest.json │ ├── complex-skillmanifest.json │ ├── echo-skillmanifest.json │ ├── relativeUris │ │ ├── complex-skillmanifest.json │ │ ├── knowledge-base │ │ │ ├── SkillBot-QnA-en.qna │ │ │ ├── SkillBot-QnA-es-ES.qna │ │ │ └── SkillBot-QnA-es-MX.qna │ │ ├── language-understanding │ │ │ ├── SkillBot-en.lu │ │ │ ├── SkillBot-es-ES.lu │ │ │ └── SkillBot-es-MX.lu │ │ ├── privacy.html │ │ └── skillIcon.png │ └── simple-skillmanifest.json │ └── skill-manifest.json └── transcript └── transcript.md /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/activity-protocol-spec-change-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/.github/ISSUE_TEMPLATE/activity-protocol-spec-change-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request-for-agent-sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/.github/ISSUE_TEMPLATE/feature-request-for-agent-sdk.md -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/scripts/updatenode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/.github/scripts/updatenode.sh -------------------------------------------------------------------------------- /.github/workflows/cd-samples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/.github/workflows/cd-samples.yml -------------------------------------------------------------------------------- /.github/workflows/pullrequestlabeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/.github/workflows/pullrequestlabeler.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /AgentErrorCodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/AgentErrorCodes.md -------------------------------------------------------------------------------- /AgentErrorCodesJS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/AgentErrorCodesJS.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/LICENSE -------------------------------------------------------------------------------- /MCSandAgentsEcosystemLinks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/MCSandAgentsEcosystemLinks.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/eslint.config.js -------------------------------------------------------------------------------- /experimental/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/experimental/README.md -------------------------------------------------------------------------------- /experimental/agent-provision/add-oauth.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/experimental/agent-provision/add-oauth.ps1 -------------------------------------------------------------------------------- /experimental/agent-provision/create-azurebot.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/experimental/agent-provision/create-azurebot.ps1 -------------------------------------------------------------------------------- /experimental/agent-provision/func-create-fic.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/experimental/agent-provision/func-create-fic.ps1 -------------------------------------------------------------------------------- /experimental/agent-provision/func-create-msi.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/experimental/agent-provision/func-create-msi.ps1 -------------------------------------------------------------------------------- /experimental/agent-provision/func-create-secret.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/experimental/agent-provision/func-create-secret.ps1 -------------------------------------------------------------------------------- /experimental/bicep-scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/experimental/bicep-scripts/README.md -------------------------------------------------------------------------------- /experimental/bicep-scripts/bicep/bicepconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/experimental/bicep-scripts/bicep/bicepconfig.json -------------------------------------------------------------------------------- /experimental/bicep-scripts/bicep/bot.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/experimental/bicep-scripts/bicep/bot.bicep -------------------------------------------------------------------------------- /experimental/bicep-scripts/bicep/oauth_app.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/experimental/bicep-scripts/bicep/oauth_app.bicep -------------------------------------------------------------------------------- /experimental/bicep-scripts/bicep/simple_app.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/experimental/bicep-scripts/bicep/simple_app.bicep -------------------------------------------------------------------------------- /experimental/bicep-scripts/bot/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/experimental/bicep-scripts/bot/color.png -------------------------------------------------------------------------------- /experimental/bicep-scripts/bot/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/experimental/bicep-scripts/bot/manifest.json -------------------------------------------------------------------------------- /experimental/bicep-scripts/bot/outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/experimental/bicep-scripts/bot/outline.png -------------------------------------------------------------------------------- /experimental/bicep-scripts/decompose.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/experimental/bicep-scripts/decompose.ps1 -------------------------------------------------------------------------------- /experimental/bicep-scripts/gen_teams_manifest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/experimental/bicep-scripts/gen_teams_manifest.ps1 -------------------------------------------------------------------------------- /experimental/bicep-scripts/samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/experimental/bicep-scripts/samples/README.md -------------------------------------------------------------------------------- /experimental/bicep-scripts/samples/auto-signin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/experimental/bicep-scripts/samples/auto-signin/README.md -------------------------------------------------------------------------------- /experimental/bicep-scripts/samples/auto-signin/oauth.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/experimental/bicep-scripts/samples/auto-signin/oauth.bicep -------------------------------------------------------------------------------- /experimental/bicep-scripts/samples/auto-signin/prov_app.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/experimental/bicep-scripts/samples/auto-signin/prov_app.ps1 -------------------------------------------------------------------------------- /experimental/bicep-scripts/samples/auto-signin/prov_bot.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/experimental/bicep-scripts/samples/auto-signin/prov_bot.ps1 -------------------------------------------------------------------------------- /experimental/bicep-scripts/samples/auto-signin/provision.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/experimental/bicep-scripts/samples/auto-signin/provision.ps1 -------------------------------------------------------------------------------- /experimental/bicep-scripts/samples/obo-authorization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/experimental/bicep-scripts/samples/obo-authorization/README.md -------------------------------------------------------------------------------- /experimental/bicep-scripts/samples/obo-authorization/oauth.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/experimental/bicep-scripts/samples/obo-authorization/oauth.bicep -------------------------------------------------------------------------------- /experimental/bicep-scripts/samples/obo-authorization/prov_app.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/experimental/bicep-scripts/samples/obo-authorization/prov_app.ps1 -------------------------------------------------------------------------------- /experimental/bicep-scripts/samples/obo-authorization/prov_bot.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/experimental/bicep-scripts/samples/obo-authorization/prov_bot.ps1 -------------------------------------------------------------------------------- /experimental/bicep-scripts/samples/obo-authorization/prov_oauth_app.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/experimental/bicep-scripts/samples/obo-authorization/prov_oauth_app.ps1 -------------------------------------------------------------------------------- /experimental/bicep-scripts/samples/obo-authorization/provision.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/experimental/bicep-scripts/samples/obo-authorization/provision.ps1 -------------------------------------------------------------------------------- /experimental/bicep-scripts/samples/quickstart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/experimental/bicep-scripts/samples/quickstart/README.md -------------------------------------------------------------------------------- /experimental/bicep-scripts/samples/quickstart/provision.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/experimental/bicep-scripts/samples/quickstart/provision.ps1 -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/package.json -------------------------------------------------------------------------------- /samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/README.md -------------------------------------------------------------------------------- /samples/dotnet/.gitignore: -------------------------------------------------------------------------------- 1 | launchSettings.json -------------------------------------------------------------------------------- /samples/dotnet/Agent Framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/Agent Framework/.gitignore -------------------------------------------------------------------------------- /samples/dotnet/Agent Framework/Agent/WeatherAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/Agent Framework/Agent/WeatherAgent.cs -------------------------------------------------------------------------------- /samples/dotnet/Agent Framework/AgentFrameworkWeather.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/Agent Framework/AgentFrameworkWeather.csproj -------------------------------------------------------------------------------- /samples/dotnet/Agent Framework/AspNetExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/Agent Framework/AspNetExtensions.cs -------------------------------------------------------------------------------- /samples/dotnet/Agent Framework/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/Agent Framework/Program.cs -------------------------------------------------------------------------------- /samples/dotnet/Agent Framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/Agent Framework/README.md -------------------------------------------------------------------------------- /samples/dotnet/Agent Framework/Tools/DateTimeFunctionTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/Agent Framework/Tools/DateTimeFunctionTool.cs -------------------------------------------------------------------------------- /samples/dotnet/Agent Framework/Tools/WeatherLookupTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/Agent Framework/Tools/WeatherLookupTool.cs -------------------------------------------------------------------------------- /samples/dotnet/Agent Framework/appPackage/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/Agent Framework/appPackage/color.png -------------------------------------------------------------------------------- /samples/dotnet/Agent Framework/appPackage/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/Agent Framework/appPackage/manifest.json -------------------------------------------------------------------------------- /samples/dotnet/Agent Framework/appPackage/outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/Agent Framework/appPackage/outline.png -------------------------------------------------------------------------------- /samples/dotnet/Agent Framework/appsettings.Playground.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/Agent Framework/appsettings.Playground.json -------------------------------------------------------------------------------- /samples/dotnet/Agent Framework/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/Agent Framework/appsettings.json -------------------------------------------------------------------------------- /samples/dotnet/GenesysHandoff/AspNetExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/GenesysHandoff/AspNetExtensions.cs -------------------------------------------------------------------------------- /samples/dotnet/GenesysHandoff/Genesys/GenesysConnectionSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/GenesysHandoff/Genesys/GenesysConnectionSetting.cs -------------------------------------------------------------------------------- /samples/dotnet/GenesysHandoff/Genesys/GenesysOutboundPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/GenesysHandoff/Genesys/GenesysOutboundPayload.cs -------------------------------------------------------------------------------- /samples/dotnet/GenesysHandoff/Genesys/GenesysService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/GenesysHandoff/Genesys/GenesysService.cs -------------------------------------------------------------------------------- /samples/dotnet/GenesysHandoff/Genesys/IGenesysConnectionSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/GenesysHandoff/Genesys/IGenesysConnectionSettings.cs -------------------------------------------------------------------------------- /samples/dotnet/GenesysHandoff/GenesysHandoff.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/GenesysHandoff/GenesysHandoff.csproj -------------------------------------------------------------------------------- /samples/dotnet/GenesysHandoff/GenesysHandoffAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/GenesysHandoff/GenesysHandoffAgent.cs -------------------------------------------------------------------------------- /samples/dotnet/GenesysHandoff/Images/CompleteEscalationTopic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/GenesysHandoff/Images/CompleteEscalationTopic.png -------------------------------------------------------------------------------- /samples/dotnet/GenesysHandoff/Images/ContentModerationImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/GenesysHandoff/Images/ContentModerationImage.png -------------------------------------------------------------------------------- /samples/dotnet/GenesysHandoff/Images/CustomizeResponseImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/GenesysHandoff/Images/CustomizeResponseImage.png -------------------------------------------------------------------------------- /samples/dotnet/GenesysHandoff/Images/GenesysPlatformConfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/GenesysHandoff/Images/GenesysPlatformConfig.png -------------------------------------------------------------------------------- /samples/dotnet/GenesysHandoff/Images/MessageRouting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/GenesysHandoff/Images/MessageRouting.png -------------------------------------------------------------------------------- /samples/dotnet/GenesysHandoff/Images/MessagingFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/GenesysHandoff/Images/MessagingFlow.png -------------------------------------------------------------------------------- /samples/dotnet/GenesysHandoff/Images/OpenMessagingImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/GenesysHandoff/Images/OpenMessagingImage.png -------------------------------------------------------------------------------- /samples/dotnet/GenesysHandoff/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/GenesysHandoff/Program.cs -------------------------------------------------------------------------------- /samples/dotnet/GenesysHandoff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/GenesysHandoff/README.md -------------------------------------------------------------------------------- /samples/dotnet/GenesysHandoff/appManifest/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/GenesysHandoff/appManifest/color.png -------------------------------------------------------------------------------- /samples/dotnet/GenesysHandoff/appManifest/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/GenesysHandoff/appManifest/manifest.json -------------------------------------------------------------------------------- /samples/dotnet/GenesysHandoff/appManifest/outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/GenesysHandoff/appManifest/outline.png -------------------------------------------------------------------------------- /samples/dotnet/GenesysHandoff/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/GenesysHandoff/appsettings.json -------------------------------------------------------------------------------- /samples/dotnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/README.md -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/Agents/RetrievalAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/Agents/RetrievalAgent.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/Agents/RetrievalAgentResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/Agents/RetrievalAgentResponse.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/AppManifest/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/AppManifest/color.png -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/AppManifest/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/AppManifest/manifest.json -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/AppManifest/outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/AppManifest/outline.png -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/AspNetExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/AspNetExtensions.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/Controllers/BotController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/Controllers/BotController.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/Plugins/AdaptiveCardPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/Plugins/AdaptiveCardPlugin.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/Plugins/BuildRetrievalPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/Plugins/BuildRetrievalPlugin.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/Plugins/DateTimePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/Plugins/DateTimePlugin.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/Plugins/StaticTokenProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/Plugins/StaticTokenProvider.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/Program.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/README.md -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/RetrievalBot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/RetrievalBot.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/RetrievalBot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/RetrievalBot.csproj -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/RetrievalBot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/RetrievalBot.sln -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/SharePoint Documents/Contoso Sessions at Microsoft Build Conference 2025.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/SharePoint Documents/Contoso Sessions at Microsoft Build Conference 2025.docx -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/appsettings.json -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/.gitignore -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/Microsoft.Agents.M365Copilot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/Microsoft.Agents.M365Copilot.sln -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/README.md: -------------------------------------------------------------------------------- 1 | # Dotnet SDK 2 | -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/BaseM365CopilotClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/BaseM365CopilotClient.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/Admin/AdminRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/Admin/AdminRequestBuilder.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/Admin/Settings/LimitedMode/LimitedModeRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/Admin/Settings/LimitedMode/LimitedModeRequestBuilder.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/Admin/Settings/SettingsRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/Admin/Settings/SettingsRequestBuilder.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/CopilotRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/CopilotRequestBuilder.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/InteractionHistory/GetAllEnterpriseInteractions/GetAllEnterpriseInteractionsGetResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/InteractionHistory/GetAllEnterpriseInteractions/GetAllEnterpriseInteractionsGetResponse.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/InteractionHistory/GetAllEnterpriseInteractions/GetAllEnterpriseInteractionsRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/InteractionHistory/GetAllEnterpriseInteractions/GetAllEnterpriseInteractionsRequestBuilder.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/InteractionHistory/GetAllEnterpriseInteractions/GetAllEnterpriseInteractionsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/InteractionHistory/GetAllEnterpriseInteractions/GetAllEnterpriseInteractionsResponse.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/InteractionHistory/InteractionHistoryRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/InteractionHistory/InteractionHistoryRequestBuilder.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/InteractionHistory/Interactions/Count/CountRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/InteractionHistory/Interactions/Count/CountRequestBuilder.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/InteractionHistory/Interactions/InteractionsRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/InteractionHistory/Interactions/InteractionsRequestBuilder.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/InteractionHistory/Interactions/Item/AiInteractionItemRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/InteractionHistory/Interactions/Item/AiInteractionItemRequestBuilder.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/Retrieval/RetrievalPostRequestBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/Retrieval/RetrievalPostRequestBody.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/Retrieval/RetrievalRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/Retrieval/RetrievalRequestBuilder.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/Users/Count/CountRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/Users/Count/CountRequestBuilder.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/Users/Item/AiUserItemRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/Users/Item/AiUserItemRequestBuilder.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/Users/Item/InteractionHistory/GetAllEnterpriseInteractions/GetAllEnterpriseInteractionsGetResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/Users/Item/InteractionHistory/GetAllEnterpriseInteractions/GetAllEnterpriseInteractionsGetResponse.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/Users/Item/InteractionHistory/GetAllEnterpriseInteractions/GetAllEnterpriseInteractionsRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/Users/Item/InteractionHistory/GetAllEnterpriseInteractions/GetAllEnterpriseInteractionsRequestBuilder.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/Users/Item/InteractionHistory/GetAllEnterpriseInteractions/GetAllEnterpriseInteractionsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/Users/Item/InteractionHistory/GetAllEnterpriseInteractions/GetAllEnterpriseInteractionsResponse.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/Users/Item/InteractionHistory/InteractionHistoryRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/Users/Item/InteractionHistory/InteractionHistoryRequestBuilder.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/Users/Item/InteractionHistory/Interactions/Count/CountRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/Users/Item/InteractionHistory/Interactions/Count/CountRequestBuilder.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/Users/Item/InteractionHistory/Interactions/InteractionsRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/Users/Item/InteractionHistory/Interactions/InteractionsRequestBuilder.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/Users/Item/InteractionHistory/Interactions/Item/AiInteractionItemRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/Users/Item/InteractionHistory/Interactions/Item/AiInteractionItemRequestBuilder.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/Users/UsersRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Copilot/Users/UsersRequestBuilder.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/AccessScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/AccessScope.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/AiInteraction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/AiInteraction.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/AiInteractionAttachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/AiInteractionAttachment.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/AiInteractionCollectionResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/AiInteractionCollectionResponse.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/AiInteractionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/AiInteractionContext.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/AiInteractionHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/AiInteractionHistory.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/AiInteractionLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/AiInteractionLink.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/AiInteractionMention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/AiInteractionMention.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/AiInteractionMentionedIdentitySet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/AiInteractionMentionedIdentitySet.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/AiInteractionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/AiInteractionType.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/AiUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/AiUser.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/AiUserCollectionResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/AiUserCollectionResponse.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/ApprovalIdentitySet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/ApprovalIdentitySet.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/AuditUserIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/AuditUserIdentity.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/AzureCommunicationServicesUserIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/AzureCommunicationServicesUserIdentity.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/BaseCollectionPaginationCountResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/BaseCollectionPaginationCountResponse.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/BodyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/BodyType.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/CallRecords/UserIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/CallRecords/UserIdentity.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/ChatMessageFromIdentitySet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/ChatMessageFromIdentitySet.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/ChatMessageMentionedIdentitySet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/ChatMessageMentionedIdentitySet.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/ChatMessageReactionIdentitySet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/ChatMessageReactionIdentitySet.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/CommunicationsApplicationIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/CommunicationsApplicationIdentity.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/CommunicationsApplicationInstanceIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/CommunicationsApplicationInstanceIdentity.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/CommunicationsEncryptedIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/CommunicationsEncryptedIdentity.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/CommunicationsGuestIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/CommunicationsGuestIdentity.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/CommunicationsIdentitySet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/CommunicationsIdentitySet.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/CommunicationsPhoneIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/CommunicationsPhoneIdentity.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/CommunicationsUserIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/CommunicationsUserIdentity.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/CopilotAdmin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/CopilotAdmin.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/CopilotAdminLimitedMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/CopilotAdminLimitedMode.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/CopilotAdminSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/CopilotAdminSetting.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/DetailsInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/DetailsInfo.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/Dictionaries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/Dictionaries.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/EmailIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/EmailIdentity.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/EndpointType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/EndpointType.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/EngagementIdentitySet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/EngagementIdentitySet.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/Entity.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/GroundingEntityType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/GroundingEntityType.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/Identity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/Identity.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/IdentitySet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/IdentitySet.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/Initiator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/Initiator.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/InitiatorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/InitiatorType.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/ItemBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/ItemBody.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/KeyValuePair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/KeyValuePair.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/MessageUserRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/MessageUserRole.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/ODataErrors/ErrorDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/ODataErrors/ErrorDetails.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/ODataErrors/InnerError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/ODataErrors/InnerError.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/ODataErrors/MainError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/ODataErrors/MainError.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/ODataErrors/ODataError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/ODataErrors/ODataError.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/ProgramResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/ProgramResource.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/ProvisionedIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/ProvisionedIdentity.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/ProvisioningServicePrincipal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/ProvisioningServicePrincipal.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/ProvisioningSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/ProvisioningSystem.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/RetrievalExtract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/RetrievalExtract.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/RetrievalHit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/RetrievalHit.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/RetrievalResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/RetrievalResponse.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/SearchResourceMetadataDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/SearchResourceMetadataDictionary.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/SearchSensitivityLabelInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/SearchSensitivityLabelInfo.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/Security/SubmissionUserIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/Security/SubmissionUserIdentity.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/ServicePrincipalIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/ServicePrincipalIdentity.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/SharePointIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/SharePointIdentity.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/SharePointIdentitySet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/SharePointIdentitySet.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/SourceProvisionedIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/SourceProvisionedIdentity.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/TargetProvisionedIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/TargetProvisionedIdentity.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/TeamworkApplicationIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/TeamworkApplicationIdentity.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/TeamworkApplicationIdentityType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/TeamworkApplicationIdentityType.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/TeamworkConversationIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/TeamworkConversationIdentity.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/TeamworkConversationIdentityType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/TeamworkConversationIdentityType.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/TeamworkTagIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/TeamworkTagIdentity.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/TeamworkUserIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/TeamworkUserIdentity.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/TeamworkUserIdentityType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/TeamworkUserIdentityType.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/UserIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/UserIdentity.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/UserInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/Models/UserInformation.cs -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/kiota-dom-export.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/kiota-dom-export.txt -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/kiota-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Generated/kiota-lock.json -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Microsoft.Agents.M365Copilot.Beta.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/src/Microsoft.Agents.M365Copilot.Beta/Microsoft.Agents.M365Copilot.Beta.csproj -------------------------------------------------------------------------------- /samples/dotnet/RetrievalBot/dotnet/tests/Microsoft.Agents.M365Copilot.Beta.Tests/Microsoft.Agents.M365Copilot.Beta.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/RetrievalBot/dotnet/tests/Microsoft.Agents.M365Copilot.Beta.Tests/Microsoft.Agents.M365Copilot.Beta.Tests.csproj -------------------------------------------------------------------------------- /samples/dotnet/Samples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/Samples.sln -------------------------------------------------------------------------------- /samples/dotnet/auto-signin/AspNetExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/auto-signin/AspNetExtensions.cs -------------------------------------------------------------------------------- /samples/dotnet/auto-signin/AuthAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/auto-signin/AuthAgent.cs -------------------------------------------------------------------------------- /samples/dotnet/auto-signin/AutoSignIn.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/auto-signin/AutoSignIn.csproj -------------------------------------------------------------------------------- /samples/dotnet/auto-signin/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/auto-signin/Program.cs -------------------------------------------------------------------------------- /samples/dotnet/auto-signin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/auto-signin/README.md -------------------------------------------------------------------------------- /samples/dotnet/auto-signin/appManifest/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/auto-signin/appManifest/color.png -------------------------------------------------------------------------------- /samples/dotnet/auto-signin/appManifest/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/auto-signin/appManifest/manifest.json -------------------------------------------------------------------------------- /samples/dotnet/auto-signin/appManifest/outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/auto-signin/appManifest/outline.png -------------------------------------------------------------------------------- /samples/dotnet/auto-signin/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/auto-signin/appsettings.json -------------------------------------------------------------------------------- /samples/dotnet/azure-ai-streaming/AspNetExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/azure-ai-streaming/AspNetExtensions.cs -------------------------------------------------------------------------------- /samples/dotnet/azure-ai-streaming/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/azure-ai-streaming/Program.cs -------------------------------------------------------------------------------- /samples/dotnet/azure-ai-streaming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/azure-ai-streaming/README.md -------------------------------------------------------------------------------- /samples/dotnet/azure-ai-streaming/StreamingAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/azure-ai-streaming/StreamingAgent.cs -------------------------------------------------------------------------------- /samples/dotnet/azure-ai-streaming/StreamingMessageAgent.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/azure-ai-streaming/StreamingMessageAgent.csproj -------------------------------------------------------------------------------- /samples/dotnet/azure-ai-streaming/appManifest/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/azure-ai-streaming/appManifest/color.png -------------------------------------------------------------------------------- /samples/dotnet/azure-ai-streaming/appManifest/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/azure-ai-streaming/appManifest/manifest.json -------------------------------------------------------------------------------- /samples/dotnet/azure-ai-streaming/appManifest/outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/azure-ai-streaming/appManifest/outline.png -------------------------------------------------------------------------------- /samples/dotnet/azure-ai-streaming/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/azure-ai-streaming/appsettings.json -------------------------------------------------------------------------------- /samples/dotnet/copilotstudio-client/AddTokenHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/copilotstudio-client/AddTokenHandler.cs -------------------------------------------------------------------------------- /samples/dotnet/copilotstudio-client/AddTokenHandlerS2S.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/copilotstudio-client/AddTokenHandlerS2S.cs -------------------------------------------------------------------------------- /samples/dotnet/copilotstudio-client/ChatConsoleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/copilotstudio-client/ChatConsoleService.cs -------------------------------------------------------------------------------- /samples/dotnet/copilotstudio-client/CopilotStudioClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/copilotstudio-client/CopilotStudioClient.csproj -------------------------------------------------------------------------------- /samples/dotnet/copilotstudio-client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/copilotstudio-client/Program.cs -------------------------------------------------------------------------------- /samples/dotnet/copilotstudio-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/copilotstudio-client/README.md -------------------------------------------------------------------------------- /samples/dotnet/copilotstudio-client/SampleConnectionSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/copilotstudio-client/SampleConnectionSettings.cs -------------------------------------------------------------------------------- /samples/dotnet/copilotstudio-client/TimeSpanExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/copilotstudio-client/TimeSpanExtensions.cs -------------------------------------------------------------------------------- /samples/dotnet/copilotstudio-client/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/copilotstudio-client/appsettings.json -------------------------------------------------------------------------------- /samples/dotnet/copilotstudio-skill/AspNetExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/copilotstudio-skill/AspNetExtensions.cs -------------------------------------------------------------------------------- /samples/dotnet/copilotstudio-skill/CopilotStudioEchoSkill.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/copilotstudio-skill/CopilotStudioEchoSkill.csproj -------------------------------------------------------------------------------- /samples/dotnet/copilotstudio-skill/EchoSkill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/copilotstudio-skill/EchoSkill.cs -------------------------------------------------------------------------------- /samples/dotnet/copilotstudio-skill/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/copilotstudio-skill/Program.cs -------------------------------------------------------------------------------- /samples/dotnet/copilotstudio-skill/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/copilotstudio-skill/README.md -------------------------------------------------------------------------------- /samples/dotnet/copilotstudio-skill/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/copilotstudio-skill/appsettings.json -------------------------------------------------------------------------------- /samples/dotnet/copilotstudio-skill/wwwroot/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/copilotstudio-skill/wwwroot/default.htm -------------------------------------------------------------------------------- /samples/dotnet/copilotstudio-skill/wwwroot/manifest/echoskill-manifest-1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/copilotstudio-skill/wwwroot/manifest/echoskill-manifest-1.0.json -------------------------------------------------------------------------------- /samples/dotnet/obo-authorization/AspNetExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/obo-authorization/AspNetExtensions.cs -------------------------------------------------------------------------------- /samples/dotnet/obo-authorization/OBOAuthorization.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/obo-authorization/OBOAuthorization.csproj -------------------------------------------------------------------------------- /samples/dotnet/obo-authorization/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/obo-authorization/Program.cs -------------------------------------------------------------------------------- /samples/dotnet/obo-authorization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/obo-authorization/README.md -------------------------------------------------------------------------------- /samples/dotnet/obo-authorization/appManifest/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/obo-authorization/appManifest/color.png -------------------------------------------------------------------------------- /samples/dotnet/obo-authorization/appManifest/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/obo-authorization/appManifest/manifest.json -------------------------------------------------------------------------------- /samples/dotnet/obo-authorization/appManifest/outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/obo-authorization/appManifest/outline.png -------------------------------------------------------------------------------- /samples/dotnet/obo-authorization/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/obo-authorization/appsettings.json -------------------------------------------------------------------------------- /samples/dotnet/quickstart/AspNetExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/quickstart/AspNetExtensions.cs -------------------------------------------------------------------------------- /samples/dotnet/quickstart/MyAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/quickstart/MyAgent.cs -------------------------------------------------------------------------------- /samples/dotnet/quickstart/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/quickstart/Program.cs -------------------------------------------------------------------------------- /samples/dotnet/quickstart/QuickStart.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/quickstart/QuickStart.csproj -------------------------------------------------------------------------------- /samples/dotnet/quickstart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/quickstart/README.md -------------------------------------------------------------------------------- /samples/dotnet/quickstart/appManifest/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/quickstart/appManifest/color.png -------------------------------------------------------------------------------- /samples/dotnet/quickstart/appManifest/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/quickstart/appManifest/manifest.json -------------------------------------------------------------------------------- /samples/dotnet/quickstart/appManifest/outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/quickstart/appManifest/outline.png -------------------------------------------------------------------------------- /samples/dotnet/quickstart/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/quickstart/appsettings.json -------------------------------------------------------------------------------- /samples/dotnet/semantic-kernel-multiturn/Agents/WeatherForecastAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/semantic-kernel-multiturn/Agents/WeatherForecastAgent.cs -------------------------------------------------------------------------------- /samples/dotnet/semantic-kernel-multiturn/Agents/WeatherForecastAgentResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/semantic-kernel-multiturn/Agents/WeatherForecastAgentResponse.cs -------------------------------------------------------------------------------- /samples/dotnet/semantic-kernel-multiturn/AspNetExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/semantic-kernel-multiturn/AspNetExtensions.cs -------------------------------------------------------------------------------- /samples/dotnet/semantic-kernel-multiturn/MyAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/semantic-kernel-multiturn/MyAgent.cs -------------------------------------------------------------------------------- /samples/dotnet/semantic-kernel-multiturn/Plugins/AdaptiveCardPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/semantic-kernel-multiturn/Plugins/AdaptiveCardPlugin.cs -------------------------------------------------------------------------------- /samples/dotnet/semantic-kernel-multiturn/Plugins/DateTimePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/semantic-kernel-multiturn/Plugins/DateTimePlugin.cs -------------------------------------------------------------------------------- /samples/dotnet/semantic-kernel-multiturn/Plugins/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/semantic-kernel-multiturn/Plugins/WeatherForecast.cs -------------------------------------------------------------------------------- /samples/dotnet/semantic-kernel-multiturn/Plugins/WeatherForecastPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/semantic-kernel-multiturn/Plugins/WeatherForecastPlugin.cs -------------------------------------------------------------------------------- /samples/dotnet/semantic-kernel-multiturn/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/semantic-kernel-multiturn/Program.cs -------------------------------------------------------------------------------- /samples/dotnet/semantic-kernel-multiturn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/semantic-kernel-multiturn/README.md -------------------------------------------------------------------------------- /samples/dotnet/semantic-kernel-multiturn/SemanticKernelMultiturn.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/semantic-kernel-multiturn/SemanticKernelMultiturn.csproj -------------------------------------------------------------------------------- /samples/dotnet/semantic-kernel-multiturn/appManifest/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/semantic-kernel-multiturn/appManifest/color.png -------------------------------------------------------------------------------- /samples/dotnet/semantic-kernel-multiturn/appManifest/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/semantic-kernel-multiturn/appManifest/manifest.json -------------------------------------------------------------------------------- /samples/dotnet/semantic-kernel-multiturn/appManifest/outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/semantic-kernel-multiturn/appManifest/outline.png -------------------------------------------------------------------------------- /samples/dotnet/semantic-kernel-multiturn/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/dotnet/semantic-kernel-multiturn/appsettings.json -------------------------------------------------------------------------------- /samples/nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/README.md -------------------------------------------------------------------------------- /samples/nodejs/auto-signin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/auto-signin/README.md -------------------------------------------------------------------------------- /samples/nodejs/auto-signin/env.TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/auto-signin/env.TEMPLATE -------------------------------------------------------------------------------- /samples/nodejs/auto-signin/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/auto-signin/package-lock.json -------------------------------------------------------------------------------- /samples/nodejs/auto-signin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/auto-signin/package.json -------------------------------------------------------------------------------- /samples/nodejs/auto-signin/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/auto-signin/src/index.ts -------------------------------------------------------------------------------- /samples/nodejs/auto-signin/src/pullRequestCard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/auto-signin/src/pullRequestCard.json -------------------------------------------------------------------------------- /samples/nodejs/auto-signin/src/userGraphClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/auto-signin/src/userGraphClient.ts -------------------------------------------------------------------------------- /samples/nodejs/auto-signin/src/userProfileCard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/auto-signin/src/userProfileCard.json -------------------------------------------------------------------------------- /samples/nodejs/auto-signin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/auto-signin/tsconfig.json -------------------------------------------------------------------------------- /samples/nodejs/azure-ai-streaming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/azure-ai-streaming/README.md -------------------------------------------------------------------------------- /samples/nodejs/azure-ai-streaming/env.TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/azure-ai-streaming/env.TEMPLATE -------------------------------------------------------------------------------- /samples/nodejs/azure-ai-streaming/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/azure-ai-streaming/package-lock.json -------------------------------------------------------------------------------- /samples/nodejs/azure-ai-streaming/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/azure-ai-streaming/package.json -------------------------------------------------------------------------------- /samples/nodejs/azure-ai-streaming/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/azure-ai-streaming/src/index.ts -------------------------------------------------------------------------------- /samples/nodejs/azure-ai-streaming/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/azure-ai-streaming/tsconfig.json -------------------------------------------------------------------------------- /samples/nodejs/cards/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/cards/.vscode/launch.json -------------------------------------------------------------------------------- /samples/nodejs/cards/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/cards/.vscode/tasks.json -------------------------------------------------------------------------------- /samples/nodejs/cards/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/cards/README.md -------------------------------------------------------------------------------- /samples/nodejs/cards/env.TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/cards/env.TEMPLATE -------------------------------------------------------------------------------- /samples/nodejs/cards/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/cards/package-lock.json -------------------------------------------------------------------------------- /samples/nodejs/cards/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/cards/package.json -------------------------------------------------------------------------------- /samples/nodejs/cards/src/cardMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/cards/src/cardMessages.ts -------------------------------------------------------------------------------- /samples/nodejs/cards/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/cards/src/index.ts -------------------------------------------------------------------------------- /samples/nodejs/cards/src/resources/adaptiveCard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/cards/src/resources/adaptiveCard.json -------------------------------------------------------------------------------- /samples/nodejs/cards/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/cards/tsconfig.json -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-client/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-client/.vscode/launch.json -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-client/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-client/.vscode/tasks.json -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-client/README.md -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-client/env.TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-client/env.TEMPLATE -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-client/package-lock.json -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-client/package.json -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-client/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-client/src/index.ts -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-client/src/msalCachePlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-client/src/msalCachePlugin.ts -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-client/tsconfig.json -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-skill/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-skill/.vscode/launch.json -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-skill/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-skill/.vscode/tasks.json -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-skill/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-skill/README.md -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-skill/env.TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-skill/env.TEMPLATE -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-skill/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-skill/package-lock.json -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-skill/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-skill/package.json -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-skill/public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-skill/public/icon.png -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-skill/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-skill/public/manifest.json -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-skill/public/manifest.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-skill/public/manifest.template.json -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-skill/public/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-skill/public/privacy.html -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-skill/src/agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-skill/src/agent.ts -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-skill/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-skill/tsconfig.json -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-webchat-react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-webchat-react/README.md -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-webchat-react/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-webchat-react/package-lock.json -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-webchat-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-webchat-react/package.json -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-webchat-react/public/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-webchat-react/public/index.css -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-webchat-react/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-webchat-react/public/index.html -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-webchat-react/src/Chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-webchat-react/src/Chat.tsx -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-webchat-react/src/acquireToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-webchat-react/src/acquireToken.ts -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-webchat-react/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-webchat-react/src/index.tsx -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-webchat-react/src/settings.EXAMPLE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-webchat-react/src/settings.EXAMPLE.js -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-webchat-react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-webchat-react/tsconfig.json -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-webclient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-webclient/README.md -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-webclient/web/.gitignore: -------------------------------------------------------------------------------- 1 | settings.js -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-webclient/web/acquireToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-webclient/web/acquireToken.js -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-webclient/web/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-webclient/web/index.css -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-webclient/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-webclient/web/index.html -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-webclient/web/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-webclient/web/index.js -------------------------------------------------------------------------------- /samples/nodejs/copilotstudio-webclient/web/settings.TEMPLATE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/copilotstudio-webclient/web/settings.TEMPLATE.js -------------------------------------------------------------------------------- /samples/nodejs/langchain-multiturn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/langchain-multiturn/README.md -------------------------------------------------------------------------------- /samples/nodejs/langchain-multiturn/env.TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/langchain-multiturn/env.TEMPLATE -------------------------------------------------------------------------------- /samples/nodejs/langchain-multiturn/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/langchain-multiturn/package-lock.json -------------------------------------------------------------------------------- /samples/nodejs/langchain-multiturn/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/langchain-multiturn/package.json -------------------------------------------------------------------------------- /samples/nodejs/langchain-multiturn/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/langchain-multiturn/src/index.ts -------------------------------------------------------------------------------- /samples/nodejs/langchain-multiturn/src/myAgent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/langchain-multiturn/src/myAgent.ts -------------------------------------------------------------------------------- /samples/nodejs/langchain-multiturn/src/tools/dateTimeTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/langchain-multiturn/src/tools/dateTimeTool.ts -------------------------------------------------------------------------------- /samples/nodejs/langchain-multiturn/src/tools/getWeatherTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/langchain-multiturn/src/tools/getWeatherTool.ts -------------------------------------------------------------------------------- /samples/nodejs/langchain-multiturn/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/langchain-multiturn/tsconfig.json -------------------------------------------------------------------------------- /samples/nodejs/multi-turn-prompt/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/multi-turn-prompt/Dockerfile -------------------------------------------------------------------------------- /samples/nodejs/multi-turn-prompt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/multi-turn-prompt/README.md -------------------------------------------------------------------------------- /samples/nodejs/multi-turn-prompt/env.TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/multi-turn-prompt/env.TEMPLATE -------------------------------------------------------------------------------- /samples/nodejs/multi-turn-prompt/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/multi-turn-prompt/package-lock.json -------------------------------------------------------------------------------- /samples/nodejs/multi-turn-prompt/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/multi-turn-prompt/package.json -------------------------------------------------------------------------------- /samples/nodejs/multi-turn-prompt/src/dialogAgent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/multi-turn-prompt/src/dialogAgent.ts -------------------------------------------------------------------------------- /samples/nodejs/multi-turn-prompt/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/multi-turn-prompt/src/index.ts -------------------------------------------------------------------------------- /samples/nodejs/multi-turn-prompt/src/userProfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/multi-turn-prompt/src/userProfile.ts -------------------------------------------------------------------------------- /samples/nodejs/multi-turn-prompt/src/userProfileDialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/multi-turn-prompt/src/userProfileDialog.ts -------------------------------------------------------------------------------- /samples/nodejs/multi-turn-prompt/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/multi-turn-prompt/tsconfig.json -------------------------------------------------------------------------------- /samples/nodejs/obo-authorization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/obo-authorization/README.md -------------------------------------------------------------------------------- /samples/nodejs/obo-authorization/env.TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/obo-authorization/env.TEMPLATE -------------------------------------------------------------------------------- /samples/nodejs/obo-authorization/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/obo-authorization/package-lock.json -------------------------------------------------------------------------------- /samples/nodejs/obo-authorization/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/obo-authorization/package.json -------------------------------------------------------------------------------- /samples/nodejs/obo-authorization/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/obo-authorization/src/index.ts -------------------------------------------------------------------------------- /samples/nodejs/obo-authorization/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/obo-authorization/tsconfig.json -------------------------------------------------------------------------------- /samples/nodejs/quickstart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/quickstart/README.md -------------------------------------------------------------------------------- /samples/nodejs/quickstart/env.TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/quickstart/env.TEMPLATE -------------------------------------------------------------------------------- /samples/nodejs/quickstart/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/quickstart/package-lock.json -------------------------------------------------------------------------------- /samples/nodejs/quickstart/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/quickstart/package.json -------------------------------------------------------------------------------- /samples/nodejs/quickstart/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/quickstart/src/index.ts -------------------------------------------------------------------------------- /samples/nodejs/quickstart/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/nodejs/quickstart/tsconfig.json -------------------------------------------------------------------------------- /samples/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/README.md -------------------------------------------------------------------------------- /samples/python/auto-signin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/auto-signin/README.md -------------------------------------------------------------------------------- /samples/python/auto-signin/env.TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/auto-signin/env.TEMPLATE -------------------------------------------------------------------------------- /samples/python/auto-signin/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/auto-signin/requirements.txt -------------------------------------------------------------------------------- /samples/python/auto-signin/src/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/auto-signin/src/agent.py -------------------------------------------------------------------------------- /samples/python/auto-signin/src/cards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/auto-signin/src/cards.py -------------------------------------------------------------------------------- /samples/python/auto-signin/src/github_api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/auto-signin/src/github_api_client.py -------------------------------------------------------------------------------- /samples/python/auto-signin/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/auto-signin/src/main.py -------------------------------------------------------------------------------- /samples/python/auto-signin/src/start_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/auto-signin/src/start_server.py -------------------------------------------------------------------------------- /samples/python/auto-signin/src/user_graph_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/auto-signin/src/user_graph_client.py -------------------------------------------------------------------------------- /samples/python/azureai-streaming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/azureai-streaming/README.md -------------------------------------------------------------------------------- /samples/python/azureai-streaming/env.TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/azureai-streaming/env.TEMPLATE -------------------------------------------------------------------------------- /samples/python/azureai-streaming/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/azureai-streaming/requirements.txt -------------------------------------------------------------------------------- /samples/python/azureai-streaming/src/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/azureai-streaming/src/agent.py -------------------------------------------------------------------------------- /samples/python/azureai-streaming/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/azureai-streaming/src/main.py -------------------------------------------------------------------------------- /samples/python/azureai-streaming/src/start_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/azureai-streaming/src/start_server.py -------------------------------------------------------------------------------- /samples/python/cards/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/cards/README.md -------------------------------------------------------------------------------- /samples/python/cards/env.TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/cards/env.TEMPLATE -------------------------------------------------------------------------------- /samples/python/cards/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/cards/requirements.txt -------------------------------------------------------------------------------- /samples/python/cards/src/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/cards/src/agent.py -------------------------------------------------------------------------------- /samples/python/cards/src/card_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/cards/src/card_messages.py -------------------------------------------------------------------------------- /samples/python/cards/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/cards/src/main.py -------------------------------------------------------------------------------- /samples/python/cards/src/resources/adaptive_card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/cards/src/resources/adaptive_card.json -------------------------------------------------------------------------------- /samples/python/cards/src/start_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/cards/src/start_server.py -------------------------------------------------------------------------------- /samples/python/copilotstudio-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/copilotstudio-client/README.md -------------------------------------------------------------------------------- /samples/python/copilotstudio-client/env.TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/copilotstudio-client/env.TEMPLATE -------------------------------------------------------------------------------- /samples/python/copilotstudio-client/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/copilotstudio-client/requirements.txt -------------------------------------------------------------------------------- /samples/python/copilotstudio-client/src/local_token_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/copilotstudio-client/src/local_token_cache.py -------------------------------------------------------------------------------- /samples/python/copilotstudio-client/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/copilotstudio-client/src/main.py -------------------------------------------------------------------------------- /samples/python/copilotstudio-skill/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/copilotstudio-skill/README.md -------------------------------------------------------------------------------- /samples/python/copilotstudio-skill/env.TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/copilotstudio-skill/env.TEMPLATE -------------------------------------------------------------------------------- /samples/python/copilotstudio-skill/public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/copilotstudio-skill/public/icon.png -------------------------------------------------------------------------------- /samples/python/copilotstudio-skill/public/manifest.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/copilotstudio-skill/public/manifest.template.json -------------------------------------------------------------------------------- /samples/python/copilotstudio-skill/public/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/copilotstudio-skill/public/privacy.html -------------------------------------------------------------------------------- /samples/python/copilotstudio-skill/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/copilotstudio-skill/requirements.txt -------------------------------------------------------------------------------- /samples/python/copilotstudio-skill/src/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/copilotstudio-skill/src/agent.py -------------------------------------------------------------------------------- /samples/python/copilotstudio-skill/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/copilotstudio-skill/src/main.py -------------------------------------------------------------------------------- /samples/python/obo-authorization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/obo-authorization/README.md -------------------------------------------------------------------------------- /samples/python/obo-authorization/env.TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/obo-authorization/env.TEMPLATE -------------------------------------------------------------------------------- /samples/python/obo-authorization/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/obo-authorization/requirements.txt -------------------------------------------------------------------------------- /samples/python/obo-authorization/src/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/obo-authorization/src/agent.py -------------------------------------------------------------------------------- /samples/python/obo-authorization/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/obo-authorization/src/main.py -------------------------------------------------------------------------------- /samples/python/obo-authorization/src/start_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/obo-authorization/src/start_server.py -------------------------------------------------------------------------------- /samples/python/quickstart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/quickstart/README.md -------------------------------------------------------------------------------- /samples/python/quickstart/env.TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/quickstart/env.TEMPLATE -------------------------------------------------------------------------------- /samples/python/quickstart/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/quickstart/requirements.txt -------------------------------------------------------------------------------- /samples/python/quickstart/src/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/quickstart/src/agent.py -------------------------------------------------------------------------------- /samples/python/quickstart/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/quickstart/src/main.py -------------------------------------------------------------------------------- /samples/python/quickstart/src/start_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/quickstart/src/start_server.py -------------------------------------------------------------------------------- /samples/python/semantic-kernel-multiturn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/semantic-kernel-multiturn/README.md -------------------------------------------------------------------------------- /samples/python/semantic-kernel-multiturn/env.TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/semantic-kernel-multiturn/env.TEMPLATE -------------------------------------------------------------------------------- /samples/python/semantic-kernel-multiturn/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/semantic-kernel-multiturn/requirements.txt -------------------------------------------------------------------------------- /samples/python/semantic-kernel-multiturn/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/python/semantic-kernel-multiturn/src/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/semantic-kernel-multiturn/src/agent.py -------------------------------------------------------------------------------- /samples/python/semantic-kernel-multiturn/src/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/semantic-kernel-multiturn/src/app.py -------------------------------------------------------------------------------- /samples/python/semantic-kernel-multiturn/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/semantic-kernel-multiturn/src/main.py -------------------------------------------------------------------------------- /samples/python/semantic-kernel-multiturn/src/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/semantic-kernel-multiturn/src/plugins/__init__.py -------------------------------------------------------------------------------- /samples/python/semantic-kernel-multiturn/src/plugins/adaptive_card_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/semantic-kernel-multiturn/src/plugins/adaptive_card_plugin.py -------------------------------------------------------------------------------- /samples/python/semantic-kernel-multiturn/src/plugins/date_time_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/semantic-kernel-multiturn/src/plugins/date_time_plugin.py -------------------------------------------------------------------------------- /samples/python/semantic-kernel-multiturn/src/plugins/weather_forecast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/semantic-kernel-multiturn/src/plugins/weather_forecast.py -------------------------------------------------------------------------------- /samples/python/semantic-kernel-multiturn/src/plugins/weather_forecast_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/semantic-kernel-multiturn/src/plugins/weather_forecast_plugin.py -------------------------------------------------------------------------------- /samples/python/semantic-kernel-multiturn/src/start_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/samples/python/semantic-kernel-multiturn/src/start_server.py -------------------------------------------------------------------------------- /specs/activity/protocol-activity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/activity/protocol-activity.md -------------------------------------------------------------------------------- /specs/activity/protocol-cards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/activity/protocol-cards.md -------------------------------------------------------------------------------- /specs/channel-api/ChannelAPI-OpenAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/channel-api/ChannelAPI-OpenAPI.yaml -------------------------------------------------------------------------------- /specs/channel-api/TokenAPI-OpenAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/channel-api/TokenAPI-OpenAPI.yaml -------------------------------------------------------------------------------- /specs/manifest/bot-manifest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/bot-manifest.md -------------------------------------------------------------------------------- /specs/manifest/example.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/example.man -------------------------------------------------------------------------------- /specs/manifest/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/manifest.json -------------------------------------------------------------------------------- /specs/manifest/schemas/SchemaManifestTests/SchemaManifestTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/schemas/SchemaManifestTests/SchemaManifestTests.csproj -------------------------------------------------------------------------------- /specs/manifest/schemas/SchemaManifestTests/SchemaManifestTests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/schemas/SchemaManifestTests/SchemaManifestTests.sln -------------------------------------------------------------------------------- /specs/manifest/schemas/SchemaManifestTests/ValidateSchemaTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/schemas/SchemaManifestTests/ValidateSchemaTests.cs -------------------------------------------------------------------------------- /specs/manifest/schemas/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/schemas/readme.md -------------------------------------------------------------------------------- /specs/manifest/schemas/skill-manifest-2.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/schemas/skill-manifest-2.0.0.json -------------------------------------------------------------------------------- /specs/manifest/schemas/skill-manifest-2.1.preview-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/schemas/skill-manifest-2.1.preview-1.json -------------------------------------------------------------------------------- /specs/manifest/schemas/v2.0/samples/complex-skillmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/schemas/v2.0/samples/complex-skillmanifest.json -------------------------------------------------------------------------------- /specs/manifest/schemas/v2.0/samples/echo-skillmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/schemas/v2.0/samples/echo-skillmanifest.json -------------------------------------------------------------------------------- /specs/manifest/schemas/v2.0/samples/simple-skillmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/schemas/v2.0/samples/simple-skillmanifest.json -------------------------------------------------------------------------------- /specs/manifest/schemas/v2.0/skill-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/schemas/v2.0/skill-manifest.json -------------------------------------------------------------------------------- /specs/manifest/schemas/v2.1.preview-1/samples/complex-skillmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/schemas/v2.1.preview-1/samples/complex-skillmanifest.json -------------------------------------------------------------------------------- /specs/manifest/schemas/v2.1.preview-1/samples/echo-skillmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/schemas/v2.1.preview-1/samples/echo-skillmanifest.json -------------------------------------------------------------------------------- /specs/manifest/schemas/v2.1.preview-1/samples/simple-skillmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/schemas/v2.1.preview-1/samples/simple-skillmanifest.json -------------------------------------------------------------------------------- /specs/manifest/schemas/v2.1.preview-1/skill-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/schemas/v2.1.preview-1/skill-manifest.json -------------------------------------------------------------------------------- /specs/manifest/schemas/v2.1/samples/complex-pva-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/schemas/v2.1/samples/complex-pva-manifest.json -------------------------------------------------------------------------------- /specs/manifest/schemas/v2.1/samples/complex-skillmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/schemas/v2.1/samples/complex-skillmanifest.json -------------------------------------------------------------------------------- /specs/manifest/schemas/v2.1/samples/echo-skillmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/schemas/v2.1/samples/echo-skillmanifest.json -------------------------------------------------------------------------------- /specs/manifest/schemas/v2.1/samples/simple-skillmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/schemas/v2.1/samples/simple-skillmanifest.json -------------------------------------------------------------------------------- /specs/manifest/schemas/v2.1/skill-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/schemas/v2.1/skill-manifest.json -------------------------------------------------------------------------------- /specs/manifest/schemas/v2.2/samples/complex-pva-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/schemas/v2.2/samples/complex-pva-manifest.json -------------------------------------------------------------------------------- /specs/manifest/schemas/v2.2/samples/complex-skillmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/schemas/v2.2/samples/complex-skillmanifest.json -------------------------------------------------------------------------------- /specs/manifest/schemas/v2.2/samples/echo-skillmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/schemas/v2.2/samples/echo-skillmanifest.json -------------------------------------------------------------------------------- /specs/manifest/schemas/v2.2/samples/relativeUris/complex-skillmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/schemas/v2.2/samples/relativeUris/complex-skillmanifest.json -------------------------------------------------------------------------------- /specs/manifest/schemas/v2.2/samples/relativeUris/knowledge-base/SkillBot-QnA-en.qna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/schemas/v2.2/samples/relativeUris/knowledge-base/SkillBot-QnA-en.qna -------------------------------------------------------------------------------- /specs/manifest/schemas/v2.2/samples/relativeUris/knowledge-base/SkillBot-QnA-es-ES.qna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/schemas/v2.2/samples/relativeUris/knowledge-base/SkillBot-QnA-es-ES.qna -------------------------------------------------------------------------------- /specs/manifest/schemas/v2.2/samples/relativeUris/knowledge-base/SkillBot-QnA-es-MX.qna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/schemas/v2.2/samples/relativeUris/knowledge-base/SkillBot-QnA-es-MX.qna -------------------------------------------------------------------------------- /specs/manifest/schemas/v2.2/samples/relativeUris/language-understanding/SkillBot-en.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/schemas/v2.2/samples/relativeUris/language-understanding/SkillBot-en.lu -------------------------------------------------------------------------------- /specs/manifest/schemas/v2.2/samples/relativeUris/language-understanding/SkillBot-es-ES.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/schemas/v2.2/samples/relativeUris/language-understanding/SkillBot-es-ES.lu -------------------------------------------------------------------------------- /specs/manifest/schemas/v2.2/samples/relativeUris/language-understanding/SkillBot-es-MX.lu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/schemas/v2.2/samples/relativeUris/language-understanding/SkillBot-es-MX.lu -------------------------------------------------------------------------------- /specs/manifest/schemas/v2.2/samples/relativeUris/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/schemas/v2.2/samples/relativeUris/privacy.html -------------------------------------------------------------------------------- /specs/manifest/schemas/v2.2/samples/relativeUris/skillIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/schemas/v2.2/samples/relativeUris/skillIcon.png -------------------------------------------------------------------------------- /specs/manifest/schemas/v2.2/samples/simple-skillmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/schemas/v2.2/samples/simple-skillmanifest.json -------------------------------------------------------------------------------- /specs/manifest/schemas/v2.2/skill-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/manifest/schemas/v2.2/skill-manifest.json -------------------------------------------------------------------------------- /specs/transcript/transcript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Agents/HEAD/specs/transcript/transcript.md --------------------------------------------------------------------------------