@providerprotocol/ai 0.0.13 → 0.0.15
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/dist/anthropic/index.d.ts +427 -2
- package/dist/anthropic/index.js +142 -13
- package/dist/anthropic/index.js.map +1 -1
- package/dist/google/index.d.ts +480 -7
- package/dist/google/index.js +104 -26
- package/dist/google/index.js.map +1 -1
- package/dist/http/index.d.ts +2 -2
- package/dist/index.d.ts +7 -5
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/ollama/index.d.ts +1 -1
- package/dist/ollama/index.js +14 -0
- package/dist/ollama/index.js.map +1 -1
- package/dist/openai/index.d.ts +1 -1
- package/dist/openai/index.js +48 -16
- package/dist/openai/index.js.map +1 -1
- package/dist/openrouter/index.d.ts +1 -1
- package/dist/openrouter/index.js +48 -16
- package/dist/openrouter/index.js.map +1 -1
- package/dist/{provider-mKkz7Q9U.d.ts → provider-Bi0nyNhA.d.ts} +17 -0
- package/dist/{retry-Dh70lgr0.d.ts → retry-BatS2hjD.d.ts} +1 -1
- package/dist/xai/index.d.ts +368 -6
- package/dist/xai/index.js +121 -26
- package/dist/xai/index.js.map +1 -1
- package/package.json +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@providerprotocol/ai",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.15",
|
|
4
4
|
"description": "UPP: Unified Provider Protocol for AI inference",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://providerprotocol.org",
|
|
@@ -64,9 +64,10 @@
|
|
|
64
64
|
"test:unit": "bun test tests/unit",
|
|
65
65
|
"test:live": "bun test tests/live",
|
|
66
66
|
"typecheck": "tsc --noEmit",
|
|
67
|
-
"docgen": "
|
|
67
|
+
"docgen": "bun run scripts/docgen.ts",
|
|
68
68
|
"docs:sort": "bun run scripts/sort-docs.ts",
|
|
69
|
-
"docs": "bun run docgen && bun run docs:sort"
|
|
69
|
+
"docs": "bun run docgen && bun run docs:sort",
|
|
70
|
+
"docs:deploy": "bun run docs && rm -rf ../UPP-1/docs/src/content/docs/ai && cp -r docs-sorted ../UPP-1/docs/src/content/docs/ai && rm -rf ../UPP-1/docs/.astro ../UPP-1/docs/node_modules/.astro"
|
|
70
71
|
},
|
|
71
72
|
"publishConfig": {
|
|
72
73
|
"access": "public"
|