@rheonic/sdk 0.1.0-beta.14 → 0.1.0-beta.16
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 +9 -0
- package/dist/protectEngine.d.ts +1 -0
- package/dist/protectEngine.js +3 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
# ⚠️ Status: Development paused.
|
|
2
|
+
|
|
3
|
+
Rheonic was built as an LLM API layer for cost control and observability in agentic workflows.
|
|
4
|
+
|
|
5
|
+
The project is currently paused after initial validation attempts.
|
|
6
|
+
The system is fully functional, but did not reach product-market fit.
|
|
7
|
+
The hosted service is no longer active.
|
|
8
|
+
Maintenance has been discontinued for this SDK.
|
|
9
|
+
|
|
1
10
|
# Rheonic Node SDK
|
|
2
11
|
|
|
3
12
|
Rheonic captures provider telemetry and applies protect preflight decisions before provider calls.
|
package/dist/protectEngine.d.ts
CHANGED
package/dist/protectEngine.js
CHANGED
|
@@ -242,6 +242,9 @@ function sanitizeProtectContext(context) {
|
|
|
242
242
|
if (context.requested_model != null) {
|
|
243
243
|
payload.requested_model = context.requested_model;
|
|
244
244
|
}
|
|
245
|
+
if (context.environment != null) {
|
|
246
|
+
payload.environment = context.environment;
|
|
247
|
+
}
|
|
245
248
|
if (context.feature != null) {
|
|
246
249
|
payload.feature = context.feature;
|
|
247
250
|
}
|
package/package.json
CHANGED