Spaces:
Runtime error
Runtime error
File size: 311 Bytes
cd6f98e |
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",
}
|