BotSharp/src/Infrastructure/BotSharp.Core/Agents/Services/AgentService.UpdateAgent.cs

89 lines
3.3 KiB
C#
Raw Normal View History

2023-06-23 04:43:00 +00:00
using BotSharp.Abstraction.Agents.Models;
2023-08-26 04:41:01 +00:00
using BotSharp.Abstraction.Repositories;
2023-06-29 23:14:57 +00:00
using System.IO;
2023-06-23 04:43:00 +00:00
namespace BotSharp.Core.Agents.Services;
public partial class AgentService
{
2023-09-15 20:19:44 +00:00
public async Task UpdateAgent(Agent agent, AgentField updateField)
2023-06-23 04:43:00 +00:00
{
2023-09-15 20:19:44 +00:00
if (agent == null || string.IsNullOrEmpty(agent.Id)) return;
2023-08-28 05:28:14 +00:00
2023-09-15 20:19:44 +00:00
var record = FindAgent(agent.Id);
2023-09-02 05:10:46 +00:00
if (record == null) return;
2023-06-26 23:08:24 +00:00
2023-09-15 20:52:22 +00:00
record.Name = agent.Name ?? string.Empty;
record.Description = agent.Description ?? string.Empty;
record.Instruction = agent.Instruction ?? string.Empty;
record.Functions = agent.Functions ?? new List<string>();
record.Templates = agent.Templates ?? new List<AgentTemplate>();
record.Responses = agent.Responses ?? new List<AgentResponse>();
2023-09-15 20:19:44 +00:00
_db.UpdateAgent(record, updateField);
2023-09-02 05:10:46 +00:00
await Task.CompletedTask;
2023-06-23 04:43:00 +00:00
}
2023-09-13 22:34:19 +00:00
2023-09-15 20:19:44 +00:00
private Agent FindAgent(string agentId)
{
var record = (from a in _db.Agents
join ua in _db.UserAgents on a.Id equals ua.AgentId
join u in _db.Users on ua.UserId equals u.Id
where (ua.UserId == _user.Id || u.ExternalId == _user.Id) &&
a.Id == agentId
select a).FirstOrDefault();
return record;
}
2023-09-13 22:34:19 +00:00
public async Task UpdateAgentFromFile(string id)
{
2023-09-15 20:19:44 +00:00
var agent = _db.Agents?.FirstOrDefault(x => x.Id == id);
2023-09-13 22:34:19 +00:00
if (agent == null) return;
var dbSettings = _services.GetRequiredService<BotSharpDatabaseSettings>();
var agentSettings = _services.GetRequiredService<AgentSettings>();
var filePath = Path.Combine(dbSettings.FileRepository, agentSettings.DataDir);
var clonedAgent = Agent.Clone(agent);
var foundAgent = FetchAgentFileById(agent.Id, filePath);
if (foundAgent != null)
{
clonedAgent.SetId(foundAgent.Id)
.SetName(foundAgent.Name)
.SetDescription(foundAgent.Description)
.SetIsPublic(foundAgent.IsPublic)
.SetInstruction(foundAgent.Instruction)
.SetTemplates(foundAgent.Templates)
.SetFunctions(foundAgent.Functions)
.SetResponses(foundAgent.Responses);
2023-09-15 20:19:44 +00:00
_db.UpdateAgent(clonedAgent, AgentField.All);
2023-09-13 22:34:19 +00:00
}
await Task.CompletedTask;
}
private Agent FetchAgentFileById(string agentId, string filePath)
{
foreach (var dir in Directory.GetDirectories(filePath))
{
var agentJson = File.ReadAllText(Path.Combine(dir, "agent.json"));
var agent = JsonSerializer.Deserialize<Agent>(agentJson, _options);
if (agent != null && agent.Id == agentId)
{
var functions = FetchFunctionsFromFile(dir);
var instruction = FetchInstructionFromFile(dir);
var responses = FetchResponsesFromFile(dir);
var templates = FetchTemplatesFromFile(dir);
return agent.SetInstruction(instruction)
.SetTemplates(templates)
.SetFunctions(functions)
.SetResponses(responses);
}
}
return null;
}
2023-06-23 04:43:00 +00:00
}