#pragma once #include #include "llm_manager_types.h" std::string get_env_or(const char *name, const std::string &fallback); int get_env_int_or(const char *name, int fallback); std::string trim_copy(const std::string &value); std::string strip_quotes(const std::string &value); bool parse_bool_or(const std::string &value, bool fallback); Role parse_role_or(const std::string &value, Role fallback); ManagerConfig load_manager_config();