@outputai/llm 0.2.1-next.bc8ccee.0 → 0.2.1-next.c3a8722.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.
- package/package.json +4 -4
- package/src/index.d.ts +2 -2
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@outputai/llm",
|
|
3
|
-
"version": "0.2.1-next.
|
|
3
|
+
"version": "0.2.1-next.c3a8722.0",
|
|
4
4
|
"description": "Framework abstraction to interact with LLM models",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"./src"
|
|
10
10
|
],
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@ai-sdk/amazon-bedrock": "4.0.
|
|
12
|
+
"@ai-sdk/amazon-bedrock": "4.0.96",
|
|
13
13
|
"@ai-sdk/anthropic": "3.0.71",
|
|
14
14
|
"@ai-sdk/azure": "3.0.54",
|
|
15
15
|
"@ai-sdk/google-vertex": "4.0.112",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"ai": "6.0.168",
|
|
22
22
|
"decimal.js": "10.6.0",
|
|
23
23
|
"gray-matter": "4.0.3",
|
|
24
|
-
"liquidjs": "10.25.
|
|
25
|
-
"@outputai/core": "0.2.1-next.
|
|
24
|
+
"liquidjs": "10.25.7",
|
|
25
|
+
"@outputai/core": "0.2.1-next.c3a8722.0"
|
|
26
26
|
},
|
|
27
27
|
"license": "Apache-2.0",
|
|
28
28
|
"publishConfig": {
|
package/src/index.d.ts
CHANGED
|
@@ -123,8 +123,8 @@ export type {
|
|
|
123
123
|
TextStreamPart
|
|
124
124
|
} from 'ai';
|
|
125
125
|
|
|
126
|
-
// Re-export the tool helper function, Output, smoothStream,
|
|
127
|
-
export { tool, Output, smoothStream, stepCountIs, hasToolCall } from 'ai';
|
|
126
|
+
// Re-export the tool helper function, Output, smoothStream, stop condition helpers, and jsonSchema
|
|
127
|
+
export { tool, Output, smoothStream, stepCountIs, hasToolCall, jsonSchema } from 'ai';
|
|
128
128
|
|
|
129
129
|
// Web search tool factories
|
|
130
130
|
export { tavilySearch, tavilyExtract, tavilyCrawl, tavilyMap } from '@tavily/ai-sdk';
|
package/src/index.js
CHANGED
|
@@ -5,5 +5,5 @@ export { registerProvider, getRegisteredProviders } from './ai_model.js';
|
|
|
5
5
|
export { tavilySearch, tavilyExtract, tavilyCrawl, tavilyMap } from '@tavily/ai-sdk';
|
|
6
6
|
export { webSearch as exaSearch } from '@exalabs/ai-sdk';
|
|
7
7
|
export { perplexitySearch } from '@perplexity-ai/ai-sdk';
|
|
8
|
-
export { tool, Output, smoothStream, stepCountIs, hasToolCall } from 'ai';
|
|
8
|
+
export { tool, Output, smoothStream, stepCountIs, hasToolCall, jsonSchema } from 'ai';
|
|
9
9
|
export * as ai from 'ai';
|