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.
- package/dist/index.js +3 -1
- 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 =
|
|
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