System reminder is no longer in use.

This commit is contained in:
Bartosz Taudul
2025-12-28 18:07:18 +01:00
parent d385328a16
commit 0246cec0a7
4 changed files with 0 additions and 9 deletions

View File

@@ -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)

View File

@@ -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.

View File

@@ -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];

View File

@@ -94,7 +94,6 @@ private:
std::vector<nlohmann::json> m_chat;
std::shared_ptr<EmbedData> m_systemPrompt;
std::shared_ptr<EmbedData> m_systemReminder;
};
}