open-agents-ai 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.
- package/README.md +15 -15
- package/dist/index.js +918 -401
- package/dist/scripts/autoresearch-prepare.py +389 -0
- package/dist/scripts/autoresearch-train.py +630 -0
- package/package.json +1 -9
package/README.md
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
|
+
<h1 align="center">Open Agents</h1>
|
|
2
|
+
|
|
1
3
|
<p align="center">
|
|
2
|
-
<
|
|
3
|
-
|
|
4
|
-
<img src="https://img.shields.io/badge/license-MIT-10B981?style=flat-square" alt="license" />
|
|
5
|
-
<img src="https://img.shields.io/badge/node-%3E%3D20-F59E0B?style=flat-square" alt="node version" />
|
|
6
|
-
<img src="https://img.shields.io/badge/models-open--weight-EC4899?style=flat-square" alt="open-weight models" />
|
|
4
|
+
<strong>AI coding agent powered entirely by open-weight models.</strong><br>
|
|
5
|
+
No API keys. No cloud. Your code never leaves your machine.
|
|
7
6
|
</p>
|
|
8
7
|
|
|
9
8
|
<p align="center">
|
|
10
|
-
<code
|
|
11
|
-
<
|
|
12
|
-
<code style="color:#5fd75f">Freiheit der Muster</code> · <code style="color:#ff5f87">jiyuu ni souzou suru</code> · <code style="color:#8787ff">jayuroun changjak</code> · <code style="color:#5fafaf">svoboda tvorchestva</code><br>
|
|
13
|
-
<code style="color:#d7af5f">liberdade de criar</code> · <code style="color:#afaf87">creare liberamente</code> · <code style="color:#afff87">ozgurce yarat</code> · <code style="color:#87d7d7">skapa fritt</code><br>
|
|
14
|
-
<code style="color:#afd787">vrij creeren</code> · <code style="color:#d7d7af">tworz swobodnie</code> · <code style="color:#5fafff">dimiourgia elefthera</code> · <code style="color:#ff5f87">khuli soch</code><br>
|
|
15
|
-
<code style="color:#ffd787">hurriyat al-ibdaa</code> · <code style="color:#87ffaf">code is poetry</code> · <code style="color:#ff87d7">democratize AI</code> · <code style="color:#d7afff">imagine freely</code>
|
|
9
|
+
<code>⠀⠀⠀⠁⠉⠛⠿⣿⣿⣿⣿⡿⠿⠛⠉⠁⠀⠀⠀⠀⠀⠀⠁⠉⠛⠿⣿⣿⣿⣿⡿⠿⠛⠉⠁⠀⠀⠀⠀⠀⠀⠁⠉⠛⠿⣿⣿⣿⣿⡿⠿⠛⠉⠁⠀⠀</code><br>
|
|
10
|
+
<sub>Neural braille visualizer — SNR-modulated wave entropy with brain-region color themes</sub>
|
|
16
11
|
</p>
|
|
17
12
|
|
|
18
|
-
|
|
13
|
+
<p align="center">
|
|
14
|
+
<a href="https://www.npmjs.com/package/open-agents-ai"><img src="https://img.shields.io/npm/v/open-agents-ai?color=7C3AED&style=flat-square" alt="npm version" /></a>
|
|
15
|
+
<a href="https://www.npmjs.com/package/open-agents-ai"><img src="https://img.shields.io/npm/dm/open-agents-ai?color=06B6D4&style=flat-square" alt="npm downloads" /></a>
|
|
16
|
+
<img src="https://img.shields.io/badge/license-MIT-10B981?style=flat-square" alt="license" />
|
|
17
|
+
<img src="https://img.shields.io/badge/node-%3E%3D20-F59E0B?style=flat-square" alt="node version" />
|
|
18
|
+
<img src="https://img.shields.io/badge/models-open--weight-EC4899?style=flat-square" alt="open-weight models" />
|
|
19
|
+
<a href="https://x.com/intent/post?url=https%3A%2F%2Fwww.npmjs.com%2Fpackage%2Fopen-agents-ai"><img src="https://img.shields.io/badge/SHARE%20ON%20X-000000?style=for-the-badge&logo=x&logoColor=white" alt="Share on X" /></a>
|
|
20
|
+
</p>
|
|
19
21
|
|
|
20
|
-
|
|
22
|
+
---
|
|
21
23
|
|
|
22
24
|
```bash
|
|
23
25
|
npm i -g open-agents-ai && oa
|
|
24
26
|
```
|
|
25
27
|
|
|
26
|
-
**AI coding agent powered entirely by open-weight models.** No API keys. No cloud. Your code never leaves your machine.
|
|
27
|
-
|
|
28
28
|
An autonomous multi-turn tool-calling agent that reads your code, makes changes, runs tests, and fixes failures in an iterative loop until the task is complete. First launch auto-detects your hardware and configures the optimal model with expanded context window automatically.
|
|
29
29
|
|
|
30
30
|
## Features
|