File size: 311 Bytes
868b252
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
export const RUN_OPTION_QUESTION = {
  type: 'list',
  name: 'runOption',
  choices: [
    { value: "docker-compose", name: "πŸ‹ Docker-compose (Recommended)" },
    { value: "manual", name: "πŸ’ͺ Manual (Not recommended)" },
  ],
  message: 'How will you be running AgentGPT?',
  default: "docker-compose",
}