-
-
Notifications
You must be signed in to change notification settings - Fork 536
/
Copy pathAgent.cs
313 lines (260 loc) · 7.37 KB
/
Agent.cs
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
using BotSharp.Abstraction.Functions.Models;
using BotSharp.Abstraction.Plugins.Models;
using BotSharp.Abstraction.Tasks.Models;
namespace BotSharp.Abstraction.Agents.Models;
public class Agent
{
public string Id { get; set; } = string.Empty;
public string Name { get; set; } = string.Empty;
public string Description { get; set; } = string.Empty;
/// <summary>
/// Agent Type
/// </summary>
public string Type { get; set; } = AgentType.Task;
public DateTime CreatedTime { get; set; }
public DateTime UpdatedTime { get; set; }
/// <summary>
/// Default LLM settings
/// </summary>
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public AgentLlmConfig LlmConfig { get; set; } = new();
/// <summary>
/// Instruction
/// </summary>
[JsonIgnore]
public string? Instruction { get; set; }
/// <summary>
/// Channel instructions
/// </summary>
[JsonIgnore]
public List<ChannelInstruction> ChannelInstructions { get; set; } = new();
/// <summary>
/// Templates
/// </summary>
[JsonIgnore]
public List<AgentTemplate> Templates { get; set; } = new();
/// <summary>
/// Agent tasks
/// </summary>
[JsonIgnore]
public List<AgentTask> Tasks { get; set; } = new();
/// <summary>
/// Samples
/// </summary>
[JsonIgnore]
public List<string> Samples { get; set; } = new();
/// <summary>
/// Functions
/// </summary>
[JsonIgnore]
public List<FunctionDef> Functions { get; set; } = new();
/// <summary>
/// Responses
/// </summary>
[JsonIgnore]
public List<AgentResponse>? Responses { get; set; }
/// <summary>
/// Domain knowledges
/// </summary>
[JsonIgnore]
public string? Knowledges { get; set; }
public bool IsPublic { get; set; }
[JsonIgnore]
public PluginDef Plugin { get; set; }
[JsonIgnore]
public bool Installed => Plugin.Enabled;
/// <summary>
/// Default is True, user will enable this by installing appropriate plugin.
/// </summary>
public bool Disabled { get; set; } = true;
public string? IconUrl { get; set; }
/// <summary>
/// Profile by channel
/// </summary>
public List<string> Profiles { get; set; } = new();
/// <summary>
/// Agent labels
/// </summary>
public List<string> Labels { get; set; } = new();
/// <summary>
/// Merge Utility from entry agent
/// </summary>
public bool MergeUtility { get; set; }
/// <summary>
/// Agent Utility
/// </summary>
public List<AgentUtility> Utilities { get; set; } = new();
/// <summary>
/// Agent MCP Tools
/// </summary>
public List<McpTool> McpTools { get; set; } = new();
/// <summary>
/// Agent rules
/// </summary>
public List<AgentRule> Rules { get; set; } = new();
/// <summary>
/// Agent knowledge bases
/// </summary>
public List<AgentKnowledgeBase> KnowledgeBases { get; set; } = [];
/// <summary>
/// Inherit from agent
/// </summary>
public string? InheritAgentId { get; set; }
/// <summary>
/// Maximum message count when load conversation
/// </summary>
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public int? MaxMessageCount { get; set; }
public List<RoutingRule> RoutingRules { get; set; } = new();
/// <summary>
/// For rendering deferral
/// </summary>
[JsonIgnore]
public Dictionary<string, object> TemplateDict { get; set; } = new();
[JsonIgnore]
public List<FunctionDef> SecondaryFunctions { get; set; } = [];
[JsonIgnore]
public List<string> SecondaryInstructions { get; set; } = [];
public override string ToString()
=> $"{Name} {Id}";
public static Agent Clone(Agent agent)
{
return new Agent
{
Id = agent.Id,
Name = agent.Name,
Description = agent.Description,
Type = agent.Type,
Instruction = agent.Instruction,
ChannelInstructions = agent.ChannelInstructions,
Functions = agent.Functions,
Responses = agent.Responses,
Samples = agent.Samples,
Utilities = agent.Utilities,
McpTools = agent.McpTools,
Knowledges = agent.Knowledges,
IsPublic = agent.IsPublic,
Disabled = agent.Disabled,
MergeUtility = agent.MergeUtility,
MaxMessageCount = agent.MaxMessageCount,
Profiles = agent.Profiles,
Labels = agent.Labels,
RoutingRules = agent.RoutingRules,
Rules = agent.Rules,
LlmConfig = agent.LlmConfig,
KnowledgeBases = agent.KnowledgeBases,
CreatedTime = agent.CreatedTime,
UpdatedTime = agent.UpdatedTime,
};
}
public Agent SetInstruction(string instruction)
{
Instruction = instruction;
return this;
}
public Agent SetChannelInstructions(List<ChannelInstruction> instructions)
{
ChannelInstructions = instructions ?? [];
return this;
}
public Agent SetTemplates(List<AgentTemplate> templates)
{
Templates = templates ?? [];
return this;
}
public Agent SetTasks(List<AgentTask> tasks)
{
Tasks = tasks ?? [];
return this;
}
public Agent SetFunctions(List<FunctionDef> functions)
{
Functions = functions ?? [];
return this;
}
public Agent SetSamples(List<string> samples)
{
Samples = samples ?? [];
return this;
}
public Agent SetUtilities(List<AgentUtility> utilities)
{
Utilities = utilities ?? [];
return this;
}
public Agent SetKnowledgeBases(List<AgentKnowledgeBase> knowledgeBases)
{
knowledgeBases = knowledgeBases ?? [];
return this;
}
public Agent SetResponses(List<AgentResponse> responses)
{
Responses = responses ?? [];
return this;
}
public Agent SetId(string id)
{
Id = id;
return this;
}
public Agent SetName(string name)
{
Name = name;
return this;
}
public Agent SetDescription(string description)
{
Description = description;
return this;
}
public Agent SetIsPublic(bool isPublic)
{
IsPublic = isPublic;
return this;
}
public Agent SetDisabled(bool disabled)
{
Disabled = disabled;
return this;
}
public Agent SetMergeUtility(bool merge)
{
MergeUtility = merge;
return this;
}
public Agent SetAgentType(string type)
{
Type = type;
return this;
}
public Agent SetProfiles(List<string> profiles)
{
Profiles = profiles ?? [];
return this;
}
public Agent SetLabels(List<string> labels)
{
Labels = labels ?? [];
return this;
}
public Agent SetRoutingRules(List<RoutingRule> rules)
{
RoutingRules = rules ?? [];
return this;
}
public Agent SetRules(List<AgentRule> rules)
{
Rules = rules ?? [];
return this;
}
public Agent SetLlmConfig(AgentLlmConfig? llmConfig)
{
LlmConfig = llmConfig;
return this;
}
public Agent SetMcpTools(List<McpTool>? mcps)
{
McpTools = mcps ?? [];
return this;
}
}