microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
core/samples/A2ABot/A2A/Config.cs
13lines · modecode
| 1 | // Copyright (c) Microsoft Corporation. |
| 2 | // Licensed under the MIT License. |
| 3 | |
| 4 | namespace A2ABot.A2A; |
| 5 | |
| 6 | // Description goes into this bot's A2A AgentCard — the peer's LLM reads |
| 7 | // it to decide whether to hand off to us. |
| 8 | record Config( |
| 9 | string Name, |
| 10 | string SelfUrl, |
| 11 | string Description, |
| 12 | string PeerUrl, |
| 13 | string PeerName); |
| 14 | |