@cuylabs/agent-core 0.8.0 → 0.9.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/dist/{builder-UpOWQMW3.d.ts → builder-BgZ_j4Vs.d.ts} +2 -1
- package/dist/{chunk-RZITT45F.js → chunk-4QFNWPIF.js} +4 -4
- package/dist/{chunk-BFM2YHNM.js → chunk-5ARZJWD2.js} +74 -37
- package/dist/{chunk-KUVSERLJ.js → chunk-DXFBQMXP.js} +5 -2
- package/dist/{chunk-CAA7FHIH.js → chunk-EKR6PKXU.js} +0 -100
- package/dist/{chunk-IVUJDISU.js → chunk-GFTW23FV.js} +5 -14
- package/dist/{chunk-7VKQ4WPB.js → chunk-H3FUYU52.js} +11 -3
- package/dist/chunk-I6PKJ7XQ.js +292 -0
- package/dist/chunk-IYWQOJMQ.js +102 -0
- package/dist/{chunk-4BDA7DQY.js → chunk-J4QDGZIA.js} +19 -3
- package/dist/{chunk-7MUFEN4K.js → chunk-JLXG2SH7.js} +349 -3
- package/dist/{chunk-YSLSEQ6B.js → chunk-MAZ5DY5B.js} +18 -30
- package/dist/{chunk-P6YF7USR.js → chunk-MHKK374K.js} +12 -11
- package/dist/{chunk-VBWWUHWI.js → chunk-OFDKHNCX.js} +4 -1
- package/dist/{chunk-YUUJK53A.js → chunk-RKEW5WXI.js} +1 -1
- package/dist/{chunk-LRHOS4ZN.js → chunk-SPILYYDF.js} +3 -2
- package/dist/{chunk-RFEKJKTO.js → chunk-UDCZ673N.js} +321 -275
- package/dist/{chunk-BDBZ3SLK.js → chunk-UHCJEM2E.js} +39 -2
- package/dist/chunk-WGZAPU6N.js +929 -0
- package/dist/{chunk-N6HWIEEA.js → chunk-WKHDSSXG.js} +140 -23
- package/dist/index-BCqEGzBj.d.ts +251 -0
- package/dist/{index-CWSchSql.d.ts → index-DQuTZ8xL.d.ts} +290 -13
- package/dist/index.d.ts +23 -29
- package/dist/index.js +776 -490
- package/dist/{errors → inference/errors}/index.d.ts +2 -2
- package/dist/{errors → inference/errors}/index.js +1 -1
- package/dist/inference/index.d.ts +10 -9
- package/dist/inference/index.js +34 -8
- package/dist/middleware/index.d.ts +5 -4
- package/dist/middleware/index.js +3 -3
- package/dist/models/index.d.ts +18 -16
- package/dist/models/index.js +47 -11
- package/dist/models/reasoning/index.d.ts +4 -0
- package/dist/{reasoning → models/reasoning}/index.js +2 -3
- package/dist/plugin/index.d.ts +414 -0
- package/dist/plugin/index.js +32 -0
- package/dist/presets/index.d.ts +3 -3
- package/dist/presets/index.js +7 -5
- package/dist/prompt/index.d.ts +6 -5
- package/dist/prompt/index.js +3 -2
- package/dist/runner-CI-XeR16.d.ts +91 -0
- package/dist/runtime/index.d.ts +7 -6
- package/dist/runtime/index.js +6 -7
- package/dist/safety/index.d.ts +1 -1
- package/dist/safety/index.js +1 -1
- package/dist/{session-manager-B_CWGTsl.d.ts → session-manager-KbYt2WUh.d.ts} +8 -0
- package/dist/signal/index.js +1 -1
- package/dist/skill/index.d.ts +2 -2
- package/dist/skill/index.js +3 -3
- package/dist/storage/index.d.ts +2 -2
- package/dist/storage/index.js +1 -1
- package/dist/sub-agent/index.d.ts +10 -9
- package/dist/sub-agent/index.js +21 -4
- package/dist/tool/index.d.ts +19 -5
- package/dist/tool/index.js +2 -2
- package/dist/{tool-BHbyUAy3.d.ts → tool-CZWN3KbO.d.ts} +1 -10
- package/dist/{tool-DLXAR9Ce.d.ts → tool-DkhSCV2Y.d.ts} +1 -1
- package/dist/tracking/index.d.ts +1 -1
- package/dist/tracking/index.js +1 -1
- package/dist/{types-KKDrdU9Y.d.ts → types-BlOKk-Bb.d.ts} +9 -4
- package/dist/{types-BnpEOYV-.d.ts → types-BlZwmnuW.d.ts} +1 -1
- package/dist/{runner-e2YRcUoX.d.ts → types-DTSkxakL.d.ts} +3 -138
- package/dist/{types-QKHHQLLq.d.ts → types-DmDwi2zI.d.ts} +7 -4
- package/package.json +15 -9
- package/dist/chunk-DWYX7ASF.js +0 -26
- package/dist/chunk-SQU2AJHO.js +0 -305
- package/dist/reasoning/index.d.ts +0 -116
- package/dist/types-QA4WhEfz.d.ts +0 -138
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { E as ErrorCategory, R as ResponseHeaders } from '
|
|
2
|
-
export { L as LLMError, a as LLMErrorOptions } from '
|
|
1
|
+
import { E as ErrorCategory, R as ResponseHeaders } from '../../llm-error-D93FNNLY.js';
|
|
2
|
+
export { L as LLMError, a as LLMErrorOptions } from '../../llm-error-D93FNNLY.js';
|
|
3
3
|
|
|
4
4
|
declare function isRetryableCategory(category: ErrorCategory): boolean;
|
|
5
5
|
declare function parseRetryDelay(headers: ResponseHeaders): number | undefined;
|
|
@@ -1,19 +1,20 @@
|
|
|
1
1
|
import { ToolSet } from 'ai';
|
|
2
|
-
import { T as Tool } from '../tool-
|
|
2
|
+
import { T as Tool } from '../tool-CZWN3KbO.js';
|
|
3
3
|
import { T as ToolHost } from '../types-CHiPh8U2.js';
|
|
4
|
-
import { M as MiddlewareRunner } from '../runner-
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
export {
|
|
4
|
+
import { M as MiddlewareRunner } from '../runner-CI-XeR16.js';
|
|
5
|
+
import { d as TurnTrackerContext } from '../tool-DkhSCV2Y.js';
|
|
6
|
+
import { T as ToolExecutionMode, I as InferenceStreamInput, A as AnyInferenceResult } from '../types-BlOKk-Bb.js';
|
|
7
|
+
export { a as AnyStreamResult, C as CustomStreamProvider, b as CustomStreamResult, D as DEFAULT_MAX_OUTPUT_TOKENS, c as DEFAULT_RETRY_CONFIG, d as InferenceCustomResult, e as InferenceStepInfo, f as InferenceStreamResult, L as LLMStreamInput, g as LLMStreamResult, O as OUTPUT_TOKEN_MAX, R as RetryConfig, h as RetryHandlerOptions, i as RetryState, S as StepInfo, j as calculateDelay, k as createRetryHandler, l as createRetryState, s as shouldRetry, m as sleep, w as withRetry } from '../types-BlOKk-Bb.js';
|
|
8
|
+
export { E as ErrorCategory, L as LLMError, a as LLMErrorOptions, R as ResponseHeaders } from '../llm-error-D93FNNLY.js';
|
|
9
|
+
export { getErrorCategory, getRetryDelay, isRetryable, isRetryableCategory, parseRetryDelay } from './errors/index.js';
|
|
10
|
+
export { S as StreamChunk } from '../types-DTSkxakL.js';
|
|
9
11
|
import 'zod';
|
|
10
|
-
import '@ai-sdk/provider-utils';
|
|
11
12
|
import '../events-CE72w8W4.js';
|
|
12
13
|
import '../messages-BYWGn8TY.js';
|
|
13
|
-
import '../types-BfNpU8NS.js';
|
|
14
14
|
import '../types-CQL-SvTn.js';
|
|
15
15
|
import '../types-CQaXbRsS.js';
|
|
16
|
-
import '
|
|
16
|
+
import '@ai-sdk/provider-utils';
|
|
17
|
+
import '../types-BfNpU8NS.js';
|
|
17
18
|
|
|
18
19
|
/**
|
|
19
20
|
* Build a Vercel AI SDK `ToolSet` from `Tool.Info` definitions.
|
package/dist/inference/index.js
CHANGED
|
@@ -1,27 +1,53 @@
|
|
|
1
1
|
import {
|
|
2
2
|
DEFAULT_MAX_OUTPUT_TOKENS,
|
|
3
|
+
DEFAULT_RETRY_CONFIG,
|
|
3
4
|
Inference,
|
|
4
5
|
LLM,
|
|
5
6
|
OUTPUT_TOKEN_MAX,
|
|
6
7
|
buildToolSet,
|
|
8
|
+
calculateDelay,
|
|
9
|
+
createRetryHandler,
|
|
10
|
+
createRetryState,
|
|
11
|
+
shouldRetry,
|
|
12
|
+
sleep,
|
|
7
13
|
stream,
|
|
8
14
|
streamOnce,
|
|
9
|
-
streamStep
|
|
10
|
-
|
|
11
|
-
|
|
15
|
+
streamStep,
|
|
16
|
+
withRetry
|
|
17
|
+
} from "../chunk-WKHDSSXG.js";
|
|
18
|
+
import "../chunk-H3FUYU52.js";
|
|
12
19
|
import "../chunk-VEKUXUVF.js";
|
|
13
|
-
import
|
|
20
|
+
import {
|
|
21
|
+
LLMError,
|
|
22
|
+
getErrorCategory,
|
|
23
|
+
getRetryDelay,
|
|
24
|
+
isRetryable,
|
|
25
|
+
isRetryableCategory,
|
|
26
|
+
parseRetryDelay
|
|
27
|
+
} from "../chunk-4QFNWPIF.js";
|
|
14
28
|
import "../chunk-N7P4PN3O.js";
|
|
15
|
-
import "../chunk-
|
|
16
|
-
import "../chunk-
|
|
17
|
-
import "../chunk-DWYX7ASF.js";
|
|
29
|
+
import "../chunk-UDCZ673N.js";
|
|
30
|
+
import "../chunk-I6PKJ7XQ.js";
|
|
18
31
|
export {
|
|
19
32
|
DEFAULT_MAX_OUTPUT_TOKENS,
|
|
33
|
+
DEFAULT_RETRY_CONFIG,
|
|
20
34
|
Inference,
|
|
21
35
|
LLM,
|
|
36
|
+
LLMError,
|
|
22
37
|
OUTPUT_TOKEN_MAX,
|
|
23
38
|
buildToolSet,
|
|
39
|
+
calculateDelay,
|
|
40
|
+
createRetryHandler,
|
|
41
|
+
createRetryState,
|
|
42
|
+
getErrorCategory,
|
|
43
|
+
getRetryDelay,
|
|
44
|
+
isRetryable,
|
|
45
|
+
isRetryableCategory,
|
|
46
|
+
parseRetryDelay,
|
|
47
|
+
shouldRetry,
|
|
48
|
+
sleep,
|
|
24
49
|
stream,
|
|
25
50
|
streamOnce,
|
|
26
|
-
streamStep
|
|
51
|
+
streamStep,
|
|
52
|
+
withRetry
|
|
27
53
|
};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { A as AgentMiddleware } from '../
|
|
2
|
-
export {
|
|
1
|
+
import { A as AgentMiddleware } from '../types-DTSkxakL.js';
|
|
2
|
+
export { g as AgentModelHooks, B as BlockedModelCall, a as ModelCallContext, M as ModelCallInput, b as ModelCallOutput, T as ToolCallDecision } from '../types-DTSkxakL.js';
|
|
3
|
+
export { M as MiddlewareRunner } from '../runner-CI-XeR16.js';
|
|
3
4
|
import { a as ApprovalConfig, R as RiskLevel } from '../types-CWm-7rvB.js';
|
|
4
5
|
import { TelemetrySettings } from 'ai';
|
|
5
6
|
import '@ai-sdk/provider-utils';
|
|
@@ -7,9 +8,9 @@ import '../events-CE72w8W4.js';
|
|
|
7
8
|
import '../messages-BYWGn8TY.js';
|
|
8
9
|
import '../types-BfNpU8NS.js';
|
|
9
10
|
import '../types-CQL-SvTn.js';
|
|
10
|
-
import '../tool-
|
|
11
|
+
import '../tool-DkhSCV2Y.js';
|
|
11
12
|
import '../types-CHiPh8U2.js';
|
|
12
|
-
import '../tool-
|
|
13
|
+
import '../tool-CZWN3KbO.js';
|
|
13
14
|
import 'zod';
|
|
14
15
|
import '../types-CQaXbRsS.js';
|
|
15
16
|
|
package/dist/middleware/index.js
CHANGED
|
@@ -4,9 +4,9 @@ import {
|
|
|
4
4
|
createTelemetryConfig,
|
|
5
5
|
otelMiddleware,
|
|
6
6
|
promptCacheMiddleware
|
|
7
|
-
} from "../chunk-
|
|
8
|
-
import "../chunk-
|
|
9
|
-
import "../chunk-
|
|
7
|
+
} from "../chunk-MAZ5DY5B.js";
|
|
8
|
+
import "../chunk-5ARZJWD2.js";
|
|
9
|
+
import "../chunk-I6PKJ7XQ.js";
|
|
10
10
|
export {
|
|
11
11
|
MiddlewareRunner,
|
|
12
12
|
approvalMiddleware,
|
package/dist/models/index.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { LanguageModel } from 'ai';
|
|
2
|
-
import { C as CapabilitySource, S as SourcePriority, b as SourceResult, P as ProviderCompatibility, R as ResolverOptions, a as ModelEntry, M as ModelCapabilities } from '../
|
|
3
|
-
export { D as DEFAULT_RESOLVER_OPTIONS, I as InputModality, O as OutputModality } from '../
|
|
2
|
+
import { C as CapabilitySource, S as SourcePriority, b as SourceResult, P as ProviderCompatibility, R as ResolverOptions, a as ModelEntry, M as ModelCapabilities } from '../index-BCqEGzBj.js';
|
|
3
|
+
export { D as DEFAULT_RESOLVER_OPTIONS, I as InputModality, O as OutputModality, c as buildAnthropicOptions, d as buildBedrockOptions, e as buildGoogleOptions, f as buildGroqOptions, g as buildOpenAIOptions, h as buildOpenRouterOptions, i as buildReasoningOptions, j as buildReasoningOptionsSync, k as buildXAIOptions, l as getProviderOptionsKey, m as getReasoningConfig, n as getReasoningConfigSync, s as supportsReasoning, o as supportsReasoningSync } from '../index-BCqEGzBj.js';
|
|
4
|
+
export { E as EXTENDED_LEVELS, F as FIXED_LEVELS, a as ReasoningConfig, R as ReasoningLevel, S as STANDARD_LEVELS, s as shouldIncludeReasoningSummary } from '../types-CQaXbRsS.js';
|
|
5
|
+
import '@ai-sdk/provider-utils';
|
|
4
6
|
|
|
5
7
|
/**
|
|
6
8
|
* Extract a model ID string from a LanguageModel instance.
|
|
@@ -10,6 +12,19 @@ declare function getModelId(model: LanguageModel): string;
|
|
|
10
12
|
* Extract a provider identifier from a LanguageModel instance.
|
|
11
13
|
*/
|
|
12
14
|
declare function getProviderId(model: LanguageModel): string | undefined;
|
|
15
|
+
/**
|
|
16
|
+
* Extract model ID from a LanguageModel.
|
|
17
|
+
*
|
|
18
|
+
* Canonical helper — use this instead of `getModelId` in consumer code.
|
|
19
|
+
*/
|
|
20
|
+
declare const extractModelId: (model: LanguageModel) => string;
|
|
21
|
+
/**
|
|
22
|
+
* Extract provider from a LanguageModel.
|
|
23
|
+
*
|
|
24
|
+
* Tries the model's `.provider` property first, then falls back
|
|
25
|
+
* to pattern-matching the model ID via `inferProvider`.
|
|
26
|
+
*/
|
|
27
|
+
declare function extractProvider(model: LanguageModel): string | undefined;
|
|
13
28
|
|
|
14
29
|
type AdapterKind = "openai" | "anthropic" | "google" | "openai-compatible" | "openrouter" | "azure" | "bedrock" | "vertex" | "xai" | "mistral" | "groq";
|
|
15
30
|
type AdapterSettings = {
|
|
@@ -33,11 +48,6 @@ type Directory = {
|
|
|
33
48
|
entries?: Record<string, ModelSpec>;
|
|
34
49
|
};
|
|
35
50
|
type Resolver = (key: string) => Promise<LanguageModel>;
|
|
36
|
-
/**
|
|
37
|
-
* @deprecated Use `Resolver` (async) instead. Kept for backwards compatibility
|
|
38
|
-
* with custom `build` functions that return synchronously.
|
|
39
|
-
*/
|
|
40
|
-
type SyncResolver = (key: string) => LanguageModel;
|
|
41
51
|
declare function createResolver(directory: Directory): Resolver;
|
|
42
52
|
|
|
43
53
|
/**
|
|
@@ -158,14 +168,6 @@ declare class RemoteCapabilitySource implements CapabilitySource {
|
|
|
158
168
|
* Designed for the Vercel AI SDK v6 ecosystem.
|
|
159
169
|
*/
|
|
160
170
|
|
|
161
|
-
/**
|
|
162
|
-
* Extract model ID from LanguageModel
|
|
163
|
-
*/
|
|
164
|
-
declare function extractModelId(model: LanguageModel): string;
|
|
165
|
-
/**
|
|
166
|
-
* Extract provider from LanguageModel
|
|
167
|
-
*/
|
|
168
|
-
declare function extractProvider(model: LanguageModel): string | undefined;
|
|
169
171
|
/**
|
|
170
172
|
* Resolution result with source information
|
|
171
173
|
*/
|
|
@@ -253,4 +255,4 @@ declare function getDefaultResolver(): ModelCapabilityResolver;
|
|
|
253
255
|
*/
|
|
254
256
|
declare function configureResolver(options: Partial<ResolverOptions>): void;
|
|
255
257
|
|
|
256
|
-
export { type AdapterSettings, CacheCapabilitySource, CapabilityCache, type CapabilityOverrides, CapabilitySource, type Directory, type EngineSpec, ModelCapabilities, ModelCapabilityResolver, ModelEntry, type ModelSpec, type NetworkStatus, PatternCapabilitySource, ProviderCompatibility, RemoteCapabilityFetcher, RemoteCapabilitySource, type ResolutionResult, type Resolver, ResolverOptions, SourcePriority, SourceResult,
|
|
258
|
+
export { type AdapterSettings, CacheCapabilitySource, CapabilityCache, type CapabilityOverrides, CapabilitySource, type Directory, type EngineSpec, ModelCapabilities, ModelCapabilityResolver, ModelEntry, type ModelSpec, type NetworkStatus, PatternCapabilitySource, ProviderCompatibility, RemoteCapabilityFetcher, RemoteCapabilitySource, type ResolutionResult, type Resolver, ResolverOptions, SourcePriority, SourceResult, applyCapabilityOverride, configureResolver, createResolver, extractModelId, extractProvider, findCapabilityOverride, getDefaultResolver, getModelId, getNetworkStatus, getProviderCompatibility, getProviderId, inferContextWindow, inferProvider, likelySupportsReasoning };
|
package/dist/models/index.js
CHANGED
|
@@ -1,39 +1,69 @@
|
|
|
1
1
|
import {
|
|
2
2
|
CacheCapabilitySource,
|
|
3
3
|
CapabilityCache,
|
|
4
|
-
|
|
4
|
+
EXTENDED_LEVELS,
|
|
5
|
+
FIXED_LEVELS,
|
|
5
6
|
ModelCapabilityResolver,
|
|
6
|
-
PatternCapabilitySource,
|
|
7
7
|
RemoteCapabilityFetcher,
|
|
8
8
|
RemoteCapabilitySource,
|
|
9
|
-
|
|
9
|
+
STANDARD_LEVELS,
|
|
10
10
|
applyCapabilityOverride,
|
|
11
|
+
buildAnthropicOptions,
|
|
12
|
+
buildBedrockOptions,
|
|
13
|
+
buildGoogleOptions,
|
|
14
|
+
buildGroqOptions,
|
|
15
|
+
buildOpenAIOptions,
|
|
16
|
+
buildOpenRouterOptions,
|
|
17
|
+
buildReasoningOptions,
|
|
18
|
+
buildReasoningOptionsSync,
|
|
19
|
+
buildXAIOptions,
|
|
11
20
|
configureResolver,
|
|
12
21
|
createResolver,
|
|
13
|
-
extractModelId,
|
|
14
|
-
extractProvider,
|
|
15
22
|
findCapabilityOverride,
|
|
16
23
|
getDefaultResolver,
|
|
17
24
|
getNetworkStatus,
|
|
25
|
+
getProviderOptionsKey,
|
|
26
|
+
getReasoningConfig,
|
|
27
|
+
getReasoningConfigSync,
|
|
28
|
+
shouldIncludeReasoningSummary,
|
|
29
|
+
supportsReasoning,
|
|
30
|
+
supportsReasoningSync
|
|
31
|
+
} from "../chunk-UDCZ673N.js";
|
|
32
|
+
import {
|
|
33
|
+
DEFAULT_RESOLVER_OPTIONS,
|
|
34
|
+
PatternCapabilitySource,
|
|
35
|
+
SourcePriority,
|
|
36
|
+
extractModelId,
|
|
37
|
+
extractProvider,
|
|
38
|
+
getModelId,
|
|
18
39
|
getProviderCompatibility,
|
|
40
|
+
getProviderId,
|
|
19
41
|
inferContextWindow,
|
|
20
42
|
inferProvider,
|
|
21
43
|
likelySupportsReasoning
|
|
22
|
-
} from "../chunk-
|
|
23
|
-
import {
|
|
24
|
-
getModelId,
|
|
25
|
-
getProviderId
|
|
26
|
-
} from "../chunk-DWYX7ASF.js";
|
|
44
|
+
} from "../chunk-I6PKJ7XQ.js";
|
|
27
45
|
export {
|
|
28
46
|
CacheCapabilitySource,
|
|
29
47
|
CapabilityCache,
|
|
30
48
|
DEFAULT_RESOLVER_OPTIONS,
|
|
49
|
+
EXTENDED_LEVELS,
|
|
50
|
+
FIXED_LEVELS,
|
|
31
51
|
ModelCapabilityResolver,
|
|
32
52
|
PatternCapabilitySource,
|
|
33
53
|
RemoteCapabilityFetcher,
|
|
34
54
|
RemoteCapabilitySource,
|
|
55
|
+
STANDARD_LEVELS,
|
|
35
56
|
SourcePriority,
|
|
36
57
|
applyCapabilityOverride,
|
|
58
|
+
buildAnthropicOptions,
|
|
59
|
+
buildBedrockOptions,
|
|
60
|
+
buildGoogleOptions,
|
|
61
|
+
buildGroqOptions,
|
|
62
|
+
buildOpenAIOptions,
|
|
63
|
+
buildOpenRouterOptions,
|
|
64
|
+
buildReasoningOptions,
|
|
65
|
+
buildReasoningOptionsSync,
|
|
66
|
+
buildXAIOptions,
|
|
37
67
|
configureResolver,
|
|
38
68
|
createResolver,
|
|
39
69
|
extractModelId,
|
|
@@ -44,7 +74,13 @@ export {
|
|
|
44
74
|
getNetworkStatus,
|
|
45
75
|
getProviderCompatibility,
|
|
46
76
|
getProviderId,
|
|
77
|
+
getProviderOptionsKey,
|
|
78
|
+
getReasoningConfig,
|
|
79
|
+
getReasoningConfigSync,
|
|
47
80
|
inferContextWindow,
|
|
48
81
|
inferProvider,
|
|
49
|
-
likelySupportsReasoning
|
|
82
|
+
likelySupportsReasoning,
|
|
83
|
+
shouldIncludeReasoningSummary,
|
|
84
|
+
supportsReasoning,
|
|
85
|
+
supportsReasoningSync
|
|
50
86
|
};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export { E as EXTENDED_LEVELS, F as FIXED_LEVELS, a as ReasoningConfig, R as ReasoningLevel, S as STANDARD_LEVELS, s as shouldIncludeReasoningSummary } from '../../types-CQaXbRsS.js';
|
|
2
|
+
export { c as buildAnthropicOptions, d as buildBedrockOptions, e as buildGoogleOptions, f as buildGroqOptions, g as buildOpenAIOptions, h as buildOpenRouterOptions, i as buildReasoningOptions, j as buildReasoningOptionsSync, k as buildXAIOptions, l as getProviderOptionsKey, m as getReasoningConfig, n as getReasoningConfigSync, s as supportsReasoning, o as supportsReasoningSync } from '../../index-BCqEGzBj.js';
|
|
3
|
+
import 'ai';
|
|
4
|
+
import '@ai-sdk/provider-utils';
|
|
@@ -17,9 +17,8 @@ import {
|
|
|
17
17
|
shouldIncludeReasoningSummary,
|
|
18
18
|
supportsReasoning,
|
|
19
19
|
supportsReasoningSync
|
|
20
|
-
} from "
|
|
21
|
-
import "
|
|
22
|
-
import "../chunk-DWYX7ASF.js";
|
|
20
|
+
} from "../../chunk-UDCZ673N.js";
|
|
21
|
+
import "../../chunk-I6PKJ7XQ.js";
|
|
23
22
|
export {
|
|
24
23
|
EXTENDED_LEVELS,
|
|
25
24
|
FIXED_LEVELS,
|