polpo-ai 0.15.76 → 0.15.78

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/README.md +1 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -36,6 +36,7 @@ Polpo is an open-source runtime for building, running, and managing AI agents. I
36
36
  - **Completions** -- OpenAI-compatible `/v1/chat/completions` endpoint
37
37
  - **Loops** -- beta project-level deterministic graphs assigned to agents
38
38
  - **Real-time** -- SSE event streaming for live agent activity
39
+ - **Durable delivery** -- opt-in completion replay and reconnect after SSE loss
39
40
  - **Storage** -- file (default), SQLite, or PostgreSQL via Drizzle
40
41
  - **Assessment** -- built-in quality scoring with LLM review
41
42
  - **Skills** -- reusable agent capabilities loaded from YAML playbooks
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "polpo-ai",
3
- "version": "0.15.76",
3
+ "version": "0.15.78",
4
4
  "description": "The open backend for AI agents",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -45,7 +45,7 @@
45
45
  "node": ">=20.0.0"
46
46
  },
47
47
  "dependencies": {
48
- "@polpo-ai/node": "0.15.76"
48
+ "@polpo-ai/node": "0.15.78"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@types/better-sqlite3": "^7.6.13",