mirror of https://github.com/aliasrobotics/cai.git
24 lines
440 B
Python
24 lines
440 B
Python
class Colors:
|
|
HEADER = '\033[95m'
|
|
OKBLUE = '\033[94m'
|
|
OKCYAN = '\033[96m'
|
|
OKGREEN = '\033[92m'
|
|
WARNING = '\033[93m'
|
|
RED = '\033[91m'
|
|
ENDC = '\033[0m'
|
|
BOLD = '\033[1m'
|
|
UNDERLINE = '\033[4m'
|
|
GREY = '\033[90m'
|
|
|
|
|
|
test_root = 'tests'
|
|
test_file = 'test_prompts.jsonl'
|
|
tasks_path = 'configs/swarm_tasks.json'
|
|
|
|
# Options are 'assistants' or 'local'
|
|
engine_name = 'local'
|
|
|
|
max_iterations = 5
|
|
|
|
persist = False
|