transactional-ai 0.1.0 → 0.1.1
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 +8 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,6 +5,7 @@ Implement the Saga Pattern with persistent rollback and state recovery for Long-
|
|
|
5
5
|
|
|
6
6
|
[](https://www.npmjs.com/package/transactional-ai)
|
|
7
7
|
[](https://opensource.org/licenses/MIT)
|
|
8
|
+

|
|
8
9
|
|
|
9
10
|
## Why use this?
|
|
10
11
|
AI Agents are flaky. Steps fail, APIs time out, and hallucinations happen.
|
|
@@ -140,6 +141,13 @@ agent.step({
|
|
|
140
141
|
});
|
|
141
142
|
```
|
|
142
143
|
|
|
144
|
+
## Limitations (v0.1.0)
|
|
145
|
+
This release is designed as a Single-Process MVP.
|
|
146
|
+
|
|
147
|
+
1. Concurrency: Do not run the same transaction-id across multiple worker processes simultaneously. Distributed locking (Redlock) is not yet implemented, so race conditions may occur if you horizontally scale workers on the same ID.
|
|
148
|
+
|
|
149
|
+
2. Storage: Currently supports Redis and local FileSystem. SQL adapters are in development.
|
|
150
|
+
|
|
143
151
|
---
|
|
144
152
|
|
|
145
153
|
## Roadmap
|