Store selected LLM model.

This commit is contained in:
Bartosz Taudul
2025-05-11 17:24:20 +02:00
parent d72898087f
commit cb212567ed
2 changed files with 5 additions and 0 deletions

View File

@@ -237,6 +237,7 @@ static void LoadConfig()
if( ini_sget( ini, "ui", "userScale", "%lf", &v1 ) && v1 > 0.0 && s_config.saveUserScale ) s_config.userScale = v1;
if( ini_sget( ini, "llm", "enabled", "%d", &v ) ) s_config.llm = v;
if( v2 = ini_get( ini, "llm", "address" ); v2 ) s_config.llmAddress = v2;
if( v2 = ini_get( ini, "llm", "model" ); v2 ) s_config.llmModel = v2;
ini_free( ini );
}
@@ -274,6 +275,7 @@ static bool SaveConfig()
fprintf( f, "\n[llm]\n" );
fprintf( f, "enabled = %i\n", (int)s_config.llm );
fprintf( f, "address = %s\n", s_config.llmAddress.c_str() );
fprintf( f, "model = %s\n", s_config.llmModel.c_str() );
fclose( f );
return true;

View File

@@ -1,6 +1,8 @@
#ifndef __TRACYCONFIG_HPP__
#define __TRACYCONFIG_HPP__
#include <string>
#include "TracyUtility.hpp"
namespace tracy
@@ -24,6 +26,7 @@ struct Config
float userScale = 1.0f;
bool llm = true;
std::string llmAddress = "http://localhost:11434";
std::string llmModel;
};
}