opencode-agent[bot] před 2 týdny
rodič
revize
d0dd49bd84
1 změnil soubory, kde provedl 1 přidání a 3 odebrání
  1. 1 3
      packages/core/src/tool/plugin/question.ts

+ 1 - 3
packages/core/src/tool/plugin/question.ts

@@ -21,9 +21,7 @@ Usage notes:
 - If you recommend a specific option, make that the first option in the list and add "(Recommended)" at the end of the label`
 
 export const Input = Schema.Struct({
-  questions: Schema.Array(Question.Prompt)
-    .check(Schema.isNonEmpty())
-    .annotate({ description: "Questions to ask" }),
+  questions: Schema.Array(Question.Prompt).check(Schema.isNonEmpty()).annotate({ description: "Questions to ask" }),
 })
 
 export const Output = Schema.Struct({