From 3ccda1d3c44cb209af8ea30ffb768128dea66408 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Thu, 18 Jun 2026 20:51:53 +0200 Subject: [PATCH] Add embedding model heuristic to not recognized llama API providers. --- profiler/src/profiler/TracyLlmApi.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/profiler/src/profiler/TracyLlmApi.cpp b/profiler/src/profiler/TracyLlmApi.cpp index c589e05d..86f36498 100644 --- a/profiler/src/profiler/TracyLlmApi.cpp +++ b/profiler/src/profiler/TracyLlmApi.cpp @@ -78,6 +78,7 @@ bool TracyLlmApi::Connect( const char* url ) else if( m_type == Type::Unknown ) { m_type = Type::Other; + if( id.find( "embed" ) != std::string::npos ) m_models.back().embeddings = true; } } }