open-agents-ai 0.120.0 → 0.121.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.
Files changed (2) hide show
  1. package/dist/index.js +9 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -52710,6 +52710,7 @@ async function startInteractive(config, repoPath) {
52710
52710
  let currentStyle = PRESET_NAMES.includes(savedSettings.style) ? savedSettings.style : "balanced";
52711
52711
  let deepContextEnabled = savedSettings.deepContext ?? false;
52712
52712
  let flowEnabled = savedSettings.flow === true;
52713
+ let cohereEnabled = false;
52713
52714
  let commandsMode = savedSettings.commandsMode ?? "manual";
52714
52715
  if (savedSettings.emojis !== void 0)
52715
52716
  setEmojisEnabled(savedSettings.emojis);
@@ -53589,6 +53590,14 @@ Rationale: ${proposal.rationale}${provenanceNote}`;
53589
53590
  flowEnabled = !flowEnabled;
53590
53591
  return flowEnabled;
53591
53592
  },
53593
+ cohereToggle() {
53594
+ cohereEnabled = !cohereEnabled;
53595
+ statusBar.setCohereActive(cohereEnabled);
53596
+ return cohereEnabled;
53597
+ },
53598
+ isCohere() {
53599
+ return cohereEnabled;
53600
+ },
53592
53601
  getCommandsMode() {
53593
53602
  return commandsMode;
53594
53603
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.120.0",
3
+ "version": "0.121.0",
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",