forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAgentConfigAgent.cs
More file actions
150 lines (131 loc) · 6.38 KB
/
Copy pathAgentConfigAgent.cs
File metadata and controls
150 lines (131 loc) · 6.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
using System.Diagnostics.CodeAnalysis;
using System.Runtime.CompilerServices;
using System.Text.Json;
using Microsoft.Agents.AI;
using Microsoft.Extensions.AI;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Logging.Abstractions;
// AgentConfigAgent — the /agent-config demo.
//
// Reads three forwarded properties — tone, expertise, responseLength — from
// the AG-UI shared-state payload (attached as `ag_ui_state` on
// ChatClientAgentRunOptions.AdditionalProperties, matching the convention
// already used by SharedStateAgent) and builds a dynamic system prompt per
// turn.
//
// The frontend <CopilotKitProvider agent="agent-config-demo" />'s
// useAgent().setState(...) call pushes the typed config into shared state;
// this agent reads it on every run and prepends a system message that adapts
// the inner ChatClientAgent's behavior. Missing / unrecognized values fall
// back to the documented defaults — the agent never throws on malformed
// config, so a misbehaving frontend can't kill the demo.
[SuppressMessage("Performance", "CA1812:Avoid uninstantiated internal classes", Justification = "Instantiated by SalesAgentFactory")]
internal sealed class AgentConfigAgent : DelegatingAIAgent
{
private static readonly HashSet<string> ValidTones = new(StringComparer.Ordinal)
{
"professional",
"casual",
"enthusiastic",
};
private static readonly HashSet<string> ValidExpertise = new(StringComparer.Ordinal)
{
"beginner",
"intermediate",
"expert",
};
private static readonly HashSet<string> ValidResponseLengths = new(StringComparer.Ordinal)
{
"concise",
"detailed",
};
private const string DefaultTone = "professional";
private const string DefaultExpertise = "intermediate";
private const string DefaultResponseLength = "concise";
private readonly ILogger<AgentConfigAgent> _logger;
public AgentConfigAgent(AIAgent innerAgent, ILogger<AgentConfigAgent>? logger = null)
: base(innerAgent)
{
ArgumentNullException.ThrowIfNull(innerAgent);
_logger = logger ?? NullLogger<AgentConfigAgent>.Instance;
}
public override Task<AgentRunResponse> RunAsync(IEnumerable<ChatMessage> messages, AgentThread? thread = null, AgentRunOptions? options = null, CancellationToken cancellationToken = default)
{
return RunStreamingAsync(messages, thread, options, cancellationToken).ToAgentRunResponseAsync(cancellationToken);
}
public override async IAsyncEnumerable<AgentRunResponseUpdate> RunStreamingAsync(
IEnumerable<ChatMessage> messages,
AgentThread? thread = null,
AgentRunOptions? options = null,
[EnumeratorCancellation] CancellationToken cancellationToken = default)
{
ArgumentNullException.ThrowIfNull(messages);
// Materialize up-front so we can both inspect it (to read the state)
// and forward it to the inner agent without re-enumerating a
// single-use iterator.
var messageList = messages as IReadOnlyList<ChatMessage> ?? messages.ToList();
var (tone, expertise, responseLength) = ReadConfig(options);
var systemPrompt = BuildSystemPrompt(tone, expertise, responseLength);
_logger.LogInformation(
"AgentConfigAgent: tone={Tone}, expertise={Expertise}, responseLength={ResponseLength}",
tone, expertise, responseLength);
var systemMessage = new ChatMessage(ChatRole.System, systemPrompt);
var augmentedMessages = new List<ChatMessage>(messageList.Count + 1) { systemMessage };
augmentedMessages.AddRange(messageList);
await foreach (var update in InnerAgent.RunStreamingAsync(augmentedMessages, thread, options, cancellationToken).ConfigureAwait(false))
{
yield return update;
}
}
/// <summary>
/// Reads the forwarded config triple from the AG-UI shared-state payload
/// attached to the run options. Any missing / unrecognized value falls
/// back to the corresponding default constant. Never throws.
/// </summary>
internal static (string Tone, string Expertise, string ResponseLength) ReadConfig(AgentRunOptions? options)
{
if (options is not ChatClientAgentRunOptions { ChatOptions.AdditionalProperties: { } properties } ||
!properties.TryGetValue("ag_ui_state", out JsonElement state) ||
state.ValueKind != JsonValueKind.Object)
{
return (DefaultTone, DefaultExpertise, DefaultResponseLength);
}
var tone = ReadStringProperty(state, "tone", ValidTones, DefaultTone);
var expertise = ReadStringProperty(state, "expertise", ValidExpertise, DefaultExpertise);
var responseLength = ReadStringProperty(state, "responseLength", ValidResponseLengths, DefaultResponseLength);
return (tone, expertise, responseLength);
}
private static string ReadStringProperty(JsonElement state, string name, HashSet<string> valid, string defaultValue)
{
if (!state.TryGetProperty(name, out var element) || element.ValueKind != JsonValueKind.String)
{
return defaultValue;
}
var value = element.GetString();
return value is not null && valid.Contains(value) ? value : defaultValue;
}
internal static string BuildSystemPrompt(string tone, string expertise, string responseLength)
{
var toneRule = tone switch
{
"casual" => "Use friendly, conversational language. Contractions OK. Light humor welcome.",
"enthusiastic" => "Use upbeat, energetic language. Exclamation points OK. Emoji OK.",
_ => "Use neutral, precise language. No emoji. Short sentences.",
};
var expertiseRule = expertise switch
{
"beginner" => "Assume no prior knowledge. Define jargon. Use analogies.",
"expert" => "Assume technical fluency. Use precise terminology. Skip basics.",
_ => "Assume common terms are understood; explain specialized terms.",
};
var lengthRule = responseLength switch
{
"detailed" => "Respond in multiple paragraphs with examples where relevant.",
_ => "Respond in 1-3 sentences.",
};
return "You are a helpful assistant.\n\n" +
$"Tone: {toneRule}\n" +
$"Expertise level: {expertiseRule}\n" +
$"Response length: {lengthRule}";
}
}