@orchagent/cli 0.2.24 → 0.2.25
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/commands/run.js +2 -0
- package/dist/commands/search.js +1 -0
- package/package.json +1 -1
package/dist/commands/run.js
CHANGED
|
@@ -252,6 +252,8 @@ async function executePromptLocally(agentData, inputData, skillPrompts = [], con
|
|
|
252
252
|
const { provider, key, model: serverModel } = detected;
|
|
253
253
|
// Priority: server config model > agent default model > hardcoded default
|
|
254
254
|
const model = serverModel || agentData.default_models?.[provider] || (0, llm_1.getDefaultModel)(provider);
|
|
255
|
+
// Show which provider is being used (helpful for debugging rate limits)
|
|
256
|
+
process.stderr.write(`Running with ${provider} (${model})...\n`);
|
|
255
257
|
// Combine skill prompts with agent prompt (skills first, then agent)
|
|
256
258
|
let basePrompt = agentData.prompt || '';
|
|
257
259
|
if (skillPrompts.length > 0) {
|
package/dist/commands/search.js
CHANGED
|
@@ -61,5 +61,6 @@ function registerSearchCommand(program) {
|
|
|
61
61
|
if (agents.length === limit) {
|
|
62
62
|
process.stdout.write(`\nShowing top ${limit} results. Use --limit <n> for more.\n`);
|
|
63
63
|
}
|
|
64
|
+
process.stdout.write('\nTip: Run "orchagent info <agent>" to see input schema and details.\n');
|
|
64
65
|
});
|
|
65
66
|
}
|