remove test code

This commit is contained in:
Jicheng Lu 2023-10-25 15:11:15 -05:00
parent 6f7f143e7d
commit 2e3fbc98a9

View file

@ -379,13 +379,7 @@ public class FileRepository : IBotSharpRepository
}
var functionText = JsonSerializer.Serialize(functions, _options);
using (var sw = File.CreateText(functionFile))
{
sw.Write(functionText);
}
//File.WriteAllText(functionFile, functionText);
File.WriteAllText(functionFile, functionText);
}
private void UpdateAgentTemplates(string agentId, List<AgentTemplate> templates)