diff --git a/profiler/src/profiler/TracyLlm.cpp b/profiler/src/profiler/TracyLlm.cpp index 9ef75f96..60e486dd 100644 --- a/profiler/src/profiler/TracyLlm.cpp +++ b/profiler/src/profiler/TracyLlm.cpp @@ -683,10 +683,10 @@ void TracyLlm::SendMessage( std::unique_lock& lock ) { inject += "\n"; inject += std::string( m_systemReminder->data(), m_systemReminder->size() ); - inject += "The current time is: " + m_tools->GetCurrentTime() + "\n"; inject += "\n"; } + chat.front()["content"].get_ref().append( "\n\nThe current time is: " + m_tools->GetCurrentTime() + "\n" ); chat.back()["content"].get_ref().insert( 0, inject ); nlohmann::json req;