From 4a559dcb9a9a09a94c9b7865bbdfda5c1bbe0648 Mon Sep 17 00:00:00 2001 From: Rene Evertz Date: Mon, 20 Jul 2026 15:03:45 +0200 Subject: [PATCH] fix: kein Bezug mehr zu .Context --- .../Context/Summary/Navigation/ServiceRecordNavigationCS.cs | 2 -- .../Prompt/SystemPrompts/AiConversationSystemPromptBuilder.cs | 2 +- .../Prompt/SystemPrompts/AiFunctionSystemPromptBuilder.cs | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Server/Components/AICore/Context/Summary/Navigation/ServiceRecordNavigationCS.cs b/Server/Components/AICore/Context/Summary/Navigation/ServiceRecordNavigationCS.cs index 63bfd72cd..24cbcc53b 100644 --- a/Server/Components/AICore/Context/Summary/Navigation/ServiceRecordNavigationCS.cs +++ b/Server/Components/AICore/Context/Summary/Navigation/ServiceRecordNavigationCS.cs @@ -26,7 +26,5 @@ namespace AICore.Context.Summary.Navigation CostBearer = costBearer; SupportConcept = supportConcept; } - - } } diff --git a/Server/Components/AICore/Prompt/SystemPrompts/AiConversationSystemPromptBuilder.cs b/Server/Components/AICore/Prompt/SystemPrompts/AiConversationSystemPromptBuilder.cs index a21fb8682..7b0f8ad95 100644 --- a/Server/Components/AICore/Prompt/SystemPrompts/AiConversationSystemPromptBuilder.cs +++ b/Server/Components/AICore/Prompt/SystemPrompts/AiConversationSystemPromptBuilder.cs @@ -38,7 +38,7 @@ namespace AICore.Prompt.SystemPrompts sb.AppendLine(); sb.AppendLine("### **Daten**"); - if (context?.Context is null) + if (context is null) { sb.AppendLine("Dir wurden keine Daten bereitgestellt."); } diff --git a/Server/Components/AICore/Prompt/SystemPrompts/AiFunctionSystemPromptBuilder.cs b/Server/Components/AICore/Prompt/SystemPrompts/AiFunctionSystemPromptBuilder.cs index 6ffb6a3c9..208c6e392 100644 --- a/Server/Components/AICore/Prompt/SystemPrompts/AiFunctionSystemPromptBuilder.cs +++ b/Server/Components/AICore/Prompt/SystemPrompts/AiFunctionSystemPromptBuilder.cs @@ -38,7 +38,7 @@ namespace AICore.Prompt.SystemPrompts sb.AppendLine(); sb.AppendLine("### **Daten**"); - if (context?.Context is null) + if (context is null) { sb.AppendLine("Dir wurden keine Daten bereitgestellt."); }