@zhivex-ai/sdk 0.7.0-rc.0 → 0.7.0

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 +12 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -8,6 +8,18 @@ Recommended entry point for Zhivex AI SDK. Re-exports the high-level public API
8
8
  bun add @zhivex-ai/sdk
9
9
  ```
10
10
 
11
+ For the current release candidate:
12
+
13
+ ```bash
14
+ bun add @zhivex-ai/sdk@next
15
+ ```
16
+
17
+ ## Start Here
18
+
19
+ - Quickstart: <https://github.com/Zhivex/zhivex-ai-sdk/blob/main/docs/QUICKSTART.md>
20
+ - Next.js guide: <https://github.com/Zhivex/zhivex-ai-sdk/blob/main/docs/NEXTJS.md>
21
+ - Production guide: <https://github.com/Zhivex/zhivex-ai-sdk/blob/main/docs/PRODUCTION.md>
22
+
11
23
  Repository and full documentation:
12
24
 
13
25
  - <https://github.com/Zhivex/zhivex-ai-sdk>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zhivex-ai/sdk",
3
- "version": "0.7.0-rc.0",
3
+ "version": "0.7.0",
4
4
  "description": "Unified high-level SDK for multi-provider AI workflows.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -44,6 +44,6 @@
44
44
  "access": "public"
45
45
  },
46
46
  "dependencies": {
47
- "@zhivex-ai/core": "^0.8.0-rc.0"
47
+ "@zhivex-ai/core": "^0.8.0"
48
48
  }
49
49
  }