open-agents-ai 0.138.4 → 0.138.5

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.
Files changed (2) hide show
  1. package/dist/index.js +3 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -40611,7 +40611,9 @@ async function handleSlashCommand(input, ctx) {
40611
40611
  await handleUpdate(arg, ctx);
40612
40612
  return "handled";
40613
40613
  case "voice": {
40614
- const save = hasLocal ? ctx.saveLocalSettings.bind(ctx) : ctx.saveSettings.bind(ctx);
40614
+ const save = (settings) => {
40615
+ ctx.saveSettings(settings);
40616
+ };
40615
40617
  if (arg) {
40616
40618
  if (arg === "enable" || arg === "on") {
40617
40619
  const msg2 = await ctx.voiceToggle();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.138.4",
3
+ "version": "0.138.5",
4
4
  "description": "AI coding agent powered by open-source models (Ollama/vLLM) — interactive TUI with agentic tool-calling loop",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",