Add embedding model heuristic to not recognized llama API providers.

This commit is contained in:
Bartosz Taudul
2026-06-18 20:51:53 +02:00
parent 802e88585a
commit 3ccda1d3c4

View File

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