diff --git a/cli/magic-config.ts b/cli/magic-config.ts index 5e2e42ca..348c720d 100644 --- a/cli/magic-config.ts +++ b/cli/magic-config.ts @@ -838,6 +838,7 @@ async function processCreateOptions(options: any): Promise { choices: embeddingModels.map((m) => ({ name: m.name, value: m })), initial: options.defaultEmbedding, validate(value: string) { + if ((this as any).skipped) return true; const embeding = embeddingModels.find((i) => i.name === value); if ( answers.enableRag &&