baro-ai 0.36.2 → 0.37.0
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/dist/cli.mjs +5 -1
- package/dist/cli.mjs.map +1 -1
- package/dist/run-planner.mjs +33 -0
- package/dist/run-planner.mjs.map +1 -1
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -12027,7 +12027,11 @@ async function orchestrate(config) {
|
|
|
12027
12027
|
const llm = config.llm ?? "claude";
|
|
12028
12028
|
if (llm === "openai") {
|
|
12029
12029
|
process.stderr.write(
|
|
12030
|
-
"[orchestrate] llm=openai:
|
|
12030
|
+
"[orchestrate] llm=openai: Architect, Planner, Critic, Surgeon, StoryAgent all running through Mozaik's native OpenAI runner (gpt-5.x).\n"
|
|
12031
|
+
);
|
|
12032
|
+
} else {
|
|
12033
|
+
process.stderr.write(
|
|
12034
|
+
"[orchestrate] llm=claude: every LLM phase shells out to the Claude Code CLI.\n"
|
|
12031
12035
|
);
|
|
12032
12036
|
}
|
|
12033
12037
|
if (config.auditLogPath) {
|