@amodalai/runtime 0.1.1 → 0.1.2
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 +26 -0
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# @amodalai/runtime
|
|
2
|
+
|
|
3
|
+
HTTP server for running Amodal agents. Handles SSE streaming, session management, persistent stores, cron scheduling, and webhook handling.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @amodalai/runtime
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## What it does
|
|
12
|
+
|
|
13
|
+
- Dual-mode: repo mode (reads from git) and platform mode (multi-tenant, JWT auth)
|
|
14
|
+
- SSE streaming for real-time chat
|
|
15
|
+
- Session management with persistence
|
|
16
|
+
- PGlite and PostgreSQL stores
|
|
17
|
+
- Cron-based automation scheduling
|
|
18
|
+
- Webhook listener for event-driven triggers
|
|
19
|
+
|
|
20
|
+
## Documentation
|
|
21
|
+
|
|
22
|
+
[docs.amodalai.com](https://docs.amodalai.com)
|
|
23
|
+
|
|
24
|
+
## License
|
|
25
|
+
|
|
26
|
+
[MIT](../../LICENSE)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@amodalai/runtime",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Agent Runtime Platform — HTTP server for repo and platform modes",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"jose": "^6.0.0",
|
|
25
25
|
"node-cron": "^3.0.3",
|
|
26
26
|
"zod": "^3.25.0",
|
|
27
|
-
"@amodalai/core": "0.1.
|
|
27
|
+
"@amodalai/core": "0.1.2"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@types/express": "^4.17.21",
|