@stagewhisper/stagewhisper 0.42.0 → 0.43.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/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/plugin-main.ts +3 -2
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
package/plugin-main.ts
CHANGED
|
@@ -114,10 +114,11 @@ export default definePluginEntry({
|
|
|
114
114
|
|
|
115
115
|
sw.command("reasoning-check")
|
|
116
116
|
.description("Test reasoning capability against the local OpenResponses endpoint")
|
|
117
|
-
.option("--model <model>", "Model to use", "
|
|
117
|
+
.option("--model <model>", "Model to use (omit to use your configured default)", "default")
|
|
118
118
|
.action(async (opts: { model: string }) => {
|
|
119
119
|
const { callOpenResponses } = await import("./src/openresponses.js");
|
|
120
|
-
|
|
120
|
+
const modelLabel = opts.model === "default" ? "default (configured)" : opts.model;
|
|
121
|
+
console.log(`Testing reasoning with model: ${modelLabel}`);
|
|
121
122
|
console.log("Sending test request to local /v1/responses ...");
|
|
122
123
|
|
|
123
124
|
const start = Date.now();
|