stratus-sdk 0.7.2 → 0.7.4
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 +6 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -15,8 +15,12 @@
|
|
|
15
15
|
|
|
16
16
|
A better TypeScript agent SDK for Azure OpenAI. Build multi-agent systems with tools, handoffs, guardrails, streaming, structured output, and more.
|
|
17
17
|
|
|
18
|
-
- **One framework, two swappable backends** —
|
|
19
|
-
- **No more 404 config spiral** —
|
|
18
|
+
- **One framework, two swappable backends** — Chat Completions and Responses API through the same interface. Switch with one line.
|
|
19
|
+
- **No more 404 config spiral** — auto-endpoint detection for standard, foundry, and full URLs. Built-in retry with exponential backoff and unified content filter errors.
|
|
20
|
+
- **One 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. Save, resume, and fork conversations with portable snapshots.
|
|
22
|
+
- **Budget enforcement built in** — set a dollar limit 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, enforced mutually exclusive. 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
|
|