stratus-sdk 0.7.0 → 0.7.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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -33,9 +33,9 @@ bun add zod
33
33
 
34
34
  ```ts
35
35
  import { z } from "zod";
36
- import { Agent, AzureChatCompletionsModel, run, tool } from "stratus-sdk";
36
+ import { Agent, AzureResponsesModel, run, tool } from "stratus-sdk";
37
37
 
38
- const model = new AzureChatCompletionsModel({
38
+ const model = new AzureResponsesModel({
39
39
  endpoint: process.env.AZURE_OPENAI_ENDPOINT!,
40
40
  apiKey: process.env.AZURE_OPENAI_API_KEY!,
41
41
  deployment: "gpt-5.2",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stratus-sdk",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",