-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Expand file tree
/
Copy pathOllama.ts
More file actions
835 lines (754 loc) · 25.4 KB
/
Copy pathOllama.ts
File metadata and controls
835 lines (754 loc) · 25.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
import { Mutex } from "async-mutex";
import { JSONSchema7, JSONSchema7Object } from "json-schema";
import { v4 as uuidv4 } from "uuid";
import { streamResponse } from "@continuedev/fetch";
import {
ChatMessage,
ChatMessageRole,
CompletionOptions,
LLMOptions,
ModelInstaller,
ThinkingChatMessage,
} from "../../index.js";
import { renderChatMessage } from "../../util/messageContent.js";
import { getRemoteModelInfo } from "../../util/ollamaHelper.js";
import { extractBase64FromDataUrl } from "../../util/url.js";
import { BaseLLM } from "../index.js";
type OllamaChatMessage = {
role: ChatMessageRole;
content: string;
images?: string[] | null;
thinking?: string;
tool_calls?: {
function: {
name: string;
arguments: JSONSchema7Object;
};
}[];
};
// See https://github.com/ollama/ollama/blob/main/docs/modelfile.md for details on each parameter
interface OllamaModelFileParams {
mirostat?: number;
mirostat_eta?: number;
mirostat_tau?: number;
num_ctx?: number;
repeat_last_n?: number;
repeat_penalty?: number;
temperature?: number;
seed?: number;
stop?: string | string[];
tfs_z?: number;
num_predict?: number;
top_k?: number;
top_p?: number;
min_p?: number;
num_gpu?: number;
// Deprecated or not directly supported here:
num_thread?: number;
use_mmap?: boolean;
num_gqa?: number;
num_keep?: number;
typical_p?: number;
presence_penalty?: number;
frequency_penalty?: number;
penalize_newline?: boolean;
numa?: boolean;
num_batch?: number;
main_gpu?: number;
low_vram?: boolean;
vocab_only?: boolean;
use_mlock?: boolean;
}
// See https://github.com/ollama/ollama/blob/main/docs/api.md
interface OllamaBaseOptions {
model: string; // the model name
options?: OllamaModelFileParams; // additional model parameters listed in the documentation for the Modelfile such as temperature
format?: "json"; // the format to return a response in. Currently, the only accepted value is json
stream?: boolean; // if false the response will be returned as a single response object, rather than a stream of objects
keep_alive?: number; // controls how long the model will stay loaded into memory following the request (default: 5m)
}
interface OllamaRawOptions extends OllamaBaseOptions {
prompt: string; // the prompt to generate a response for
suffix?: string; // the text after the model response
images?: string[]; // a list of base64-encoded images (for multimodal models such as llava)
system?: string; // system message to (overrides what is defined in the Modelfile)
template?: string; // the prompt template to use (overrides what is defined in the Modelfile)
context?: string; // the context parameter returned from a previous request to /generate, this can be used to keep a short conversational memory
raw?: boolean; // if true no formatting will be applied to the prompt. You may choose to use the raw parameter if you are specifying a full templated prompt in your request to the API
}
interface OllamaChatOptions extends OllamaBaseOptions {
messages: OllamaChatMessage[]; // the messages of the chat, this can be used to keep a chat memory
tools?: OllamaTool[]; // the tools of the chat, this can be used to keep a tool memory
// Not supported yet - tools: tools for the model to use if supported. Requires stream to be set to false
// And correspondingly, tool calls in OllamaChatMessage
think?: boolean; // if true the model will be prompted to think about the response before generating it
}
type OllamaBaseResponse = {
model: string;
created_at: string;
} & (
| {
done: false;
}
| {
done: true;
done_reason: string;
total_duration: number; // Time spent generating the response in nanoseconds
load_duration: number; // Time spent loading the model in nanoseconds
prompt_eval_count: number; // Number of tokens in the prompt
prompt_eval_duration: number; // Time spent evaluating the prompt in nanoseconds
eval_count: number; // Number of tokens in the response
eval_duration: number; // Time spent generating the response in nanoseconds
context: number[]; // An encoding of the conversation used in this response; can be sent in the next request to keep conversational memory
}
);
type OllamaErrorResponse = {
error: string;
};
type N8nChatReponse = {
type: string;
content?: string;
metadata: {
nodeId: string;
nodeName: string;
itemIndex: number;
runIndex: number;
timestamps: number;
};
};
type OllamaRawResponse =
| OllamaErrorResponse
| (OllamaBaseResponse & {
response: string; // the generated response
});
type OllamaChatResponse =
| OllamaErrorResponse
| (OllamaBaseResponse & {
message: OllamaChatMessage;
})
| N8nChatReponse;
interface OllamaTool {
type: "function";
function: {
name: string;
description?: string;
parameters?: JSONSchema7;
};
}
class Ollama extends BaseLLM implements ModelInstaller {
static providerName = "ollama";
static defaultOptions: Partial<LLMOptions> = {
apiBase: "http://localhost:11434/",
model: "codellama-7b",
maxEmbeddingBatchSize: 64,
};
private static modelsBeingInstalled: Set<string> = new Set();
private static modelsBeingInstalledMutex = new Mutex();
private fimSupported: boolean = false;
private modelInfoPromise: Promise<void> | undefined = undefined;
private explicitContextLength: boolean;
constructor(options: LLMOptions) {
super(options);
this.explicitContextLength = options.contextLength !== undefined;
}
private ensureModelInfo(): Promise<void> {
if (this.modelInfoPromise) {
return this.modelInfoPromise;
}
if (this.model === "AUTODETECT") {
return Promise.resolve();
}
const headers: Record<string, string> = {
"Content-Type": "application/json",
};
if (this.apiKey) {
headers.Authorization = `Bearer ${this.apiKey}`;
}
this.modelInfoPromise = this.fetch(this.getEndpoint("api/show"), {
method: "POST",
headers: headers,
body: JSON.stringify({ name: this._getModel() }),
})
.then(async (response) => {
if (response?.status !== 200) {
// console.warn(
// "Error calling Ollama /api/show endpoint: ",
// await response.text(),
// );
return;
}
const body = await response.json();
if (body.parameters) {
const params = [];
for (const line of body.parameters.split("\n")) {
let parts = line.match(/^(\S+)\s+((?:".*")|\S+)$/);
if (!parts || parts.length < 2) {
continue;
}
let key = parts[1];
let value = parts[2];
switch (key) {
case "num_ctx":
if (!this.explicitContextLength) {
this._contextLength = Number.parseInt(value);
}
break;
case "stop":
if (!this.completionOptions.stop) {
this.completionOptions.stop = [];
}
try {
this.completionOptions.stop.push(JSON.parse(value));
} catch (e) {
console.warn(
`Error parsing stop parameter value "{value}: ${e}`,
);
}
break;
default:
break;
}
}
}
/**
* There is no API to get the model's FIM capabilities, so we have to
* make an educated guess. If a ".Suffix" variable appears in the template
* it's a good indication the model supports FIM.
*/
this.fimSupported = !!body?.template?.includes(".Suffix");
})
.catch((e) => {
// console.warn("Error calling the Ollama /api/show endpoint: ", e);
});
return this.modelInfoPromise;
}
// Map of "continue model name" to Ollama actual model name
private modelMap: Record<string, string> = {
"mistral-7b": "mistral:7b",
"mixtral-8x7b": "mixtral:8x7b",
"llama2-7b": "llama2:7b",
"llama2-13b": "llama2:13b",
"codellama-7b": "codellama:7b",
"codellama-13b": "codellama:13b",
"codellama-34b": "codellama:34b",
"codellama-70b": "codellama:70b",
"llama3-8b": "llama3:8b",
"llama3-70b": "llama3:70b",
"llama3.1-8b": "llama3.1:8b",
"llama3.1-70b": "llama3.1:70b",
"llama3.1-405b": "llama3.1:405b",
"llama3.2-1b": "llama3.2:1b",
"llama3.2-3b": "llama3.2:3b",
"llama3.2-11b": "llama3.2:11b",
"llama3.2-90b": "llama3.2:90b",
"phi-2": "phi:2.7b",
"phind-codellama-34b": "phind-codellama:34b-v2",
"qwen2.5-coder-0.5b": "qwen2.5-coder:0.5b",
"qwen2.5-coder-1.5b": "qwen2.5-coder:1.5b",
"qwen2.5-coder-3b": "qwen2.5-coder:3b",
"qwen2.5-coder-7b": "qwen2.5-coder:7b",
"qwen2.5-coder-14b": "qwen2.5-coder:14b",
"qwen2.5-coder-32b": "qwen2.5-coder:32b",
"wizardcoder-7b": "wizardcoder:7b-python",
"wizardcoder-13b": "wizardcoder:13b-python",
"wizardcoder-34b": "wizardcoder:34b-python",
"zephyr-7b": "zephyr:7b",
"codeup-13b": "codeup:13b",
"deepseek-1b": "deepseek-coder:1.3b",
"deepseek-7b": "deepseek-coder:6.7b",
"deepseek-33b": "deepseek-coder:33b",
"neural-chat-7b": "neural-chat:7b-v3.3",
"starcoder-1b": "starcoder:1b",
"starcoder-3b": "starcoder:3b",
"starcoder2-3b": "starcoder2:3b",
"stable-code-3b": "stable-code:3b",
"granite-code-3b": "granite-code:3b",
"granite-code-8b": "granite-code:8b",
"granite-code-20b": "granite-code:20b",
"granite-code-34b": "granite-code:34b",
};
private _getModel() {
return this.modelMap[this.model] ?? this.model;
}
get contextLength() {
const DEFAULT_OLLAMA_CONTEXT_LENGTH = 8192; // twice of https://github.com/ollama/ollama/blob/29ddfc2cab7f5a83a96c3133094f67b22e4f27d1/envconfig/config.go#L185
return this._contextLength ?? DEFAULT_OLLAMA_CONTEXT_LENGTH;
}
private _getModelFileParams(
options: CompletionOptions,
): OllamaModelFileParams {
return {
temperature: options.temperature,
top_p: options.topP,
top_k: options.topK,
num_predict: options.maxTokens,
stop: options.stop,
num_ctx: this.contextLength,
mirostat: options.mirostat,
num_thread: options.numThreads,
use_mmap: options.useMmap,
min_p: options.minP,
num_gpu: options.numGpu,
};
}
private _convertToOllamaMessage(message: ChatMessage): OllamaChatMessage {
const ollamaMessage: OllamaChatMessage = {
role: message.role,
content: "",
};
ollamaMessage.content = renderChatMessage(message);
// Convert assistant tool calls to Ollama format, stripping unsupported
// fields like `index` (which causes errors on Gemma3 models).
if (
message.role === "assistant" &&
"toolCalls" in message &&
message.toolCalls?.length
) {
ollamaMessage.tool_calls = message.toolCalls
.filter((tc) => tc.function?.name)
.map((tc) => {
let args: JSONSchema7Object;
if (typeof tc.function!.arguments === "string") {
try {
args = JSON.parse(tc.function!.arguments!);
} catch (e) {
console.warn(
`Failed to parse tool call arguments for "${tc.function!.name}": ${e}`,
);
args = {};
}
} else {
args = tc.function!.arguments
? (tc.function!.arguments as unknown as JSONSchema7Object)
: {};
}
return {
function: {
name: tc.function!.name!,
arguments: args,
},
};
});
}
if (Array.isArray(message.content)) {
const images: string[] = [];
message.content.forEach((part) => {
if (part.type === "imageUrl" && part.imageUrl) {
const image = part.imageUrl?.url
? extractBase64FromDataUrl(part.imageUrl.url)
: undefined;
if (image) {
images.push(image);
} else if (part.imageUrl?.url) {
console.warn(
"Ollama: skipping image with invalid data URL format",
part.imageUrl.url,
);
}
}
});
if (images.length > 0) {
ollamaMessage.images = images;
}
}
return ollamaMessage;
}
private _getGenerateOptions(
options: CompletionOptions,
prompt: string,
suffix?: string,
): OllamaRawOptions {
return {
model: this._getModel(),
prompt,
suffix,
raw: options.raw,
options: this._getModelFileParams(options),
keep_alive: options.keepAlive ?? 60 * 30, // 30 minutes
stream: options.stream,
// Not supported yet: context, images, system, template, format
};
}
private getEndpoint(endpoint: string): URL {
let base = this.apiBase;
if (process.env.IS_BINARY) {
base = base?.replace("localhost", "127.0.0.1");
}
return new URL(endpoint, base);
}
protected async *_streamComplete(
prompt: string,
signal: AbortSignal,
options: CompletionOptions,
): AsyncGenerator<string> {
await this.ensureModelInfo();
const headers: Record<string, string> = {
"Content-Type": "application/json",
};
if (this.apiKey) {
headers.Authorization = `Bearer ${this.apiKey}`;
}
const response = await this.fetch(this.getEndpoint("api/generate"), {
method: "POST",
headers: headers,
body: JSON.stringify(this._getGenerateOptions(options, prompt)),
signal,
});
let buffer = "";
for await (const value of streamResponse(response)) {
// Append the received chunk to the buffer
buffer += value;
// Split the buffer into individual JSON chunks
const chunks = buffer.split("\n");
buffer = chunks.pop() ?? "";
for (let i = 0; i < chunks.length; i++) {
const chunk = chunks[i];
if (chunk.trim() !== "") {
try {
const j = JSON.parse(chunk) as OllamaRawResponse;
if ("error" in j) {
throw new Error(j.error);
}
j.response ??= "";
yield j.response;
} catch (e) {
throw new Error(`Error parsing Ollama response: ${e} ${chunk}`);
}
}
}
}
}
/**
* Reorder messages so that system messages never appear directly after tool
* messages. Some Ollama models (Mistral, Ministral) reject the sequence
* `tool → system` with "Unexpected role 'system' after role 'tool'".
* This moves such system messages to just before the preceding
* assistant+tool block.
*/
private _reorderMessagesForToolCompat(
messages: OllamaChatMessage[],
): OllamaChatMessage[] {
const result: OllamaChatMessage[] = [...messages];
for (let i = 1; i < result.length; i++) {
if (result[i].role === "system" && result[i - 1].role === "tool") {
// Find the start of the tool block (assistant tool_call + tool results)
let insertIdx = i - 1;
while (insertIdx > 0 && result[insertIdx - 1].role === "tool") {
insertIdx--;
}
// Also skip past the assistant message that triggered the tool calls
if (insertIdx > 0 && result[insertIdx - 1].role === "assistant") {
insertIdx--;
}
const [sysMsg] = result.splice(i, 1);
result.splice(insertIdx, 0, sysMsg);
// Don't increment i — re-check current position after splice
}
}
return result;
}
protected async *_streamChat(
messages: ChatMessage[],
signal: AbortSignal,
options: CompletionOptions,
): AsyncGenerator<ChatMessage> {
await this.ensureModelInfo();
const ollamaMessages = this._reorderMessagesForToolCompat(
messages.map(this._convertToOllamaMessage),
);
const chatOptions: OllamaChatOptions = {
model: this._getModel(),
messages: ollamaMessages,
options: this._getModelFileParams(options),
think: options.reasoning,
keep_alive: options.keepAlive ?? 60 * 30, // 30 minutes
stream: options.stream,
// format: options.format, // Not currently in base completion options
};
if (options.tools?.length && ollamaMessages.at(-1)?.role === "user") {
chatOptions.tools = options.tools.map((tool) => ({
type: "function",
function: {
name: tool.function.name,
description: tool.function.description,
parameters: tool.function.parameters,
},
}));
}
const headers: Record<string, string> = {
"Content-Type": "application/json",
};
if (this.apiKey) {
headers.Authorization = `Bearer ${this.apiKey}`;
}
const response = await this.fetch(this.getEndpoint("api/chat"), {
method: "POST",
headers: headers,
body: JSON.stringify(chatOptions),
signal,
});
let isThinking: boolean = false;
const thinkOpenTag = `<${this.thinkTagName}>`;
const thinkCloseTag = `</${this.thinkTagName}>`;
function convertChatMessage(res: OllamaChatResponse): ChatMessage[] {
if ("error" in res) {
throw new Error(res.error);
}
if ("type" in res) {
const { content } = res;
if (content === thinkOpenTag) {
isThinking = true;
}
if (isThinking && content) {
// TODO better support for streaming thinking chunks, or remove this and depend on redux <think/> parsing logic
const thinkingMessage: ThinkingChatMessage = {
role: "thinking",
content: content,
};
if (thinkingMessage) {
// could cause issues with termination if chunk doesn't match this exactly
if (content === thinkCloseTag) {
isThinking = false;
}
// When Streaming you can't have both thinking and content
return [thinkingMessage];
}
}
if (content) {
const chatMessage: ChatMessage = {
role: "assistant",
content: content,
};
return [chatMessage];
}
return [];
}
const { role, content, thinking, tool_calls: toolCalls } = res.message;
if (role === "tool") {
throw new Error(
"Unexpected message received from Ollama with role = tool",
);
}
if (role === "assistant") {
const thinkingMessage: ThinkingChatMessage | null = thinking
? { role: "thinking", content: thinking }
: null;
if (thinkingMessage && !content && !toolCalls?.length) {
// When Streaming you can't have both thinking and content
return [thinkingMessage];
}
// Either not thinking, or not streaming
const chatMessage: ChatMessage = { role: "assistant", content };
if (toolCalls?.length) {
// Continue handles the response as a tool call delta but
// But ollama returns the full object in one response with no streaming
chatMessage.toolCalls = toolCalls.map((tc) => ({
type: "function",
id: `tc_${uuidv4()}`, // Generate a proper UUID with a prefix
function: {
name: tc.function.name,
arguments: JSON.stringify(tc.function.arguments),
},
}));
}
// Return both thinking and chat messages if applicable
return thinkingMessage ? [thinkingMessage, chatMessage] : [chatMessage];
}
// Fallback for all other roles
return [{ role, content }];
}
if (chatOptions.stream === false) {
if (response.status === 499) {
return; // Aborted by user
}
const json = (await response.json()) as OllamaChatResponse;
for (const msg of convertChatMessage(json)) {
yield msg;
}
} else {
let buffer = "";
for await (const value of streamResponse(response)) {
// Append the received chunk to the buffer
buffer += value;
// Split the buffer into individual JSON chunks
const chunks = buffer.split("\n");
buffer = chunks.pop() ?? "";
for (let i = 0; i < chunks.length; i++) {
const chunk = chunks[i];
if (chunk.trim() !== "") {
try {
const j = JSON.parse(chunk) as OllamaChatResponse;
for (const msg of convertChatMessage(j)) {
yield msg;
}
} catch (e) {
throw new Error(`Error parsing Ollama response: ${e} ${chunk}`);
}
}
}
}
}
}
supportsFim(): boolean {
return this.fimSupported;
}
protected async *_streamFim(
prefix: string,
suffix: string,
signal: AbortSignal,
options: CompletionOptions,
): AsyncGenerator<string> {
await this.ensureModelInfo();
const headers: Record<string, string> = {
"Content-Type": "application/json",
};
if (this.apiKey) {
headers.Authorization = `Bearer ${this.apiKey}`;
}
const response = await this.fetch(this.getEndpoint("api/generate"), {
method: "POST",
headers: headers,
body: JSON.stringify(this._getGenerateOptions(options, prefix, suffix)),
signal,
});
let buffer = "";
for await (const value of streamResponse(response)) {
// Append the received chunk to the buffer
buffer += value;
// Split the buffer into individual JSON chunks
const chunks = buffer.split("\n");
buffer = chunks.pop() ?? "";
for (let i = 0; i < chunks.length; i++) {
const chunk = chunks[i];
if (chunk.trim() !== "") {
try {
const j = JSON.parse(chunk);
if ("response" in j) {
yield j.response;
} else if ("error" in j) {
throw new Error(j.error);
}
} catch (e) {
throw new Error(`Error parsing Ollama response: ${e} ${chunk}`);
}
}
}
}
}
async listModels(): Promise<string[]> {
const headers: Record<string, string> = {
"Content-Type": "application/json",
};
if (this.apiKey) {
headers.Authorization = `Bearer ${this.apiKey}`;
}
const response = await this.fetch(
// localhost was causing fetch failed in pkg binary only for this Ollama endpoint
this.getEndpoint("api/tags"),
{
method: "GET",
headers: headers,
},
);
const data = await response.json();
if (response.ok) {
return data.models.map((model: any) => model.name);
} else {
throw new Error(
"Failed to list Ollama models. Make sure Ollama is running.",
);
}
}
protected async _embed(chunks: string[]): Promise<number[][]> {
const headers: Record<string, string> = {
"Content-Type": "application/json",
};
if (this.apiKey) {
headers.Authorization = `Bearer ${this.apiKey}`;
}
const resp = await this.fetch(new URL("api/embed", this.apiBase), {
method: "POST",
body: JSON.stringify({
model: this.model,
input: chunks,
}),
headers: headers,
});
if (!resp.ok) {
throw new Error(`Failed to embed chunk: ${await resp.text()}`);
}
const data = await resp.json();
const embedding: number[][] = data.embeddings;
if (!embedding || embedding.length === 0) {
throw new Error("Ollama generated empty embedding");
}
return embedding;
}
public async installModel(
modelName: string,
signal: AbortSignal,
progressReporter?: (task: string, increment: number, total: number) => void,
): Promise<any> {
const modelInfo = await getRemoteModelInfo(modelName, signal);
if (!modelInfo) {
throw new Error(`'${modelName}' not found in the Ollama registry!`);
}
const release = await Ollama.modelsBeingInstalledMutex.acquire();
try {
if (Ollama.modelsBeingInstalled.has(modelName)) {
throw new Error(`Model '${modelName}' is already being installed.`);
}
Ollama.modelsBeingInstalled.add(modelName);
} finally {
release();
}
try {
const response = await fetch(this.getEndpoint("api/pull"), {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: `Bearer ${this.apiKey}`,
},
body: JSON.stringify({ name: modelName }),
signal,
});
const reader = response.body?.getReader();
//TODO: generate proper progress based on modelInfo size
while (true) {
const { done, value } = (await reader?.read()) || {
done: true,
value: undefined,
};
if (done) {
break;
}
const chunk = new TextDecoder().decode(value);
const lines = chunk.split("\n").filter(Boolean);
for (const line of lines) {
try {
const data = JSON.parse(line);
progressReporter?.(data.status, data.completed, data.total);
} catch (e) {
console.warn(`Error parsing Ollama pull response: ${e}`);
}
}
}
} finally {
const release = await Ollama.modelsBeingInstalledMutex.acquire();
try {
Ollama.modelsBeingInstalled.delete(modelName);
} finally {
release();
}
}
}
public async isInstallingModel(modelName: string): Promise<boolean> {
const release = await Ollama.modelsBeingInstalledMutex.acquire();
try {
return Ollama.modelsBeingInstalled.has(modelName);
} finally {
release();
}
}
}
export default Ollama;