From 0246cec0a714e0037c876ea496cf10adb5232ca4 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 28 Dec 2025 18:07:18 +0100 Subject: [PATCH] System reminder is no longer in use. --- profiler/CMakeLists.txt | 1 - profiler/src/llm/system.reminder.md | 5 ----- profiler/src/profiler/TracyLlm.cpp | 2 -- profiler/src/profiler/TracyLlm.hpp | 1 - 4 files changed, 9 deletions(-) delete mode 100644 profiler/src/llm/system.reminder.md diff --git a/profiler/CMakeLists.txt b/profiler/CMakeLists.txt index 1681a64b..a1ef3977 100644 --- a/profiler/CMakeLists.txt +++ b/profiler/CMakeLists.txt @@ -146,7 +146,6 @@ set(PROFILER_FILES ) Embed(PROFILER_FILES SystemPrompt src/llm/system.prompt.md) -Embed(PROFILER_FILES SystemReminder src/llm/system.reminder.md) Embed(PROFILER_FILES FontFixed src/font/FiraCode-Retina.ttf) Embed(PROFILER_FILES FontIcons src/font/Font\ Awesome\ 6\ Free-Solid-900.otf) Embed(PROFILER_FILES FontNormal src/font/Roboto-Regular.ttf) diff --git a/profiler/src/llm/system.reminder.md b/profiler/src/llm/system.reminder.md deleted file mode 100644 index d20c621a..00000000 --- a/profiler/src/llm/system.reminder.md +++ /dev/null @@ -1,5 +0,0 @@ -Remember your core principles: -1. Protect user's privacy. -2. Always prioritize tools for factual information. -3. Your internal knowledge is strictly secondary and a last resort. -4. Respond strictly in the user's language. diff --git a/profiler/src/profiler/TracyLlm.cpp b/profiler/src/profiler/TracyLlm.cpp index e09f330c..a528eedb 100644 --- a/profiler/src/profiler/TracyLlm.cpp +++ b/profiler/src/profiler/TracyLlm.cpp @@ -15,7 +15,6 @@ #include "../Fonts.hpp" #include "data/SystemPrompt.hpp" -#include "data/SystemReminder.hpp" namespace tracy { @@ -39,7 +38,6 @@ TracyLlm::TracyLlm( Worker& worker, const TracyManualData& manual ) } m_systemPrompt = Unembed( SystemPrompt ); - m_systemReminder = Unembed( SystemReminder ); m_input = new char[InputBufferSize]; m_apiInput = new char[InputBufferSize]; diff --git a/profiler/src/profiler/TracyLlm.hpp b/profiler/src/profiler/TracyLlm.hpp index 6c34a19e..b1cdd4ed 100644 --- a/profiler/src/profiler/TracyLlm.hpp +++ b/profiler/src/profiler/TracyLlm.hpp @@ -94,7 +94,6 @@ private: std::vector m_chat; std::shared_ptr m_systemPrompt; - std::shared_ptr m_systemReminder; }; }