orchestrating 0.1.10 → 0.1.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/orch +1 -2
- package/package.json +1 -1
package/bin/orch
CHANGED
|
@@ -322,9 +322,8 @@ if (adapter) {
|
|
|
322
322
|
}
|
|
323
323
|
}
|
|
324
324
|
const prompt = promptParts.join(" ");
|
|
325
|
-
if (!prompt
|
|
325
|
+
if (!prompt) {
|
|
326
326
|
console.error(`Usage: orch ${command} "your prompt here"`);
|
|
327
|
-
console.error(` orch ${command} -c # continue last conversation`);
|
|
328
327
|
console.error(` orch ${command} -c "follow up" # continue with message`);
|
|
329
328
|
process.exit(1);
|
|
330
329
|
}
|