@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 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.
@@ -3,6 +3,7 @@ export type ProtectFailMode = "open" | "closed";
3
3
  export interface ProtectContext {
4
4
  provider: string;
5
5
  requested_model?: string | null;
6
+ environment?: string;
6
7
  feature?: string;
7
8
  max_output_tokens?: number;
8
9
  input_tokens_estimate?: number;
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rheonic/sdk",
3
- "version": "0.1.0-beta.14",
3
+ "version": "0.1.0-beta.16",
4
4
  "description": "Node.js SDK for Rheonic observability and protect preflight enforcement.",
5
5
  "author": "Rheonic <founder@rheonic.dev>",
6
6
  "license": "MIT",