stratus-sdk 0.7.2 → 0.7.3

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 +4 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -17,6 +17,10 @@ A better TypeScript agent SDK for Azure OpenAI. Build multi-agent systems with t
17
17
 
18
18
  - **One framework, two swappable backends** — `AzureChatCompletionsModel` and `AzureResponsesModel` implement the same `Model` interface. Switch with one line, zero agent code changes.
19
19
  - **No more 404 config spiral** — explicit `deployment` param, auto-endpoint detection for standard/foundry/full URLs, built-in retry with exponential backoff, and a unified `ContentFilterError` so Azure's inconsistent error shapes don't break your agent loop.
20
+ - **One `run()` call, entire tool loop** — model calls, parallel tool execution, result appending, and looping back. No manual message array management.
21
+ - **Client-side agent state** — no server-side threads or opaque IDs. Full message history lives locally with `save()`, `resumeSession()`, and `forkSession()` for portable snapshots.
22
+ - **Budget enforcement built in** — set `maxBudgetUsd` and the run stops before you get a surprise bill. Cost estimation accounts for cached and reasoning tokens.
23
+ - **Auth validated at construction** — API key or Entra ID token provider, enforced mutually exclusive in the constructor. No silent misconfiguration that surfaces as a mysterious 401 three calls later.
20
24
 
21
25
  `agents` `tools` `streaming` `structured output` `handoffs` `subagents` `guardrails` `hooks` `tracing` `sessions` `abort signals` `todo tracking` `cost tracking`
22
26
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stratus-sdk",
3
- "version": "0.7.2",
3
+ "version": "0.7.3",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",