@orpc/ai-sdk 0.0.0-next.cc1a1aa → 0.0.0-next.d7ee74c
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/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +7 -7
package/dist/index.d.mts
CHANGED
|
@@ -34,7 +34,7 @@ declare class CreateToolError extends Error {
|
|
|
34
34
|
* const getWeatherContract = base
|
|
35
35
|
* .meta({
|
|
36
36
|
* [AI_SDK_TOOL_META_SYMBOL]: {
|
|
37
|
-
*
|
|
37
|
+
* title: 'Get Weather', // AI SDK tool title
|
|
38
38
|
* },
|
|
39
39
|
* })
|
|
40
40
|
* .route({
|
|
@@ -83,7 +83,7 @@ declare function implementTool<TOutInput, TInOutput>(contract: ContractProcedure
|
|
|
83
83
|
* const getWeatherProcedure = base
|
|
84
84
|
* .meta({
|
|
85
85
|
* [AI_SDK_TOOL_META_SYMBOL]: {
|
|
86
|
-
*
|
|
86
|
+
* title: 'Get Weather', // AI SDK tool title
|
|
87
87
|
* },
|
|
88
88
|
* })
|
|
89
89
|
* .route({
|
package/dist/index.d.ts
CHANGED
|
@@ -34,7 +34,7 @@ declare class CreateToolError extends Error {
|
|
|
34
34
|
* const getWeatherContract = base
|
|
35
35
|
* .meta({
|
|
36
36
|
* [AI_SDK_TOOL_META_SYMBOL]: {
|
|
37
|
-
*
|
|
37
|
+
* title: 'Get Weather', // AI SDK tool title
|
|
38
38
|
* },
|
|
39
39
|
* })
|
|
40
40
|
* .route({
|
|
@@ -83,7 +83,7 @@ declare function implementTool<TOutInput, TInOutput>(contract: ContractProcedure
|
|
|
83
83
|
* const getWeatherProcedure = base
|
|
84
84
|
* .meta({
|
|
85
85
|
* [AI_SDK_TOOL_META_SYMBOL]: {
|
|
86
|
-
*
|
|
86
|
+
* title: 'Get Weather', // AI SDK tool title
|
|
87
87
|
* },
|
|
88
88
|
* })
|
|
89
89
|
* .route({
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orpc/ai-sdk",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.0-next.
|
|
4
|
+
"version": "0.0.0-next.d7ee74c",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://orpc.dev",
|
|
7
7
|
"repository": {
|
|
@@ -27,14 +27,14 @@
|
|
|
27
27
|
"ai": ">=5.0.76"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@orpc/
|
|
31
|
-
"@orpc/
|
|
32
|
-
"@orpc/shared": "0.0.0-next.
|
|
33
|
-
"@orpc/
|
|
30
|
+
"@orpc/contract": "0.0.0-next.d7ee74c",
|
|
31
|
+
"@orpc/client": "0.0.0-next.d7ee74c",
|
|
32
|
+
"@orpc/shared": "0.0.0-next.d7ee74c",
|
|
33
|
+
"@orpc/server": "0.0.0-next.d7ee74c"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"ai": "6.0.
|
|
37
|
-
"zod": "^4.1
|
|
36
|
+
"ai": "^6.0.3",
|
|
37
|
+
"zod": "^4.2.1"
|
|
38
38
|
},
|
|
39
39
|
"scripts": {
|
|
40
40
|
"build": "unbuild",
|