@inkeep/ai-sdk-provider 0.0.0-dev-20251222193909 → 0.0.0-dev-20251222215156
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/convert-to-inkeep-messages.cjs +82 -0
- package/dist/convert-to-inkeep-messages.d.cts +7 -0
- package/dist/convert-to-inkeep-messages.d.ts +7 -0
- package/dist/convert-to-inkeep-messages.js +81 -0
- package/dist/get-response-metadata.cjs +12 -0
- package/dist/get-response-metadata.d.cts +10 -0
- package/dist/get-response-metadata.d.ts +10 -0
- package/dist/get-response-metadata.js +11 -0
- package/dist/index.cjs +5 -3511
- package/dist/index.d.cts +6 -197
- package/dist/index.d.ts +6 -198
- package/dist/index.js +3 -3510
- package/dist/inkeep-chat-language-model.cjs +270 -0
- package/dist/inkeep-chat-language-model.d.cts +81 -0
- package/dist/inkeep-chat-language-model.d.ts +81 -0
- package/dist/inkeep-chat-language-model.js +269 -0
- package/dist/inkeep-chat-options.cjs +0 -0
- package/dist/inkeep-chat-options.d.cts +8 -0
- package/dist/inkeep-chat-options.d.ts +8 -0
- package/dist/inkeep-chat-options.js +1 -0
- package/dist/inkeep-chat-prompt.cjs +0 -0
- package/dist/inkeep-chat-prompt.d.cts +84 -0
- package/dist/inkeep-chat-prompt.d.ts +84 -0
- package/dist/inkeep-chat-prompt.js +1 -0
- package/dist/inkeep-error.cjs +20 -0
- package/dist/inkeep-error.d.cts +18 -0
- package/dist/inkeep-error.d.ts +18 -0
- package/dist/inkeep-error.js +20 -0
- package/dist/inkeep-provider.cjs +35 -0
- package/dist/inkeep-provider.d.cts +18 -0
- package/dist/inkeep-provider.d.ts +18 -0
- package/dist/inkeep-provider.js +34 -0
- package/dist/map-inkeep-finish-reason.cjs +15 -0
- package/dist/map-inkeep-finish-reason.d.cts +7 -0
- package/dist/map-inkeep-finish-reason.d.ts +7 -0
- package/dist/map-inkeep-finish-reason.js +14 -0
- package/package.json +4 -3
- package/dist/index.d.cts.map +0 -1
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js.map +0 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,197 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
content: string | Array<{
|
|
8
|
-
type: string;
|
|
9
|
-
text?: string;
|
|
10
|
-
}>;
|
|
11
|
-
name?: string;
|
|
12
|
-
}
|
|
13
|
-
interface InkeepChatRequest {
|
|
14
|
-
model: string;
|
|
15
|
-
messages: Array<InkeepChatMessage>;
|
|
16
|
-
temperature?: number;
|
|
17
|
-
top_p?: number;
|
|
18
|
-
n?: number;
|
|
19
|
-
stream?: boolean;
|
|
20
|
-
max_tokens?: number;
|
|
21
|
-
presence_penalty?: number;
|
|
22
|
-
frequency_penalty?: number;
|
|
23
|
-
logit_bias?: Record<string, number>;
|
|
24
|
-
user?: string;
|
|
25
|
-
conversationId?: string;
|
|
26
|
-
tools?: Array<string>;
|
|
27
|
-
runConfig?: Record<string, unknown>;
|
|
28
|
-
headers?: Record<string, unknown>;
|
|
29
|
-
}
|
|
30
|
-
interface InkeepChatCompletionChunk {
|
|
31
|
-
id: string;
|
|
32
|
-
object: 'chat.completion.chunk';
|
|
33
|
-
created: number;
|
|
34
|
-
model?: string;
|
|
35
|
-
choices: Array<{
|
|
36
|
-
index: number;
|
|
37
|
-
delta: {
|
|
38
|
-
role?: 'assistant';
|
|
39
|
-
content?: string;
|
|
40
|
-
tool_calls?: Array<{
|
|
41
|
-
index: number;
|
|
42
|
-
id?: string;
|
|
43
|
-
type: 'function';
|
|
44
|
-
function: {
|
|
45
|
-
name?: string;
|
|
46
|
-
arguments?: string;
|
|
47
|
-
};
|
|
48
|
-
}>;
|
|
49
|
-
};
|
|
50
|
-
finish_reason: string | null;
|
|
51
|
-
}>;
|
|
52
|
-
usage?: {
|
|
53
|
-
prompt_tokens?: number;
|
|
54
|
-
completion_tokens?: number;
|
|
55
|
-
total_tokens?: number;
|
|
56
|
-
};
|
|
57
|
-
}
|
|
58
|
-
interface InkeepChatCompletion {
|
|
59
|
-
id: string;
|
|
60
|
-
object: 'chat.completion';
|
|
61
|
-
created: number;
|
|
62
|
-
model?: string;
|
|
63
|
-
choices: Array<{
|
|
64
|
-
index: number;
|
|
65
|
-
message: {
|
|
66
|
-
role: 'assistant';
|
|
67
|
-
content: string;
|
|
68
|
-
tool_calls?: Array<{
|
|
69
|
-
id: string;
|
|
70
|
-
type: 'function';
|
|
71
|
-
function: {
|
|
72
|
-
name: string;
|
|
73
|
-
arguments: string;
|
|
74
|
-
};
|
|
75
|
-
}>;
|
|
76
|
-
};
|
|
77
|
-
finish_reason: string;
|
|
78
|
-
}>;
|
|
79
|
-
usage?: {
|
|
80
|
-
prompt_tokens?: number;
|
|
81
|
-
completion_tokens?: number;
|
|
82
|
-
total_tokens?: number;
|
|
83
|
-
};
|
|
84
|
-
}
|
|
85
|
-
type InkeepFinishReason = 'stop' | 'length' | 'tool_calls' | 'content_filter' | null;
|
|
86
|
-
//#endregion
|
|
87
|
-
//#region src/inkeep-chat-options.d.ts
|
|
88
|
-
interface InkeepChatOptions {
|
|
89
|
-
conversationId?: string;
|
|
90
|
-
runConfig?: Record<string, unknown>;
|
|
91
|
-
headers?: Record<string, unknown>;
|
|
92
|
-
}
|
|
93
|
-
//#endregion
|
|
94
|
-
//#region src/inkeep-chat-language-model.d.ts
|
|
95
|
-
interface InkeepChatConfig {
|
|
96
|
-
provider: string;
|
|
97
|
-
baseURL: string;
|
|
98
|
-
headers: () => Record<string, string | undefined>;
|
|
99
|
-
fetch?: typeof fetch;
|
|
100
|
-
}
|
|
101
|
-
/**
|
|
102
|
-
* Converts data-operation events to AI SDK tool events (tool-call or tool-result).
|
|
103
|
-
*
|
|
104
|
-
* Handles:
|
|
105
|
-
* - tool_call: Direct tool invocation (tool-call)
|
|
106
|
-
* - tool_result: Direct tool result (tool-result)
|
|
107
|
-
* - transfer: Agent transfers control to another agent (tool-call)
|
|
108
|
-
* - delegation_sent: Agent delegates a task to another agent (tool-call)
|
|
109
|
-
* - delegation_returned: Delegated task completes and returns (tool-result)
|
|
110
|
-
*/
|
|
111
|
-
|
|
112
|
-
declare class InkeepChatLanguageModel implements LanguageModelV2 {
|
|
113
|
-
readonly specificationVersion: "v2";
|
|
114
|
-
readonly defaultObjectGenerationMode: undefined;
|
|
115
|
-
readonly supportsImageUrls = false;
|
|
116
|
-
readonly supportedUrls: {};
|
|
117
|
-
readonly modelId: string;
|
|
118
|
-
readonly options: InkeepChatOptions;
|
|
119
|
-
readonly config: InkeepChatConfig;
|
|
120
|
-
get provider(): string;
|
|
121
|
-
constructor(options: InkeepChatOptions, config: InkeepChatConfig);
|
|
122
|
-
private getArgs;
|
|
123
|
-
doGenerate(options: LanguageModelV2CallOptions): Promise<{
|
|
124
|
-
content: LanguageModelV2Content[];
|
|
125
|
-
finishReason: LanguageModelV2FinishReason;
|
|
126
|
-
usage: {
|
|
127
|
-
promptTokens: number;
|
|
128
|
-
completionTokens: number;
|
|
129
|
-
inputTokens: number;
|
|
130
|
-
outputTokens: number;
|
|
131
|
-
totalTokens: number;
|
|
132
|
-
};
|
|
133
|
-
rawCall: {
|
|
134
|
-
rawPrompt: InkeepChatMessage[];
|
|
135
|
-
rawSettings: {
|
|
136
|
-
messages: InkeepChatMessage[];
|
|
137
|
-
conversationId: string | undefined;
|
|
138
|
-
headers: Record<string, unknown> | undefined;
|
|
139
|
-
runConfig: Record<string, unknown> | undefined;
|
|
140
|
-
};
|
|
141
|
-
};
|
|
142
|
-
rawResponse: {
|
|
143
|
-
headers: Record<string, string> | undefined;
|
|
144
|
-
};
|
|
145
|
-
response: {
|
|
146
|
-
id: string;
|
|
147
|
-
modelId: string | undefined;
|
|
148
|
-
timestamp: Date;
|
|
149
|
-
};
|
|
150
|
-
warnings: LanguageModelV2CallWarning[];
|
|
151
|
-
}>;
|
|
152
|
-
doStream(options: LanguageModelV2CallOptions): Promise<{
|
|
153
|
-
stream: ReadableStream<LanguageModelV2StreamPart>;
|
|
154
|
-
rawCall: {
|
|
155
|
-
rawPrompt: InkeepChatMessage[];
|
|
156
|
-
rawSettings: {
|
|
157
|
-
messages: InkeepChatMessage[];
|
|
158
|
-
conversationId: string | undefined;
|
|
159
|
-
headers: Record<string, unknown> | undefined;
|
|
160
|
-
runConfig: Record<string, unknown> | undefined;
|
|
161
|
-
};
|
|
162
|
-
};
|
|
163
|
-
rawResponse: {
|
|
164
|
-
headers: Record<string, string> | undefined;
|
|
165
|
-
};
|
|
166
|
-
warnings: LanguageModelV2CallWarning[];
|
|
167
|
-
}>;
|
|
168
|
-
}
|
|
169
|
-
//#endregion
|
|
170
|
-
//#region src/inkeep-error.d.ts
|
|
171
|
-
declare const inkeepErrorDataSchema: z.ZodObject<{
|
|
172
|
-
error: z.ZodString;
|
|
173
|
-
message: z.ZodOptional<z.ZodString>;
|
|
174
|
-
details: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
175
|
-
field: z.ZodString;
|
|
176
|
-
message: z.ZodString;
|
|
177
|
-
value: z.ZodOptional<z.ZodUnknown>;
|
|
178
|
-
}, z.core.$strip>>>;
|
|
179
|
-
}, z.core.$strip>;
|
|
180
|
-
type InkeepErrorData = z.infer<typeof inkeepErrorDataSchema>;
|
|
181
|
-
//#endregion
|
|
182
|
-
//#region src/inkeep-provider.d.ts
|
|
183
|
-
interface InkeepProvider {
|
|
184
|
-
(options?: InkeepChatOptions): InkeepChatLanguageModel;
|
|
185
|
-
languageModel(options?: InkeepChatOptions): InkeepChatLanguageModel;
|
|
186
|
-
}
|
|
187
|
-
interface InkeepProviderSettings {
|
|
188
|
-
baseURL?: string;
|
|
189
|
-
apiKey?: string;
|
|
190
|
-
headers?: Record<string, string>;
|
|
191
|
-
fetch?: typeof fetch;
|
|
192
|
-
}
|
|
193
|
-
declare function createInkeep(options?: InkeepProviderSettings): InkeepProvider;
|
|
194
|
-
declare const inkeep: InkeepProvider;
|
|
195
|
-
//#endregion
|
|
196
|
-
export { type InkeepChatCompletion, type InkeepChatCompletionChunk, InkeepChatLanguageModel, type InkeepChatMessage, type InkeepChatOptions, type InkeepChatRequest, type InkeepErrorData, type InkeepFinishReason, type InkeepProvider, type InkeepProviderSettings, createInkeep, inkeep };
|
|
197
|
-
//# sourceMappingURL=index.d.cts.map
|
|
1
|
+
import { InkeepChatCompletion, InkeepChatCompletionChunk, InkeepChatMessage, InkeepChatRequest, InkeepFinishReason } from "./inkeep-chat-prompt.cjs";
|
|
2
|
+
import { InkeepChatOptions } from "./inkeep-chat-options.cjs";
|
|
3
|
+
import { InkeepChatLanguageModel } from "./inkeep-chat-language-model.cjs";
|
|
4
|
+
import { InkeepErrorData } from "./inkeep-error.cjs";
|
|
5
|
+
import { InkeepProvider, InkeepProviderSettings, createInkeep, inkeep } from "./inkeep-provider.cjs";
|
|
6
|
+
export { type InkeepChatCompletion, type InkeepChatCompletionChunk, InkeepChatLanguageModel, type InkeepChatMessage, type InkeepChatOptions, type InkeepChatRequest, type InkeepErrorData, type InkeepFinishReason, type InkeepProvider, type InkeepProviderSettings, createInkeep, inkeep };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,198 +1,6 @@
|
|
|
1
|
-
import "
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
role: 'system' | 'user' | 'assistant' | 'function' | 'tool';
|
|
8
|
-
content: string | Array<{
|
|
9
|
-
type: string;
|
|
10
|
-
text?: string;
|
|
11
|
-
}>;
|
|
12
|
-
name?: string;
|
|
13
|
-
}
|
|
14
|
-
interface InkeepChatRequest {
|
|
15
|
-
model: string;
|
|
16
|
-
messages: Array<InkeepChatMessage>;
|
|
17
|
-
temperature?: number;
|
|
18
|
-
top_p?: number;
|
|
19
|
-
n?: number;
|
|
20
|
-
stream?: boolean;
|
|
21
|
-
max_tokens?: number;
|
|
22
|
-
presence_penalty?: number;
|
|
23
|
-
frequency_penalty?: number;
|
|
24
|
-
logit_bias?: Record<string, number>;
|
|
25
|
-
user?: string;
|
|
26
|
-
conversationId?: string;
|
|
27
|
-
tools?: Array<string>;
|
|
28
|
-
runConfig?: Record<string, unknown>;
|
|
29
|
-
headers?: Record<string, unknown>;
|
|
30
|
-
}
|
|
31
|
-
interface InkeepChatCompletionChunk {
|
|
32
|
-
id: string;
|
|
33
|
-
object: 'chat.completion.chunk';
|
|
34
|
-
created: number;
|
|
35
|
-
model?: string;
|
|
36
|
-
choices: Array<{
|
|
37
|
-
index: number;
|
|
38
|
-
delta: {
|
|
39
|
-
role?: 'assistant';
|
|
40
|
-
content?: string;
|
|
41
|
-
tool_calls?: Array<{
|
|
42
|
-
index: number;
|
|
43
|
-
id?: string;
|
|
44
|
-
type: 'function';
|
|
45
|
-
function: {
|
|
46
|
-
name?: string;
|
|
47
|
-
arguments?: string;
|
|
48
|
-
};
|
|
49
|
-
}>;
|
|
50
|
-
};
|
|
51
|
-
finish_reason: string | null;
|
|
52
|
-
}>;
|
|
53
|
-
usage?: {
|
|
54
|
-
prompt_tokens?: number;
|
|
55
|
-
completion_tokens?: number;
|
|
56
|
-
total_tokens?: number;
|
|
57
|
-
};
|
|
58
|
-
}
|
|
59
|
-
interface InkeepChatCompletion {
|
|
60
|
-
id: string;
|
|
61
|
-
object: 'chat.completion';
|
|
62
|
-
created: number;
|
|
63
|
-
model?: string;
|
|
64
|
-
choices: Array<{
|
|
65
|
-
index: number;
|
|
66
|
-
message: {
|
|
67
|
-
role: 'assistant';
|
|
68
|
-
content: string;
|
|
69
|
-
tool_calls?: Array<{
|
|
70
|
-
id: string;
|
|
71
|
-
type: 'function';
|
|
72
|
-
function: {
|
|
73
|
-
name: string;
|
|
74
|
-
arguments: string;
|
|
75
|
-
};
|
|
76
|
-
}>;
|
|
77
|
-
};
|
|
78
|
-
finish_reason: string;
|
|
79
|
-
}>;
|
|
80
|
-
usage?: {
|
|
81
|
-
prompt_tokens?: number;
|
|
82
|
-
completion_tokens?: number;
|
|
83
|
-
total_tokens?: number;
|
|
84
|
-
};
|
|
85
|
-
}
|
|
86
|
-
type InkeepFinishReason = 'stop' | 'length' | 'tool_calls' | 'content_filter' | null;
|
|
87
|
-
//#endregion
|
|
88
|
-
//#region src/inkeep-chat-options.d.ts
|
|
89
|
-
interface InkeepChatOptions {
|
|
90
|
-
conversationId?: string;
|
|
91
|
-
runConfig?: Record<string, unknown>;
|
|
92
|
-
headers?: Record<string, unknown>;
|
|
93
|
-
}
|
|
94
|
-
//#endregion
|
|
95
|
-
//#region src/inkeep-chat-language-model.d.ts
|
|
96
|
-
interface InkeepChatConfig {
|
|
97
|
-
provider: string;
|
|
98
|
-
baseURL: string;
|
|
99
|
-
headers: () => Record<string, string | undefined>;
|
|
100
|
-
fetch?: typeof fetch;
|
|
101
|
-
}
|
|
102
|
-
/**
|
|
103
|
-
* Converts data-operation events to AI SDK tool events (tool-call or tool-result).
|
|
104
|
-
*
|
|
105
|
-
* Handles:
|
|
106
|
-
* - tool_call: Direct tool invocation (tool-call)
|
|
107
|
-
* - tool_result: Direct tool result (tool-result)
|
|
108
|
-
* - transfer: Agent transfers control to another agent (tool-call)
|
|
109
|
-
* - delegation_sent: Agent delegates a task to another agent (tool-call)
|
|
110
|
-
* - delegation_returned: Delegated task completes and returns (tool-result)
|
|
111
|
-
*/
|
|
112
|
-
|
|
113
|
-
declare class InkeepChatLanguageModel implements LanguageModelV2 {
|
|
114
|
-
readonly specificationVersion: "v2";
|
|
115
|
-
readonly defaultObjectGenerationMode: undefined;
|
|
116
|
-
readonly supportsImageUrls = false;
|
|
117
|
-
readonly supportedUrls: {};
|
|
118
|
-
readonly modelId: string;
|
|
119
|
-
readonly options: InkeepChatOptions;
|
|
120
|
-
readonly config: InkeepChatConfig;
|
|
121
|
-
get provider(): string;
|
|
122
|
-
constructor(options: InkeepChatOptions, config: InkeepChatConfig);
|
|
123
|
-
private getArgs;
|
|
124
|
-
doGenerate(options: LanguageModelV2CallOptions): Promise<{
|
|
125
|
-
content: LanguageModelV2Content[];
|
|
126
|
-
finishReason: LanguageModelV2FinishReason;
|
|
127
|
-
usage: {
|
|
128
|
-
promptTokens: number;
|
|
129
|
-
completionTokens: number;
|
|
130
|
-
inputTokens: number;
|
|
131
|
-
outputTokens: number;
|
|
132
|
-
totalTokens: number;
|
|
133
|
-
};
|
|
134
|
-
rawCall: {
|
|
135
|
-
rawPrompt: InkeepChatMessage[];
|
|
136
|
-
rawSettings: {
|
|
137
|
-
messages: InkeepChatMessage[];
|
|
138
|
-
conversationId: string | undefined;
|
|
139
|
-
headers: Record<string, unknown> | undefined;
|
|
140
|
-
runConfig: Record<string, unknown> | undefined;
|
|
141
|
-
};
|
|
142
|
-
};
|
|
143
|
-
rawResponse: {
|
|
144
|
-
headers: Record<string, string> | undefined;
|
|
145
|
-
};
|
|
146
|
-
response: {
|
|
147
|
-
id: string;
|
|
148
|
-
modelId: string | undefined;
|
|
149
|
-
timestamp: Date;
|
|
150
|
-
};
|
|
151
|
-
warnings: LanguageModelV2CallWarning[];
|
|
152
|
-
}>;
|
|
153
|
-
doStream(options: LanguageModelV2CallOptions): Promise<{
|
|
154
|
-
stream: ReadableStream<LanguageModelV2StreamPart>;
|
|
155
|
-
rawCall: {
|
|
156
|
-
rawPrompt: InkeepChatMessage[];
|
|
157
|
-
rawSettings: {
|
|
158
|
-
messages: InkeepChatMessage[];
|
|
159
|
-
conversationId: string | undefined;
|
|
160
|
-
headers: Record<string, unknown> | undefined;
|
|
161
|
-
runConfig: Record<string, unknown> | undefined;
|
|
162
|
-
};
|
|
163
|
-
};
|
|
164
|
-
rawResponse: {
|
|
165
|
-
headers: Record<string, string> | undefined;
|
|
166
|
-
};
|
|
167
|
-
warnings: LanguageModelV2CallWarning[];
|
|
168
|
-
}>;
|
|
169
|
-
}
|
|
170
|
-
//#endregion
|
|
171
|
-
//#region src/inkeep-error.d.ts
|
|
172
|
-
declare const inkeepErrorDataSchema: z.ZodObject<{
|
|
173
|
-
error: z.ZodString;
|
|
174
|
-
message: z.ZodOptional<z.ZodString>;
|
|
175
|
-
details: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
176
|
-
field: z.ZodString;
|
|
177
|
-
message: z.ZodString;
|
|
178
|
-
value: z.ZodOptional<z.ZodUnknown>;
|
|
179
|
-
}, z.core.$strip>>>;
|
|
180
|
-
}, z.core.$strip>;
|
|
181
|
-
type InkeepErrorData = z.infer<typeof inkeepErrorDataSchema>;
|
|
182
|
-
//#endregion
|
|
183
|
-
//#region src/inkeep-provider.d.ts
|
|
184
|
-
interface InkeepProvider {
|
|
185
|
-
(options?: InkeepChatOptions): InkeepChatLanguageModel;
|
|
186
|
-
languageModel(options?: InkeepChatOptions): InkeepChatLanguageModel;
|
|
187
|
-
}
|
|
188
|
-
interface InkeepProviderSettings {
|
|
189
|
-
baseURL?: string;
|
|
190
|
-
apiKey?: string;
|
|
191
|
-
headers?: Record<string, string>;
|
|
192
|
-
fetch?: typeof fetch;
|
|
193
|
-
}
|
|
194
|
-
declare function createInkeep(options?: InkeepProviderSettings): InkeepProvider;
|
|
195
|
-
declare const inkeep: InkeepProvider;
|
|
196
|
-
//#endregion
|
|
197
|
-
export { type InkeepChatCompletion, type InkeepChatCompletionChunk, InkeepChatLanguageModel, type InkeepChatMessage, type InkeepChatOptions, type InkeepChatRequest, type InkeepErrorData, type InkeepFinishReason, type InkeepProvider, type InkeepProviderSettings, createInkeep, inkeep };
|
|
198
|
-
//# sourceMappingURL=index.d.ts.map
|
|
1
|
+
import { InkeepChatCompletion, InkeepChatCompletionChunk, InkeepChatMessage, InkeepChatRequest, InkeepFinishReason } from "./inkeep-chat-prompt.js";
|
|
2
|
+
import { InkeepChatOptions } from "./inkeep-chat-options.js";
|
|
3
|
+
import { InkeepChatLanguageModel } from "./inkeep-chat-language-model.js";
|
|
4
|
+
import { InkeepErrorData } from "./inkeep-error.js";
|
|
5
|
+
import { InkeepProvider, InkeepProviderSettings, createInkeep, inkeep } from "./inkeep-provider.js";
|
|
6
|
+
export { type InkeepChatCompletion, type InkeepChatCompletionChunk, InkeepChatLanguageModel, type InkeepChatMessage, type InkeepChatOptions, type InkeepChatRequest, type InkeepErrorData, type InkeepFinishReason, type InkeepProvider, type InkeepProviderSettings, createInkeep, inkeep };
|