From 8259cd6affa343f3ecbdfd2f4dcfaafccdd94b8f Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 7 Jun 2025 21:18:46 +0200 Subject: [PATCH] Don't waste time calculating embeddings that will be ignored. --- profiler/src/profiler/TracyLlmTools.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiler/src/profiler/TracyLlmTools.cpp b/profiler/src/profiler/TracyLlmTools.cpp index e1798a40..4445ef5a 100644 --- a/profiler/src/profiler/TracyLlmTools.cpp +++ b/profiler/src/profiler/TracyLlmTools.cpp @@ -310,7 +310,7 @@ void TracyLlmTools::ManualEmbeddingsWorker( TracyLlmApi& api ) size_t length; { nlohmann::json req; - req["input"] = "embeddings length probe"; + req["input"] = ""; req["model"] = m_manualEmbeddingState.model; nlohmann::json response;