modelfusion 0.96.0 → 0.97.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.
@@ -44,15 +44,47 @@ class OllamaTextGenerationModel extends AbstractModel_js_1.AbstractModel {
44
44
  return this.settings.contextWindowSize;
45
45
  }
46
46
  async callAPI(prompt, options) {
47
+ const { responseFormat } = options;
48
+ const api = this.settings.api ?? new OllamaApiConfiguration_js_1.OllamaApiConfiguration();
49
+ const abortSignal = options.run?.abortSignal;
47
50
  return (0, callWithRetryAndThrottle_js_1.callWithRetryAndThrottle)({
48
- retry: this.settings.api?.retry,
49
- throttle: this.settings.api?.throttle,
50
- call: async () => callOllamaTextGenerationAPI({
51
- ...this.settings,
52
- // other
53
- abortSignal: options.run?.abortSignal,
54
- prompt,
55
- responseFormat: options.responseFormat,
51
+ retry: api.retry,
52
+ throttle: api.throttle,
53
+ call: async () => (0, postToApi_js_1.postJsonToApi)({
54
+ url: api.assembleUrl(`/api/generate`),
55
+ headers: api.headers,
56
+ body: {
57
+ stream: responseFormat.stream,
58
+ model: this.settings.model,
59
+ prompt: prompt.prompt,
60
+ images: prompt.images,
61
+ format: this.settings.format,
62
+ options: {
63
+ mirostat: this.settings.mirostat,
64
+ mirostat_eta: this.settings.mirostatEta,
65
+ mirostat_tau: this.settings.mirostatTau,
66
+ num_ctx: this.settings.contextWindowSize,
67
+ num_gpu: this.settings.numGpu,
68
+ num_gqa: this.settings.numGqa,
69
+ num_predict: this.settings.maxCompletionTokens,
70
+ num_threads: this.settings.numThreads,
71
+ repeat_last_n: this.settings.repeatLastN,
72
+ repeat_penalty: this.settings.repeatPenalty,
73
+ seed: this.settings.seed,
74
+ stop: this.settings.stopSequences,
75
+ temperature: this.settings.temperature,
76
+ tfs_z: this.settings.tfsZ,
77
+ top_k: this.settings.topK,
78
+ top_p: this.settings.topP,
79
+ },
80
+ system: this.settings.system,
81
+ template: this.settings.template,
82
+ context: this.settings.context,
83
+ raw: this.settings.raw,
84
+ },
85
+ failedResponseHandler: OllamaError_js_1.failedOllamaCallResponseHandler,
86
+ successfulResponseHandler: responseFormat.handler,
87
+ abortSignal,
56
88
  }),
57
89
  });
58
90
  }
@@ -63,17 +95,17 @@ class OllamaTextGenerationModel extends AbstractModel_js_1.AbstractModel {
63
95
  "contextWindowSize",
64
96
  "temperature",
65
97
  "mirostat",
66
- "mirostat_eta",
67
- "mirostat_tau",
68
- "num_gqa",
69
- "num_gpu",
70
- "num_threads",
71
- "repeat_last_n",
72
- "repeat_penalty",
98
+ "mirostatEta",
99
+ "mirostatTau",
100
+ "numGqa",
101
+ "numGpu",
102
+ "numThreads",
103
+ "repeatLastN",
104
+ "repeatPenalty",
73
105
  "seed",
74
- "tfs_z",
75
- "top_k",
76
- "top_p",
106
+ "tfsZ",
107
+ "topK",
108
+ "topP",
77
109
  "system",
78
110
  "template",
79
111
  "context",
@@ -110,6 +142,14 @@ class OllamaTextGenerationModel extends AbstractModel_js_1.AbstractModel {
110
142
  template: promptTemplate,
111
143
  });
112
144
  }
145
+ withTextPrompt() {
146
+ return this.withPromptTemplate({
147
+ format(prompt) {
148
+ return { prompt: prompt };
149
+ },
150
+ stopSequences: [],
151
+ });
152
+ }
113
153
  withPromptTemplate(promptTemplate) {
114
154
  return new PromptTemplateTextStreamingModel_js_1.PromptTemplateTextStreamingModel({
115
155
  model: this.withSettings({
@@ -131,7 +171,7 @@ const ollamaTextGenerationResponseSchema = zod_1.z.object({
131
171
  model: zod_1.z.string(),
132
172
  response: zod_1.z.string(),
133
173
  total_duration: zod_1.z.number(),
134
- load_duration: zod_1.z.number(),
174
+ load_duration: zod_1.z.number().optional(),
135
175
  prompt_eval_count: zod_1.z.number(),
136
176
  eval_count: zod_1.z.number(),
137
177
  eval_duration: zod_1.z.number(),
@@ -149,7 +189,7 @@ const ollamaTextStreamingResponseSchema = new ZodSchema_js_1.ZodSchema(zod_1.z.d
149
189
  model: zod_1.z.string(),
150
190
  created_at: zod_1.z.string(),
151
191
  total_duration: zod_1.z.number(),
152
- load_duration: zod_1.z.number(),
192
+ load_duration: zod_1.z.number().optional(),
153
193
  sample_count: zod_1.z.number().optional(),
154
194
  sample_duration: zod_1.z.number().optional(),
155
195
  prompt_eval_count: zod_1.z.number(),
@@ -159,43 +199,6 @@ const ollamaTextStreamingResponseSchema = new ZodSchema_js_1.ZodSchema(zod_1.z.d
159
199
  context: zod_1.z.array(zod_1.z.number()).optional(),
160
200
  }),
161
201
  ]));
162
- async function callOllamaTextGenerationAPI({ api = new OllamaApiConfiguration_js_1.OllamaApiConfiguration(), abortSignal, responseFormat, prompt, model, format, contextWindowSize, maxCompletionTokens, mirostat, mirostat_eta, mirostat_tau, num_gpu, num_gqa, num_threads, repeat_last_n, repeat_penalty, seed, stopSequences, temperature, tfs_z, top_k, top_p, system, template, context, raw, }) {
163
- return (0, postToApi_js_1.postJsonToApi)({
164
- url: api.assembleUrl(`/api/generate`),
165
- headers: api.headers,
166
- body: {
167
- stream: responseFormat.stream,
168
- model,
169
- prompt,
170
- format,
171
- options: {
172
- mirostat,
173
- mirostat_eta,
174
- mirostat_tau,
175
- num_ctx: contextWindowSize,
176
- num_gpu,
177
- num_gqa,
178
- num_predict: maxCompletionTokens,
179
- num_threads,
180
- repeat_last_n,
181
- repeat_penalty,
182
- seed,
183
- stop: stopSequences,
184
- temperature,
185
- tfs_z,
186
- top_k,
187
- top_p,
188
- },
189
- system,
190
- template,
191
- context,
192
- raw,
193
- },
194
- failedResponseHandler: OllamaError_js_1.failedOllamaCallResponseHandler,
195
- successfulResponseHandler: responseFormat.handler,
196
- abortSignal,
197
- });
198
- }
199
202
  async function createOllamaFullDeltaIterableQueue(stream) {
200
203
  const queue = new AsyncQueue_js_1.AsyncQueue();
201
204
  let accumulatedText = "";
@@ -40,39 +40,39 @@ export interface OllamaTextGenerationModelSettings<CONTEXT_WINDOW_SIZE extends n
40
40
  * A lower learning rate will result in slower adjustments,
41
41
  * while a higher learning rate will make the algorithm more responsive. (Default: 0.1)
42
42
  */
43
- mirostat_eta?: number;
43
+ mirostatEta?: number;
44
44
  /**
45
45
  * Controls the balance between coherence and diversity of the output.
46
46
  * A lower value will result in more focused and coherent text. (Default: 5.0)
47
47
  */
48
- mirostat_tau?: number;
48
+ mirostatTau?: number;
49
49
  /**
50
50
  * The number of GQA groups in the transformer layer. Required for some models,
51
51
  * for example it is 8 for llama2:70b
52
52
  */
53
- num_gqa?: number;
53
+ numGqa?: number;
54
54
  /**
55
55
  * The number of layers to send to the GPU(s). On macOS it defaults to 1 to
56
56
  * enable metal support, 0 to disable.
57
57
  */
58
- num_gpu?: number;
58
+ numGpu?: number;
59
59
  /**
60
60
  * Sets the number of threads to use during computation. By default, Ollama will
61
61
  * detect this for optimal performance. It is recommended to set this value to the
62
62
  * number of physical CPU cores your system has (as opposed to the logical number of cores).
63
63
  */
64
- num_threads?: number;
64
+ numThreads?: number;
65
65
  /**
66
66
  * Sets how far back for the model to look back to prevent repetition.
67
67
  * (Default: 64, 0 = disabled, -1 = num_ctx)
68
68
  */
69
- repeat_last_n?: number;
69
+ repeatLastN?: number;
70
70
  /**
71
71
  * Sets how strongly to penalize repetitions. A higher value (e.g., 1.5)
72
72
  * will penalize repetitions more strongly, while a lower value (e.g., 0.9)
73
73
  * will be more lenient. (Default: 1.1)
74
74
  */
75
- repeat_penalty?: number;
75
+ repeatPenalty?: number;
76
76
  /**
77
77
  * Sets the random number seed to use for generation. Setting this to a
78
78
  * specific number will make the model generate the same text for the same prompt.
@@ -84,19 +84,19 @@ export interface OllamaTextGenerationModelSettings<CONTEXT_WINDOW_SIZE extends n
84
84
  * from the output. A higher value (e.g., 2.0) will reduce the impact more,
85
85
  * while a value of 1.0 disables this setting. (default: 1)
86
86
  */
87
- tfs_z?: number;
87
+ tfsZ?: number;
88
88
  /**
89
89
  * Reduces the probability of generating nonsense. A higher value (e.g. 100)
90
90
  * will give more diverse answers, while a lower value (e.g. 10) will be more
91
91
  * conservative. (Default: 40)
92
92
  */
93
- top_k?: number;
93
+ topK?: number;
94
94
  /**
95
95
  * Works together with top-k. A higher value (e.g., 0.95) will lead to more
96
96
  * diverse text, while a lower value (e.g., 0.5) will generate more focused
97
97
  * and conservative text. (Default: 0.9)
98
98
  */
99
- top_p?: number;
99
+ topP?: number;
100
100
  /**
101
101
  * When set to true, no formatting will be applied to the prompt and no context
102
102
  * will be returned.
@@ -111,35 +111,46 @@ export interface OllamaTextGenerationModelSettings<CONTEXT_WINDOW_SIZE extends n
111
111
  template?: string;
112
112
  context?: number[];
113
113
  }
114
- export declare class OllamaTextGenerationModel<CONTEXT_WINDOW_SIZE extends number | undefined> extends AbstractModel<OllamaTextGenerationModelSettings<CONTEXT_WINDOW_SIZE>> implements TextStreamingModel<string, OllamaTextGenerationModelSettings<CONTEXT_WINDOW_SIZE>> {
114
+ export interface OllamaTextGenerationPrompt {
115
+ /**
116
+ * Text prompt.
117
+ */
118
+ prompt: string;
119
+ /**
120
+ Images. Supports base64-encoded `png` and `jpeg` images up to 100MB in size.
121
+ */
122
+ images?: Record<number, string>;
123
+ }
124
+ export declare class OllamaTextGenerationModel<CONTEXT_WINDOW_SIZE extends number | undefined> extends AbstractModel<OllamaTextGenerationModelSettings<CONTEXT_WINDOW_SIZE>> implements TextStreamingModel<OllamaTextGenerationPrompt, OllamaTextGenerationModelSettings<CONTEXT_WINDOW_SIZE>> {
115
125
  constructor(settings: OllamaTextGenerationModelSettings<CONTEXT_WINDOW_SIZE>);
116
126
  readonly provider = "ollama";
117
127
  get modelName(): string;
118
128
  readonly tokenizer: undefined;
119
129
  readonly countPromptTokens: undefined;
120
130
  get contextWindowSize(): CONTEXT_WINDOW_SIZE;
121
- callAPI<RESPONSE>(prompt: string, options: {
131
+ callAPI<RESPONSE>(prompt: OllamaTextGenerationPrompt, options: {
122
132
  responseFormat: OllamaTextGenerationResponseFormatType<RESPONSE>;
123
133
  } & FunctionOptions): Promise<RESPONSE>;
124
134
  get settingsForEvent(): Partial<OllamaTextGenerationModelSettings<CONTEXT_WINDOW_SIZE>>;
125
- doGenerateText(prompt: string, options?: FunctionOptions): Promise<{
135
+ doGenerateText(prompt: OllamaTextGenerationPrompt, options?: FunctionOptions): Promise<{
126
136
  response: {
127
137
  response: string;
128
138
  model: string;
129
139
  done: true;
130
140
  total_duration: number;
131
- load_duration: number;
132
141
  prompt_eval_count: number;
133
142
  eval_count: number;
134
143
  eval_duration: number;
144
+ load_duration?: number | undefined;
135
145
  context?: number[] | undefined;
136
146
  };
137
147
  text: string;
138
148
  }>;
139
- doStreamText(prompt: string, options?: FunctionOptions): Promise<AsyncIterable<Delta<string>>>;
140
- asToolCallGenerationModel<INPUT_PROMPT>(promptTemplate: ToolCallPromptTemplate<INPUT_PROMPT, string>): TextGenerationToolCallModel<INPUT_PROMPT, string, this>;
141
- asToolCallsOrTextGenerationModel<INPUT_PROMPT>(promptTemplate: ToolCallsOrGenerateTextPromptTemplate<INPUT_PROMPT, string>): TextGenerationToolCallsOrGenerateTextModel<INPUT_PROMPT, string, this>;
142
- withPromptTemplate<INPUT_PROMPT>(promptTemplate: TextGenerationPromptTemplate<INPUT_PROMPT, string>): PromptTemplateTextStreamingModel<INPUT_PROMPT, string, OllamaTextGenerationModelSettings<CONTEXT_WINDOW_SIZE>, this>;
149
+ doStreamText(prompt: OllamaTextGenerationPrompt, options?: FunctionOptions): Promise<AsyncIterable<Delta<string>>>;
150
+ asToolCallGenerationModel<INPUT_PROMPT>(promptTemplate: ToolCallPromptTemplate<INPUT_PROMPT, OllamaTextGenerationPrompt>): TextGenerationToolCallModel<INPUT_PROMPT, OllamaTextGenerationPrompt, this>;
151
+ asToolCallsOrTextGenerationModel<INPUT_PROMPT>(promptTemplate: ToolCallsOrGenerateTextPromptTemplate<INPUT_PROMPT, OllamaTextGenerationPrompt>): TextGenerationToolCallsOrGenerateTextModel<INPUT_PROMPT, OllamaTextGenerationPrompt, this>;
152
+ withTextPrompt(): PromptTemplateTextStreamingModel<string, OllamaTextGenerationPrompt, OllamaTextGenerationModelSettings<CONTEXT_WINDOW_SIZE>, this>;
153
+ withPromptTemplate<INPUT_PROMPT>(promptTemplate: TextGenerationPromptTemplate<INPUT_PROMPT, OllamaTextGenerationPrompt>): PromptTemplateTextStreamingModel<INPUT_PROMPT, OllamaTextGenerationPrompt, OllamaTextGenerationModelSettings<CONTEXT_WINDOW_SIZE>, this>;
143
154
  withSettings(additionalSettings: Partial<OllamaTextGenerationModelSettings<CONTEXT_WINDOW_SIZE>>): this;
144
155
  }
145
156
  declare const ollamaTextGenerationResponseSchema: z.ZodObject<{
@@ -147,7 +158,7 @@ declare const ollamaTextGenerationResponseSchema: z.ZodObject<{
147
158
  model: z.ZodString;
148
159
  response: z.ZodString;
149
160
  total_duration: z.ZodNumber;
150
- load_duration: z.ZodNumber;
161
+ load_duration: z.ZodOptional<z.ZodNumber>;
151
162
  prompt_eval_count: z.ZodNumber;
152
163
  eval_count: z.ZodNumber;
153
164
  eval_duration: z.ZodNumber;
@@ -157,20 +168,20 @@ declare const ollamaTextGenerationResponseSchema: z.ZodObject<{
157
168
  model: string;
158
169
  done: true;
159
170
  total_duration: number;
160
- load_duration: number;
161
171
  prompt_eval_count: number;
162
172
  eval_count: number;
163
173
  eval_duration: number;
174
+ load_duration?: number | undefined;
164
175
  context?: number[] | undefined;
165
176
  }, {
166
177
  response: string;
167
178
  model: string;
168
179
  done: true;
169
180
  total_duration: number;
170
- load_duration: number;
171
181
  prompt_eval_count: number;
172
182
  eval_count: number;
173
183
  eval_duration: number;
184
+ load_duration?: number | undefined;
174
185
  context?: number[] | undefined;
175
186
  }>;
176
187
  export type OllamaTextGenerationResponse = z.infer<typeof ollamaTextGenerationResponseSchema>;
@@ -198,10 +209,10 @@ export declare const OllamaTextGenerationResponseFormat: {
198
209
  model: string;
199
210
  done: true;
200
211
  total_duration: number;
201
- load_duration: number;
202
212
  prompt_eval_count: number;
203
213
  eval_count: number;
204
214
  eval_duration: number;
215
+ load_duration?: number | undefined;
205
216
  context?: number[] | undefined;
206
217
  }>;
207
218
  };
@@ -41,15 +41,47 @@ export class OllamaTextGenerationModel extends AbstractModel {
41
41
  return this.settings.contextWindowSize;
42
42
  }
43
43
  async callAPI(prompt, options) {
44
+ const { responseFormat } = options;
45
+ const api = this.settings.api ?? new OllamaApiConfiguration();
46
+ const abortSignal = options.run?.abortSignal;
44
47
  return callWithRetryAndThrottle({
45
- retry: this.settings.api?.retry,
46
- throttle: this.settings.api?.throttle,
47
- call: async () => callOllamaTextGenerationAPI({
48
- ...this.settings,
49
- // other
50
- abortSignal: options.run?.abortSignal,
51
- prompt,
52
- responseFormat: options.responseFormat,
48
+ retry: api.retry,
49
+ throttle: api.throttle,
50
+ call: async () => postJsonToApi({
51
+ url: api.assembleUrl(`/api/generate`),
52
+ headers: api.headers,
53
+ body: {
54
+ stream: responseFormat.stream,
55
+ model: this.settings.model,
56
+ prompt: prompt.prompt,
57
+ images: prompt.images,
58
+ format: this.settings.format,
59
+ options: {
60
+ mirostat: this.settings.mirostat,
61
+ mirostat_eta: this.settings.mirostatEta,
62
+ mirostat_tau: this.settings.mirostatTau,
63
+ num_ctx: this.settings.contextWindowSize,
64
+ num_gpu: this.settings.numGpu,
65
+ num_gqa: this.settings.numGqa,
66
+ num_predict: this.settings.maxCompletionTokens,
67
+ num_threads: this.settings.numThreads,
68
+ repeat_last_n: this.settings.repeatLastN,
69
+ repeat_penalty: this.settings.repeatPenalty,
70
+ seed: this.settings.seed,
71
+ stop: this.settings.stopSequences,
72
+ temperature: this.settings.temperature,
73
+ tfs_z: this.settings.tfsZ,
74
+ top_k: this.settings.topK,
75
+ top_p: this.settings.topP,
76
+ },
77
+ system: this.settings.system,
78
+ template: this.settings.template,
79
+ context: this.settings.context,
80
+ raw: this.settings.raw,
81
+ },
82
+ failedResponseHandler: failedOllamaCallResponseHandler,
83
+ successfulResponseHandler: responseFormat.handler,
84
+ abortSignal,
53
85
  }),
54
86
  });
55
87
  }
@@ -60,17 +92,17 @@ export class OllamaTextGenerationModel extends AbstractModel {
60
92
  "contextWindowSize",
61
93
  "temperature",
62
94
  "mirostat",
63
- "mirostat_eta",
64
- "mirostat_tau",
65
- "num_gqa",
66
- "num_gpu",
67
- "num_threads",
68
- "repeat_last_n",
69
- "repeat_penalty",
95
+ "mirostatEta",
96
+ "mirostatTau",
97
+ "numGqa",
98
+ "numGpu",
99
+ "numThreads",
100
+ "repeatLastN",
101
+ "repeatPenalty",
70
102
  "seed",
71
- "tfs_z",
72
- "top_k",
73
- "top_p",
103
+ "tfsZ",
104
+ "topK",
105
+ "topP",
74
106
  "system",
75
107
  "template",
76
108
  "context",
@@ -107,6 +139,14 @@ export class OllamaTextGenerationModel extends AbstractModel {
107
139
  template: promptTemplate,
108
140
  });
109
141
  }
142
+ withTextPrompt() {
143
+ return this.withPromptTemplate({
144
+ format(prompt) {
145
+ return { prompt: prompt };
146
+ },
147
+ stopSequences: [],
148
+ });
149
+ }
110
150
  withPromptTemplate(promptTemplate) {
111
151
  return new PromptTemplateTextStreamingModel({
112
152
  model: this.withSettings({
@@ -127,7 +167,7 @@ const ollamaTextGenerationResponseSchema = z.object({
127
167
  model: z.string(),
128
168
  response: z.string(),
129
169
  total_duration: z.number(),
130
- load_duration: z.number(),
170
+ load_duration: z.number().optional(),
131
171
  prompt_eval_count: z.number(),
132
172
  eval_count: z.number(),
133
173
  eval_duration: z.number(),
@@ -145,7 +185,7 @@ const ollamaTextStreamingResponseSchema = new ZodSchema(z.discriminatedUnion("do
145
185
  model: z.string(),
146
186
  created_at: z.string(),
147
187
  total_duration: z.number(),
148
- load_duration: z.number(),
188
+ load_duration: z.number().optional(),
149
189
  sample_count: z.number().optional(),
150
190
  sample_duration: z.number().optional(),
151
191
  prompt_eval_count: z.number(),
@@ -155,43 +195,6 @@ const ollamaTextStreamingResponseSchema = new ZodSchema(z.discriminatedUnion("do
155
195
  context: z.array(z.number()).optional(),
156
196
  }),
157
197
  ]));
158
- async function callOllamaTextGenerationAPI({ api = new OllamaApiConfiguration(), abortSignal, responseFormat, prompt, model, format, contextWindowSize, maxCompletionTokens, mirostat, mirostat_eta, mirostat_tau, num_gpu, num_gqa, num_threads, repeat_last_n, repeat_penalty, seed, stopSequences, temperature, tfs_z, top_k, top_p, system, template, context, raw, }) {
159
- return postJsonToApi({
160
- url: api.assembleUrl(`/api/generate`),
161
- headers: api.headers,
162
- body: {
163
- stream: responseFormat.stream,
164
- model,
165
- prompt,
166
- format,
167
- options: {
168
- mirostat,
169
- mirostat_eta,
170
- mirostat_tau,
171
- num_ctx: contextWindowSize,
172
- num_gpu,
173
- num_gqa,
174
- num_predict: maxCompletionTokens,
175
- num_threads,
176
- repeat_last_n,
177
- repeat_penalty,
178
- seed,
179
- stop: stopSequences,
180
- temperature,
181
- tfs_z,
182
- top_k,
183
- top_p,
184
- },
185
- system,
186
- template,
187
- context,
188
- raw,
189
- },
190
- failedResponseHandler: failedOllamaCallResponseHandler,
191
- successfulResponseHandler: responseFormat.handler,
192
- abortSignal,
193
- });
194
- }
195
198
  async function createOllamaFullDeltaIterableQueue(stream) {
196
199
  const queue = new AsyncQueue();
197
200
  let accumulatedText = "";
@@ -36,7 +36,7 @@ describe("generateText", () => {
36
36
  };
37
37
  const result = await (0, generateText_js_1.generateText)(new OllamaTextGenerationModel_js_1.OllamaTextGenerationModel({
38
38
  model: "test-model",
39
- }), "test prompt");
39
+ }).withTextPrompt(), "test prompt");
40
40
  expect(result).toEqual("test response");
41
41
  });
42
42
  it("should throw retryable ApiCallError when Ollama is overloaded", async () => {
@@ -52,7 +52,7 @@ describe("generateText", () => {
52
52
  retry: (0, retryNever_js_1.retryNever)(),
53
53
  }),
54
54
  model: "test-model",
55
- }), "test prompt");
55
+ }).withTextPrompt(), "test prompt");
56
56
  (0, assert_1.fail)("Should have thrown ApiCallError");
57
57
  }
58
58
  catch (expectedError) {
@@ -34,7 +34,7 @@ describe("generateText", () => {
34
34
  };
35
35
  const result = await generateText(new OllamaTextGenerationModel({
36
36
  model: "test-model",
37
- }), "test prompt");
37
+ }).withTextPrompt(), "test prompt");
38
38
  expect(result).toEqual("test response");
39
39
  });
40
40
  it("should throw retryable ApiCallError when Ollama is overloaded", async () => {
@@ -50,7 +50,7 @@ describe("generateText", () => {
50
50
  retry: retryNever(),
51
51
  }),
52
52
  model: "test-model",
53
- }), "test prompt");
53
+ }).withTextPrompt(), "test prompt");
54
54
  fail("Should have thrown ApiCallError");
55
55
  }
56
56
  catch (expectedError) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "modelfusion",
3
3
  "description": "The TypeScript library for building multi-modal AI applications.",
4
- "version": "0.96.0",
4
+ "version": "0.97.0",
5
5
  "author": "Lars Grammel",
6
6
  "license": "MIT",
7
7
  "keywords": [