microsoft/teams.net

Public

mirrored fromhttps://github.com/microsoft/teams.netAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
feature/pabot-httpcontext-botid

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

core/samples/A2ABot/A2A/Config.cs

13lines · modecode

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4namespace 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.
8record Config(
9 string Name,
10 string SelfUrl,
11 string Description,
12 string PeerUrl,
13 string PeerName);
14