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 | class Ollama(FunctionCallingLLM):
"""Ollama LLM.
Visit https://ollama.com/ to download and install Ollama.
Run `ollama serve` to start a server.
Run `ollama pull <name>` to download a model to run.
Examples:
`pip install llama-index-llms-ollama`
```python
from llama_index.llms.ollama import Ollama
llm = Ollama(model="llama2", request_timeout=60.0)
response = llm.complete("What is the capital of France?")
print(response)
```
"""
base_url: str = Field(
default="http://localhost:11434",
description="Base url the model is hosted under.",
)
model: str = Field(description="The Ollama model to use.")
temperature: float = Field(
default=0.75,
description="The temperature to use for sampling.",
ge=0.0,
le=1.0,
)
context_window: int = Field(
default=DEFAULT_CONTEXT_WINDOW,
description="The maximum number of context tokens for the model.",
gt=0,
)
request_timeout: float = Field(
default=DEFAULT_REQUEST_TIMEOUT,
description="The timeout for making http request to Ollama API server",
)
prompt_key: str = Field(
default="prompt", description="The key to use for the prompt in API calls."
)
json_mode: bool = Field(
default=False,
description="Whether to use JSON mode for the Ollama API.",
)
additional_kwargs: Dict[str, Any] = Field(
default_factory=dict,
description="Additional model parameters for the Ollama API.",
)
is_function_calling_model: bool = Field(
default=True,
description="Whether the model is a function calling model.",
)
keep_alive: Optional[Union[float, str]] = Field(
default="5m",
description="controls how long the model will stay loaded into memory following the request(default: 5m)",
)
_client: Optional[Client] = PrivateAttr()
_async_client: Optional[AsyncClient] = PrivateAttr()
def __init__(
self,
model: str,
base_url: str = "http://localhost:11434",
temperature: float = 0.75,
context_window: int = DEFAULT_CONTEXT_WINDOW,
request_timeout: float = DEFAULT_REQUEST_TIMEOUT,
prompt_key: str = "prompt",
json_mode: bool = False,
additional_kwargs: Dict[str, Any] = {},
client: Optional[Client] = None,
async_client: Optional[AsyncClient] = None,
is_function_calling_model: bool = True,
keep_alive: Optional[Union[float, str]] = None,
**kwargs: Any,
) -> None:
super().__init__(
model=model,
base_url=base_url,
temperature=temperature,
context_window=context_window,
request_timeout=request_timeout,
prompt_key=prompt_key,
json_mode=json_mode,
additional_kwargs=additional_kwargs,
is_function_calling_model=is_function_calling_model,
keep_alive=keep_alive,
**kwargs,
)
self._client = client
self._async_client = async_client
@classmethod
def class_name(cls) -> str:
return "Ollama_llm"
@property
def metadata(self) -> LLMMetadata:
"""LLM metadata."""
return LLMMetadata(
context_window=self.context_window,
num_output=DEFAULT_NUM_OUTPUTS,
model_name=self.model,
is_chat_model=True, # Ollama supports chat API for all models
# TODO: Detect if selected model is a function calling model?
is_function_calling_model=self.is_function_calling_model,
)
@property
def client(self) -> Client:
if self._client is None:
self._client = Client(host=self.base_url, timeout=self.request_timeout)
return self._client
@property
def async_client(self) -> AsyncClient:
if self._async_client is None:
self._async_client = AsyncClient(
host=self.base_url, timeout=self.request_timeout
)
return self._async_client
@property
def _model_kwargs(self) -> Dict[str, Any]:
base_kwargs = {
"temperature": self.temperature,
"num_ctx": self.context_window,
}
return {
**base_kwargs,
**self.additional_kwargs,
}
def _convert_to_ollama_messages(self, messages: Sequence[ChatMessage]) -> Dict:
return [
{
"role": message.role.value,
"content": message.content or "",
**(
{"tool_calls": message.additional_kwargs["tool_calls"]}
if "tool_calls" in message.additional_kwargs
else {}
),
}
for message in messages
]
def _get_response_token_counts(self, raw_response: dict) -> dict:
"""Get the token usage reported by the response."""
try:
prompt_tokens = raw_response["prompt_eval_count"]
completion_tokens = raw_response["eval_count"]
total_tokens = prompt_tokens + completion_tokens
except KeyError:
return {}
except TypeError:
return {}
return {
"prompt_tokens": prompt_tokens,
"completion_tokens": completion_tokens,
"total_tokens": total_tokens,
}
def _prepare_chat_with_tools(
self,
tools: List["BaseTool"],
user_msg: Optional[Union[str, ChatMessage]] = None,
chat_history: Optional[List[ChatMessage]] = None,
verbose: bool = False,
allow_parallel_tool_calls: bool = False,
**kwargs: Any,
) -> Dict[str, Any]:
tool_specs = [
tool.metadata.to_openai_tool(skip_length_check=True) for tool in tools
]
if isinstance(user_msg, str):
user_msg = ChatMessage(role=MessageRole.USER, content=user_msg)
messages = chat_history or []
if user_msg:
messages.append(user_msg)
return {
"messages": messages,
"tools": tool_specs or None,
}
def _validate_chat_with_tools_response(
self,
response: ChatResponse,
tools: List["BaseTool"],
allow_parallel_tool_calls: bool = False,
**kwargs: Any,
) -> ChatResponse:
"""Validate the response from chat_with_tools."""
if not allow_parallel_tool_calls:
force_single_tool_call(response)
return response
def get_tool_calls_from_response(
self,
response: "ChatResponse",
error_on_no_tool_call: bool = True,
) -> List[ToolSelection]:
"""Predict and call the tool."""
tool_calls = response.message.additional_kwargs.get("tool_calls", [])
if len(tool_calls) < 1:
if error_on_no_tool_call:
raise ValueError(
f"Expected at least one tool call, but got {len(tool_calls)} tool calls."
)
else:
return []
tool_selections = []
for tool_call in tool_calls:
argument_dict = tool_call["function"]["arguments"]
tool_selections.append(
ToolSelection(
# tool ids not provided by Ollama
tool_id=tool_call["function"]["name"],
tool_name=tool_call["function"]["name"],
tool_kwargs=argument_dict,
)
)
return tool_selections
@llm_chat_callback()
def chat(self, messages: Sequence[ChatMessage], **kwargs: Any) -> ChatResponse:
ollama_messages = self._convert_to_ollama_messages(messages)
tools = kwargs.pop("tools", None)
format = kwargs.pop("format", "json" if self.json_mode else None)
response = self.client.chat(
model=self.model,
messages=ollama_messages,
stream=False,
format=format,
tools=tools,
options=self._model_kwargs,
keep_alive=self.keep_alive,
)
response = dict(response)
tool_calls = response["message"].get("tool_calls", [])
token_counts = self._get_response_token_counts(response)
if token_counts:
response["usage"] = token_counts
return ChatResponse(
message=ChatMessage(
content=response["message"]["content"],
role=response["message"]["role"],
additional_kwargs={"tool_calls": tool_calls},
),
raw=response,
)
@llm_chat_callback()
def stream_chat(
self, messages: Sequence[ChatMessage], **kwargs: Any
) -> ChatResponseGen:
ollama_messages = self._convert_to_ollama_messages(messages)
tools = kwargs.pop("tools", None)
format = kwargs.pop("format", "json" if self.json_mode else None)
def gen() -> ChatResponseGen:
response = self.client.chat(
model=self.model,
messages=ollama_messages,
stream=True,
format=format,
tools=tools,
options=self._model_kwargs,
keep_alive=self.keep_alive,
)
response_txt = ""
for r in response:
if r["message"]["content"] is None:
continue
r = dict(r)
response_txt += r["message"]["content"]
tool_calls = r["message"].get("tool_calls", [])
token_counts = self._get_response_token_counts(r)
if token_counts:
r["usage"] = token_counts
yield ChatResponse(
message=ChatMessage(
content=response_txt,
role=r["message"]["role"],
additional_kwargs={"tool_calls": tool_calls},
),
delta=r["message"]["content"],
raw=r,
)
return gen()
@llm_chat_callback()
async def astream_chat(
self, messages: Sequence[ChatMessage], **kwargs: Any
) -> ChatResponseAsyncGen:
ollama_messages = self._convert_to_ollama_messages(messages)
tools = kwargs.pop("tools", None)
format = kwargs.pop("format", "json" if self.json_mode else None)
async def gen() -> ChatResponseAsyncGen:
response = await self.async_client.chat(
model=self.model,
messages=ollama_messages,
stream=True,
format=format,
tools=tools,
options=self._model_kwargs,
keep_alive=self.keep_alive,
)
response_txt = ""
async for r in response:
if r["message"]["content"] is None:
continue
r = dict(r)
response_txt += r["message"]["content"]
tool_calls = r["message"].get("tool_calls", [])
token_counts = self._get_response_token_counts(r)
if token_counts:
r["usage"] = token_counts
yield ChatResponse(
message=ChatMessage(
content=response_txt,
role=r["message"]["role"],
additional_kwargs={"tool_calls": tool_calls},
),
delta=r["message"]["content"],
raw=r,
)
return gen()
@llm_chat_callback()
async def achat(
self, messages: Sequence[ChatMessage], **kwargs: Any
) -> ChatResponseAsyncGen:
ollama_messages = self._convert_to_ollama_messages(messages)
tools = kwargs.pop("tools", None)
format = kwargs.pop("format", "json" if self.json_mode else None)
response = await self.async_client.chat(
model=self.model,
messages=ollama_messages,
stream=False,
format=format,
tools=tools,
options=self._model_kwargs,
keep_alive=self.keep_alive,
)
response = dict(response)
tool_calls = response["message"].get("tool_calls", [])
token_counts = self._get_response_token_counts(response)
if token_counts:
response["usage"] = token_counts
return ChatResponse(
message=ChatMessage(
content=response["message"]["content"],
role=response["message"]["role"],
additional_kwargs={"tool_calls": tool_calls},
),
raw=response,
)
@llm_completion_callback()
def complete(
self, prompt: str, formatted: bool = False, **kwargs: Any
) -> CompletionResponse:
return chat_to_completion_decorator(self.chat)(prompt, **kwargs)
@llm_completion_callback()
async def acomplete(
self, prompt: str, formatted: bool = False, **kwargs: Any
) -> CompletionResponse:
return await achat_to_completion_decorator(self.achat)(prompt, **kwargs)
@llm_completion_callback()
def stream_complete(
self, prompt: str, formatted: bool = False, **kwargs: Any
) -> CompletionResponseGen:
return stream_chat_to_completion_decorator(self.stream_chat)(prompt, **kwargs)
@llm_completion_callback()
async def astream_complete(
self, prompt: str, formatted: bool = False, **kwargs: Any
) -> CompletionResponseAsyncGen:
return await astream_chat_to_completion_decorator(self.astream_chat)(
prompt, **kwargs
)
@dispatcher.span
def structured_predict(
self,
output_cls: Type[BaseModel],
prompt: PromptTemplate,
llm_kwargs: Optional[Dict[str, Any]] = None,
**prompt_args: Any,
) -> BaseModel:
if self.pydantic_program_mode == PydanticProgramMode.DEFAULT:
llm_kwargs = llm_kwargs or {}
llm_kwargs["format"] = output_cls.model_json_schema()
messages = prompt.format_messages(**prompt_args)
response = self.chat(messages, **llm_kwargs)
return output_cls.model_validate_json(response.message.content or "")
else:
return super().structured_predict(
output_cls, prompt, llm_kwargs, **prompt_args
)
@dispatcher.span
async def astructured_predict(
self,
output_cls: Type[BaseModel],
prompt: PromptTemplate,
llm_kwargs: Optional[Dict[str, Any]] = None,
**prompt_args: Any,
) -> BaseModel:
if self.pydantic_program_mode == PydanticProgramMode.DEFAULT:
llm_kwargs = llm_kwargs or {}
llm_kwargs["format"] = output_cls.model_json_schema()
messages = prompt.format_messages(**prompt_args)
response = await self.achat(messages, **llm_kwargs)
return output_cls.model_validate_json(response.message.content or "")
else:
return await super().astructured_predict(
output_cls, prompt, llm_kwargs, **prompt_args
)
@dispatcher.span
def stream_structured_predict(
self,
output_cls: Type[BaseModel],
prompt: PromptTemplate,
llm_kwargs: Optional[Dict[str, Any]] = None,
**prompt_args: Any,
) -> Generator[Union[BaseModel, List[BaseModel]], None, None]:
"""Stream structured predictions as they are generated.
Args:
output_cls: The Pydantic class to parse responses into
prompt: The prompt template to use
llm_kwargs: Optional kwargs for the LLM
**prompt_args: Args to format the prompt with
Returns:
Generator yielding partial objects as they are generated
"""
if self.pydantic_program_mode == PydanticProgramMode.DEFAULT:
def gen(
output_cls: Type[BaseModel],
prompt: PromptTemplate,
llm_kwargs: Dict[str, Any],
prompt_args: Dict[str, Any],
) -> Generator[Union[BaseModel, List[BaseModel]], None, None]:
llm_kwargs = llm_kwargs or {}
llm_kwargs["format"] = output_cls.model_json_schema()
messages = prompt.format_messages(**prompt_args)
response_gen = self.stream_chat(messages, **llm_kwargs)
cur_objects = None
for response in response_gen:
try:
objects = process_streaming_objects(
response,
output_cls,
cur_objects=cur_objects,
allow_parallel_tool_calls=False,
flexible_mode=True,
)
cur_objects = (
objects if isinstance(objects, list) else [objects]
)
yield objects
except Exception:
continue
return gen(output_cls, prompt, llm_kwargs, prompt_args)
else:
return super().stream_structured_predict(
output_cls, prompt, llm_kwargs, **prompt_args
)
@dispatcher.span
async def astream_structured_predict(
self,
output_cls: Type[BaseModel],
prompt: PromptTemplate,
llm_kwargs: Optional[Dict[str, Any]] = None,
**prompt_args: Any,
) -> AsyncGenerator[Union[BaseModel, List[BaseModel]], None]:
"""Async version of stream_structured_predict."""
if self.pydantic_program_mode == PydanticProgramMode.DEFAULT:
async def gen(
output_cls: Type[BaseModel],
prompt: PromptTemplate,
llm_kwargs: Dict[str, Any],
prompt_args: Dict[str, Any],
) -> AsyncGenerator[Union[BaseModel, List[BaseModel]], None]:
llm_kwargs = llm_kwargs or {}
llm_kwargs["format"] = output_cls.model_json_schema()
messages = prompt.format_messages(**prompt_args)
response_gen = await self.astream_chat(messages, **llm_kwargs)
cur_objects = None
async for response in response_gen:
try:
objects = process_streaming_objects(
response,
output_cls,
cur_objects=cur_objects,
allow_parallel_tool_calls=False,
flexible_mode=True,
)
cur_objects = (
objects if isinstance(objects, list) else [objects]
)
yield objects
except Exception:
continue
return gen(output_cls, prompt, llm_kwargs, prompt_args)
else:
# Fall back to non-streaming structured predict
return await super().astream_structured_predict(
output_cls, prompt, llm_kwargs, **prompt_args
)
|