OllamaLLM¶
Ollama LLM integration.
OllamaLLM
¶
Bases: LLM
Ollama LLM class.
Integration to ollama library for running open source models locally.
Source code in src/llm_agents_from_scratch/llms/ollama/llm.py
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 | |
__init__
¶
Create an OllamaLLM instance.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model
|
str
|
The name of the LLM model. |
required |
host
|
str | None
|
Host of running Ollama service. Defaults to None. |
None
|
think
|
bool
|
Enable/disable thinking mode. Defaults to False. |
False
|
**kwargs
|
Any
|
Additional keyword arguments. |
{}
|
Source code in src/llm_agents_from_scratch/llms/ollama/llm.py
complete
async
¶
Complete a prompt with an Ollama LLM.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prompt
|
str
|
The prompt to complete. |
required |
**kwargs
|
Any
|
Additional keyword arguments. |
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
CompleteResult |
CompleteResult
|
The text completion result. |
Source code in src/llm_agents_from_scratch/llms/ollama/llm.py
structured_output
async
¶
Structured output interface implementation for Ollama LLM.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prompt
|
str
|
The prompt to elicit the structured output response. |
required |
mdl
|
type[StructuredOutputType]
|
The ~pydantic.BaseModel to output. |
required |
**kwargs
|
Any
|
Additional keyword arguments. |
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
StructuredOutputType |
StructuredOutputType
|
The structured output as the specified |
Source code in src/llm_agents_from_scratch/llms/ollama/llm.py
chat
async
¶
Chat with an Ollama LLM.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input
|
str
|
The user's current input. |
required |
chat_history
|
list[ChatMessage] | None
|
The chat history. |
None
|
tools
|
list[BaseTool] | None
|
The tools available to the LLM. |
None
|
return_history
|
bool
|
Whether to return the update chat history. Defaults to False. |
required |
**kwargs
|
Any
|
Additional keyword arguments. |
{}
|
Returns:
| Type | Description |
|---|---|
tuple[ChatMessage, ChatMessage]
|
tuple[ChatMessage, ChatMessage]: A tuple of ChatMessage with the first message corresponding to the ChatMessage created from the supplied input string, and the second ChatMessage is the response from the LLM. |
Source code in src/llm_agents_from_scratch/llms/ollama/llm.py
continue_chat_with_tool_results
async
¶
Implements continue_chat_with_tool_results method.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tool_call_results
|
Sequence[ToolCallResult]
|
The tool call results. |
required |
chat_history
|
Sequence[ChatMessage]
|
The chat history. |
required |
tools
|
Sequence[BaseTool] | None
|
tools that the LLM can call. |
None
|
**kwargs
|
Any
|
Additional keyword arguments. |
{}
|
Returns:
| Type | Description |
|---|---|
tuple[list[ChatMessage], ChatMessage]
|
tuple[list[ChatMessage], ChatMessage]: A tuple whose first element is a list of ChatMessage objects corresponding to the supplied ToolCallResult converted objects. The second element is the response ChatMessage from the LLM. |