studio: fix data roots and refine datasets

This commit is contained in:
scawful
2025-12-30 11:24:15 -05:00
parent 573ebf8247
commit 2711cf1658
12 changed files with 268 additions and 93 deletions

View File

@@ -151,6 +151,7 @@ struct AppState {
std::vector<std::string> compared_run_ids;
int selected_generator_index = -1;
std::string selected_generator_name;
int selected_dataset_index = -1;
PlotKind focus_plot = PlotKind::None;
std::map<std::string, bool> domain_visibility;
Workspace current_workspace = Workspace::Dashboard;
@@ -206,6 +207,7 @@ struct AppState {
std::array<char, 128> log_filter{};
std::array<char, 96> run_filter{};
std::array<char, 96> generator_filter{};
std::array<char, 96> dataset_filter{};
std::array<char, 256> chat_input{};
std::array<char, 1024> system_prompt{};
std::array<char, 1024> user_prompt{};