Wird nicht benutzt

This commit is contained in:
2026-03-10 11:05:11 +01:00
parent fe13a0d088
commit e4d975b837
4 changed files with 0 additions and 9 deletions

View File

@@ -1,5 +0,0 @@
{
"AiEnabled": true,
"AiTestPhase": true,
"DefaultModel": "llama3"
}

View File

@@ -466,7 +466,6 @@
<Content Include="Multitenancy\debugMsSQL.config" /> <Content Include="Multitenancy\debugMsSQL.config" />
<Content Include="Multitenancy\debugMySQL.config" /> <Content Include="Multitenancy\debugMySQL.config" />
<Content Include="Multitenancy\demo.config" /> <Content Include="Multitenancy\demo.config" />
<None Include="Config\ai.config.json" />
<None Include="Properties\PublishProfiles\BeWo2.0.pubxml" /> <None Include="Properties\PublishProfiles\BeWo2.0.pubxml" />
<Content Include="Scripts\german-datepicker.js" /> <Content Include="Scripts\german-datepicker.js" />
<None Include="Scripts\jquery-3.7.1.intellisense.js" /> <None Include="Scripts\jquery-3.7.1.intellisense.js" />

View File

@@ -42,7 +42,6 @@ namespace BeWo.Service
public enum SpecialConfig public enum SpecialConfig
{ {
None = -1, None = -1,
AiConfig,
CustomFunctionPreSystemPrompt, CustomFunctionPreSystemPrompt,
CustomPreSystemPrompt CustomPreSystemPrompt
} }

View File

@@ -51,8 +51,6 @@ namespace BeWo.Service.Core
{ {
case SpecialConfig.None: case SpecialConfig.None:
break; break;
case SpecialConfig.AiConfig:
return Path.Combine("ai", "ai.config.json");
case SpecialConfig.CustomFunctionPreSystemPrompt: case SpecialConfig.CustomFunctionPreSystemPrompt:
return Path.Combine("ai", "systemPrompts", "customFunctionPreSystemPrompt.txt"); return Path.Combine("ai", "systemPrompts", "customFunctionPreSystemPrompt.txt");
case SpecialConfig.CustomPreSystemPrompt: case SpecialConfig.CustomPreSystemPrompt: