Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ private List<AgentTemplate> GetTemplatesFromFile(string fileDir)

private IEnumerable<AgentTemplateConfig> GetAgentTemplateConfigs(string baseDir)
{
var configFile = Path.Combine(baseDir, "template_configs.json");
var configFile = Path.Combine(baseDir, "template-configs.json");
var configs = new List<AgentTemplateConfig>();

try
Expand Down
4 changes: 2 additions & 2 deletions src/Infrastructure/BotSharp.Core/BotSharp.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<None Remove="data\agents\01dcc3e5-0af7-49e6-ad7a-a760bd12dc4b\functions\human_intervention_needed.json" />

<None Remove="data\agents\01e2fc5c-2c89-4ec7-8470-7688608b496c\agent.json" />
<None Remove="data\agents\01e2fc5c-2c89-4ec7-8470-7688608b496c\template_configs.json" />
<None Remove="data\agents\01e2fc5c-2c89-4ec7-8470-7688608b496c\template-configs.json" />
<None Remove="data\agents\01e2fc5c-2c89-4ec7-8470-7688608b496c\instructions\instruction.liquid" />
<None Remove="data\agents\01e2fc5c-2c89-4ec7-8470-7688608b496c\functions\get_weather.json" />
<None Remove="data\agents\01e2fc5c-2c89-4ec7-8470-7688608b496c\functions\get_fun_events.json" />
Expand Down Expand Up @@ -132,7 +132,7 @@
<Content Include="data\agents\01e2fc5c-2c89-4ec7-8470-7688608b496c\agent.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="data\agents\01e2fc5c-2c89-4ec7-8470-7688608b496c\template_configs.json">
<Content Include="data\agents\01e2fc5c-2c89-4ec7-8470-7688608b496c\template-configs.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="data\agents\01e2fc5c-2c89-4ec7-8470-7688608b496c\instructions\instruction.liquid">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public partial class FileRepository : IBotSharpRepository
private const string CRON_FILE = "cron.json";
private const string INSTRUCTION_LOG_FOLDER = "instruction-logs";

private const string AGENT_TEMPLATE_CONFIG_FILE = "template_configs.json";
private const string AGENT_TEMPLATE_CONFIG_FILE = "template-configs.json";

public FileRepository(
IServiceProvider services,
Expand Down
Loading