File size: 448 Bytes
332826f
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include <string>

#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();