open-agents-ai 0.187.571 → 0.187.572

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 CHANGED
@@ -2131,14 +2131,6 @@ var init_shell = __esm({
2131
2131
  const command = args["command"];
2132
2132
  const timeout2 = args["timeout"] ?? this.defaultTimeout;
2133
2133
  const stdinInput = args["stdin"];
2134
- if (command && /cobalt\.tools|api\.cobalt\.tools/i.test(command)) {
2135
- return {
2136
- success: false,
2137
- output: "",
2138
- error: "The cobalt.tools API was SHUT DOWN on Nov 11, 2024 (https://github.com/imputnet/cobalt/discussions/860). Use the built-in `youtube_download` or `transcribe_url` tools instead for YouTube audio/video downloads — they use yt-dlp locally.",
2139
- durationMs: performance.now() - start2
2140
- };
2141
- }
2142
2134
  const result = await this.runCommand(command, timeout2, stdinInput);
2143
2135
  if (result.success === false || result.output && result.output.length < 800) {
2144
2136
  const looksTruncated = /\|\s*(tail|head|sed\s+-n|cut\s+|awk\s+'NR)\b/.test(command);
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.187.571",
3
+ "version": "0.187.572",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "open-agents-ai",
9
- "version": "0.187.571",
9
+ "version": "0.187.572",
10
10
  "hasInstallScript": true,
11
11
  "license": "CC-BY-NC-4.0",
12
12
  "dependencies": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.187.571",
3
+ "version": "0.187.572",
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",