@orpc/ai-sdk 0.0.0-next.f9e5dec → 0.0.0-next.fc2dc8f

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 CHANGED
@@ -1,5 +1,5 @@
1
1
  <div align="center">
2
- <image align="center" src="https://orpc.unnoq.com/logo.webp" width=280 alt="oRPC logo" />
2
+ <image align="center" src="https://orpc.dev/logo.webp" width=280 alt="oRPC logo" />
3
3
  </div>
4
4
 
5
5
  <h1></h1>
@@ -45,7 +45,7 @@
45
45
 
46
46
  ## Documentation
47
47
 
48
- You can find the full documentation [here](https://orpc.unnoq.com).
48
+ You can find the full documentation [here](https://orpc.dev).
49
49
 
50
50
  ## Packages
51
51
 
package/dist/index.d.mts CHANGED
@@ -12,11 +12,11 @@ interface AiSdkToolMeta extends Meta {
12
12
  declare class CreateToolError extends Error {
13
13
  }
14
14
  /**
15
- * Implements [procedure contract](https://orpc.unnoq.com/docs/contract-first/define-contract#procedure-contract)
15
+ * Implements [procedure contract](https://orpc.dev/docs/contract-first/define-contract#procedure-contract)
16
16
  * as an [AI SDK Tool](https://ai-sdk.dev/docs/foundations/tools) by leveraging existing contract definitions.
17
17
  *
18
18
  * @warning Requires a contract with an `input` schema defined.
19
- * @info Standard [procedures](https://orpc.unnoq.com/docs/procedure) are also compatible with [procedure contracts](https://orpc.unnoq.com/docs/contract-first/define-contract).
19
+ * @info Standard [procedures](https://orpc.dev/docs/procedure) are also compatible with [procedure contracts](https://orpc.dev/docs/contract-first/define-contract).
20
20
  *
21
21
  * @example
22
22
  * ```ts
@@ -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
- * name: 'custom-tool-name', // AI SDK tool name
37
+ * title: 'Get Weather', // AI SDK tool title
38
38
  * },
39
39
  * })
40
40
  * .route({
@@ -62,7 +62,7 @@ declare class CreateToolError extends Error {
62
62
  */
63
63
  declare function implementTool<TOutInput, TInOutput>(contract: ContractProcedure<Schema<any, TOutInput>, Schema<TInOutput, any>, any, AiSdkToolMeta>, ...rest: MaybeOptionalOptions<SetOptional<Tool<TOutInput, TInOutput>, 'inputSchema' | 'outputSchema'>>): Tool<TOutInput, TInOutput>;
64
64
  /**
65
- * Converts a [procedure](https://orpc.unnoq.com/docs/procedure) into an [AI SDK Tool](https://ai-sdk.dev/docs/foundations/tools)
65
+ * Converts a [procedure](https://orpc.dev/docs/procedure) into an [AI SDK Tool](https://ai-sdk.dev/docs/foundations/tools)
66
66
  * by leveraging existing procedure definitions.
67
67
  *
68
68
  * @warning Requires a contract with an `input` schema defined.
@@ -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
- * name: 'custom-tool-name', // AI SDK tool name
86
+ * title: 'Get Weather', // AI SDK tool title
87
87
  * },
88
88
  * })
89
89
  * .route({
package/dist/index.d.ts CHANGED
@@ -12,11 +12,11 @@ interface AiSdkToolMeta extends Meta {
12
12
  declare class CreateToolError extends Error {
13
13
  }
14
14
  /**
15
- * Implements [procedure contract](https://orpc.unnoq.com/docs/contract-first/define-contract#procedure-contract)
15
+ * Implements [procedure contract](https://orpc.dev/docs/contract-first/define-contract#procedure-contract)
16
16
  * as an [AI SDK Tool](https://ai-sdk.dev/docs/foundations/tools) by leveraging existing contract definitions.
17
17
  *
18
18
  * @warning Requires a contract with an `input` schema defined.
19
- * @info Standard [procedures](https://orpc.unnoq.com/docs/procedure) are also compatible with [procedure contracts](https://orpc.unnoq.com/docs/contract-first/define-contract).
19
+ * @info Standard [procedures](https://orpc.dev/docs/procedure) are also compatible with [procedure contracts](https://orpc.dev/docs/contract-first/define-contract).
20
20
  *
21
21
  * @example
22
22
  * ```ts
@@ -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
- * name: 'custom-tool-name', // AI SDK tool name
37
+ * title: 'Get Weather', // AI SDK tool title
38
38
  * },
39
39
  * })
40
40
  * .route({
@@ -62,7 +62,7 @@ declare class CreateToolError extends Error {
62
62
  */
63
63
  declare function implementTool<TOutInput, TInOutput>(contract: ContractProcedure<Schema<any, TOutInput>, Schema<TInOutput, any>, any, AiSdkToolMeta>, ...rest: MaybeOptionalOptions<SetOptional<Tool<TOutInput, TInOutput>, 'inputSchema' | 'outputSchema'>>): Tool<TOutInput, TInOutput>;
64
64
  /**
65
- * Converts a [procedure](https://orpc.unnoq.com/docs/procedure) into an [AI SDK Tool](https://ai-sdk.dev/docs/foundations/tools)
65
+ * Converts a [procedure](https://orpc.dev/docs/procedure) into an [AI SDK Tool](https://ai-sdk.dev/docs/foundations/tools)
66
66
  * by leveraging existing procedure definitions.
67
67
  *
68
68
  * @warning Requires a contract with an `input` schema defined.
@@ -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
- * name: 'custom-tool-name', // AI SDK tool name
86
+ * title: 'Get Weather', // AI SDK tool title
87
87
  * },
88
88
  * })
89
89
  * .route({
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@orpc/ai-sdk",
3
3
  "type": "module",
4
- "version": "0.0.0-next.f9e5dec",
4
+ "version": "0.0.0-next.fc2dc8f",
5
5
  "license": "MIT",
6
- "homepage": "https://orpc.unnoq.com",
6
+ "homepage": "https://orpc.dev",
7
7
  "repository": {
8
8
  "type": "git",
9
9
  "url": "git+https://github.com/unnoq/orpc.git",
@@ -27,14 +27,14 @@
27
27
  "ai": ">=5.0.76"
28
28
  },
29
29
  "dependencies": {
30
- "@orpc/client": "0.0.0-next.f9e5dec",
31
- "@orpc/shared": "0.0.0-next.f9e5dec",
32
- "@orpc/server": "0.0.0-next.f9e5dec",
33
- "@orpc/contract": "0.0.0-next.f9e5dec"
30
+ "@orpc/client": "0.0.0-next.fc2dc8f",
31
+ "@orpc/shared": "0.0.0-next.fc2dc8f",
32
+ "@orpc/server": "0.0.0-next.fc2dc8f",
33
+ "@orpc/contract": "0.0.0-next.fc2dc8f"
34
34
  },
35
35
  "devDependencies": {
36
- "ai": "6.0.0-beta.85",
37
- "zod": "^4.1.12"
36
+ "ai": "^6.0.3",
37
+ "zod": "^4.2.1"
38
38
  },
39
39
  "scripts": {
40
40
  "build": "unbuild",