agent2 / cli /src /questions /sharedQuestions.js
Deputydoofy's picture
Upload folder using huggingface_hub
868b252 verified
raw
history blame contribute delete
311 Bytes
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",
}