OpenAILLM¶
BONUS Material: OpenAI LLM.
OpenAILLM
¶
Bases: LLM
OpenAI LLM integration.
Source code in src/llm_agents_from_scratch/llms/openai/llm.py
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 | |
__init__
¶
Create an OpenAILLM instance.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model
|
str
|
The name of the OpenAI LLM. |
required |
api_key
|
str | None
|
An OpenAI api key. Defaults to None. If None, will fallback to OpenAI's api key resolution, looking for an OPENAI_API_KEY env var. |
None
|
**kwargs
|
Any
|
Additional keyword arguments. Passed to the construction of an ~openai.AsyncOpenAI |
{}
|
Source code in src/llm_agents_from_scratch/llms/openai/llm.py
complete
async
¶
Implements complete LLM interaction mode.
Source code in src/llm_agents_from_scratch/llms/openai/llm.py
structured_output
async
¶
Implements structured output LLM interaction mode.
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/openai/llm.py
chat
async
¶
Implements chat LLM interaction mode.
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/openai/llm.py
continue_chat_with_tool_results
async
¶
Implements continue chat with tool results.
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. |