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

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions samples/dotnet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
|Streaming Agent |Streams OpenAI responses|[azure-ai-streaming](azure-ai-streaming/README.md)|
|Copilot Studio Client|Console app to consume a Copilot Studio Agent|[copilotstudio-client](copilotstudio-client/README.md)|
|Copilot Studio Skill |Call the echo bot from a Copilot Studio skill |[copilotstudio-skill](copilotstudio-skill/README.md)|
|RetrievalAgent Sample with Semantic Kernel|A simple Retrieval Agent that is hosted on an Asp.net core web service. |[RetrievalAgent](retrieval-agent/README.md)|
|MultiAgent|Demonstrates multiple AgentApplication in the same host|[MultiAgent](multiagent/README.md)|
|GenesysHandoff|Demonstrates how a Microsoft Copilot Studio Agent (bot) can seamlessly **hand off a conversation to a live agent** in **Genesys Cloud**.|[GenesysHandoff](genesys-handoff/README.md)|
|Proactive|Demonstrates the basics of a proactive conversation using in-code and Http triggers.|[Proactive](proactive/README.md)|
|OpenTelemetry Agent|Configures OTel tracing, metrics, and logging with OTLP export|[otel](otel/README.md)|
|Agent Framework|Weather agent built with Microsoft Agent Framework SDK|[Agent Framework](Agent%20Framework/README.md)|
|Copilot SDK|Dungeon Scribe RPG agent powered by the GitHub Copilot SDK|[copilot-sdk](copilot-sdk/README.md)|
|Named Pipe Agent|Pipe-only echo agent for the DirectLine App Service extension (DirectLineFlex)|[named-pipe-agent](named-pipe-agent/README.md)|
|Entra Agent ID Sidecar|Simple agent using the Microsoft Entra Agent ID sidecar for Agents SDK authentication|[entra-agent-id-sidecar](entra-agent-id-sidecar/README.md)|
|Entra Agent ID Sidecar|Simple agent using the Microsoft Entra Agent ID sidecar for Agents SDK authentication|[entra-agent-id-sidecar](entra-agent-id-sidecar/README.md)|
|Build Genie Retrieval Agent|Retrieves SharePoint content with the signed-in user's delegated permissions. |[Build Genie Retrieval Agent](retrieval-agent/README.md)|
114 changes: 0 additions & 114 deletions samples/dotnet/retrieval-agent/Agents/RetrievalCompletionAgent.cs

This file was deleted.

This file was deleted.

33 changes: 16 additions & 17 deletions samples/dotnet/retrieval-agent/AppManifest/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,38 +2,38 @@
"$schema": "https://developer.microsoft.com/en-us/json-schemas/teams/vdevPreview/MicrosoftTeams.schema.json",
"manifestVersion": "devPreview",
"version": "1.0.0",
"id": "fe9b0fcb-7525-4c2f-92a6-28da2efbb894",
"packageName": "com.microsoft.agents.oauth",
"id": "{{AppId}}",
"packageName": "com.microsoft.agents.buildgenie",
"developer": {
"name": "Microsoft, Inc.",
"websiteUrl": "https://example.azurewebsites.net",
"privacyUrl": "https://example.azurewebsites.net/privacy",
"termsOfUseUrl": "https://example.azurewebsites.net/termsofuse"
"name": "Microsoft",
"websiteUrl": "https://learn.microsoft.com/microsoft-365/agents-sdk/",
"privacyUrl": "https://privacy.microsoft.com/privacystatement",
"termsOfUseUrl": "https://www.microsoft.com/servicesagreement"
},
"icons": {
"color": "color.png",
"outline": "outline.png"
},
"name": {
"short": "FHL App",
"full": "FHL App"
"short": "Build Genie",
"full": "Build Genie Retrieval Agent"
},
"description": {
"short": "Sample demonstrating Azure Bot Services user authentication with using a Agent.",
"full": "This sample demonstrates how to integrate Azure AD authentication in an Agent with Single Sign-On (SSO) capabilities built with the Agents Framework"
"short": "Find Build session information from SharePoint.",
"full": "This sample uses the signed-in user's delegated permissions to retrieve Build session information from a configured SharePoint site."
},
"accentColor": "#FFFFFF",
"copilotAgents": {
"customEngineAgents": [
{
"id": "fe9b0fcb-7525-4c2f-92a6-28da2efbb894",
"id": "{{AppId}}",
"type": "bot"
}
]
},
"bots": [
{
"botId": "fe9b0fcb-7525-4c2f-92a6-28da2efbb894",
"botId": "{{AppId}}",
"scopes": [
"personal"
],
Expand All @@ -42,14 +42,13 @@
}
],
"permissions": [
"identity",
"messageTeamMembers"
"identity"
],
"validDomains": [
"token.botframework.com"
],
"webApplicationInfo": {
"id": "fe9b0fcb-7525-4c2f-92a6-28da2efbb894",
"resource": "api://botid-fe9b0fcb-7525-4c2f-92a6-28da2efbb894"
"id": "{{AppId}}",
"resource": "api://botid-{{AppId}}"
}
}
}
32 changes: 0 additions & 32 deletions samples/dotnet/retrieval-agent/Plugins/AdaptiveCardPlugin.cs

This file was deleted.

58 changes: 0 additions & 58 deletions samples/dotnet/retrieval-agent/Plugins/BuildRetrievalPlugin.cs

This file was deleted.

70 changes: 0 additions & 70 deletions samples/dotnet/retrieval-agent/Plugins/DateTimePlugin.cs

This file was deleted.

Loading