@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.
@@ -2,7 +2,7 @@
2
2
  "id": "stagewhisper",
3
3
  "name": "StageWhisper",
4
4
  "description": "Turn live call moments into assistant tasks via StageWhisper",
5
- "version": "0.42.0",
5
+ "version": "0.43.0",
6
6
  "channels": [
7
7
  "stagewhisper"
8
8
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stagewhisper/stagewhisper",
3
- "version": "0.42.0",
3
+ "version": "0.43.0",
4
4
  "type": "module",
5
5
  "description": "OpenClaw channel plugin that connects StageWhisper live calls to your AI assistant",
6
6
  "license": "MIT",
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", "openai-codex/gpt-5.4")
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
- console.log(`Testing reasoning with model: ${opts.model}`);
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();