-
Notifications
You must be signed in to change notification settings - Fork 3.4k
/
open_ai_assistant_agent.py
417 lines (371 loc) · 17.6 KB
/
open_ai_assistant_agent.py
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
# Copyright (c) Microsoft. All rights reserved.
import logging
from collections.abc import AsyncIterable
from copy import copy
from typing import TYPE_CHECKING, Any
from openai import AsyncOpenAI
from pydantic import ValidationError
from semantic_kernel.agents.open_ai.open_ai_assistant_base import OpenAIAssistantBase
from semantic_kernel.connectors.ai.open_ai.settings.open_ai_settings import OpenAISettings
from semantic_kernel.const import DEFAULT_SERVICE_NAME
from semantic_kernel.exceptions.agent_exceptions import AgentInitializationException
from semantic_kernel.utils.experimental_decorator import experimental_class
from semantic_kernel.utils.telemetry.user_agent import APP_INFO, prepend_semantic_kernel_to_user_agent
if TYPE_CHECKING:
from semantic_kernel.kernel import Kernel
logger: logging.Logger = logging.getLogger(__name__)
@experimental_class
class OpenAIAssistantAgent(OpenAIAssistantBase):
"""OpenAI Assistant Agent class.
Provides the ability to interact with OpenAI Assistants.
"""
# region Agent Initialization
def __init__(
self,
*,
kernel: "Kernel | None" = None,
service_id: str | None = None,
ai_model_id: str | None = None,
api_key: str | None = None,
org_id: str | None = None,
client: AsyncOpenAI | None = None,
default_headers: dict[str, str] | None = None,
env_file_path: str | None = None,
env_file_encoding: str | None = None,
description: str | None = None,
id: str | None = None,
instructions: str | None = None,
name: str | None = None,
enable_code_interpreter: bool | None = None,
enable_file_search: bool | None = None,
enable_json_response: bool | None = None,
code_interpreter_file_ids: list[str] | None = [],
temperature: float | None = None,
top_p: float | None = None,
vector_store_id: str | None = None,
metadata: dict[str, Any] | None = {},
max_completion_tokens: int | None = None,
max_prompt_tokens: int | None = None,
parallel_tool_calls_enabled: bool | None = True,
truncation_message_count: int | None = None,
**kwargs: Any,
) -> None:
"""Initialize an OpenAIAssistant service.
Args:
kernel: The Kernel instance. (optional)
service_id: The service ID. (optional) If not provided the default service name (default) is used.
ai_model_id: The AI model ID. (optional)
api_key: The OpenAI API key. (optional)
org_id: The OpenAI organization ID. (optional)
client: The OpenAI client. (optional)
default_headers: The default headers. (optional)
env_file_path: The environment file path. (optional)
env_file_encoding: The environment file encoding. (optional)
description: The assistant description. (optional)
id: The assistant ID. (optional)
instructions: The assistant instructions. (optional)
name: The assistant name. (optional)
enable_code_interpreter: Enable code interpreter. (optional)
enable_file_search: Enable file search. (optional)
enable_json_response: Enable JSON response. (optional)
code_interpreter_file_ids: The file IDs. (optional)
temperature: The temperature. (optional)
top_p: The top p. (optional)
vector_store_id: The vector store ID. (optional)
metadata: The assistant metadata. (optional)
max_completion_tokens: The max completion tokens. (optional)
max_prompt_tokens: The max prompt tokens. (optional)
parallel_tool_calls_enabled: Enable parallel tool calls. (optional)
truncation_message_count: The truncation message count. (optional)
kwargs: Additional keyword arguments.
Raises:
AgentInitializationError: If the api_key is not provided in the configuration.
"""
openai_settings = OpenAIAssistantAgent._create_open_ai_settings(
api_key=api_key,
org_id=org_id,
ai_model_id=ai_model_id,
env_file_path=env_file_path,
env_file_encoding=env_file_encoding,
)
if not client and not openai_settings.api_key:
raise AgentInitializationException("The OpenAI API key is required, if a client is not provided.")
if not openai_settings.chat_model_id:
raise AgentInitializationException("The OpenAI chat model ID is required.")
if not client:
client = self._create_client(
api_key=openai_settings.api_key.get_secret_value() if openai_settings.api_key else None,
org_id=openai_settings.org_id,
default_headers=default_headers,
)
service_id = service_id if service_id else DEFAULT_SERVICE_NAME
args: dict[str, Any] = {
"ai_model_id": openai_settings.chat_model_id,
"service_id": service_id,
"client": client,
"description": description,
"instructions": instructions,
"enable_code_interpreter": enable_code_interpreter,
"enable_file_search": enable_file_search,
"enable_json_response": enable_json_response,
"code_interpreter_file_ids": code_interpreter_file_ids,
"temperature": temperature,
"top_p": top_p,
"vector_store_id": vector_store_id,
"metadata": metadata,
"max_completion_tokens": max_completion_tokens,
"max_prompt_tokens": max_prompt_tokens,
"parallel_tool_calls_enabled": parallel_tool_calls_enabled,
"truncation_message_count": truncation_message_count,
}
if name is not None:
args["name"] = name
if id is not None:
args["id"] = id
if kernel is not None:
args["kernel"] = kernel
if kwargs:
args.update(kwargs)
super().__init__(**args)
@classmethod
async def create(
cls,
*,
kernel: "Kernel | None" = None,
service_id: str | None = None,
ai_model_id: str | None = None,
api_key: str | None = None,
org_id: str | None = None,
client: AsyncOpenAI | None = None,
default_headers: dict[str, str] | None = None,
env_file_path: str | None = None,
env_file_encoding: str | None = None,
description: str | None = None,
id: str | None = None,
instructions: str | None = None,
name: str | None = None,
enable_code_interpreter: bool | None = None,
code_interpreter_filenames: list[str] | None = None,
code_interpreter_file_ids: list[str] | None = None,
enable_file_search: bool | None = None,
vector_store_filenames: list[str] | None = None,
vector_store_file_ids: list[str] | None = None,
enable_json_response: bool | None = None,
temperature: float | None = None,
top_p: float | None = None,
vector_store_id: str | None = None,
metadata: dict[str, Any] | None = {},
max_completion_tokens: int | None = None,
max_prompt_tokens: int | None = None,
parallel_tool_calls_enabled: bool | None = True,
truncation_message_count: int | None = None,
**kwargs: Any,
) -> "OpenAIAssistantAgent":
"""Asynchronous class method used to create the OpenAI Assistant Agent.
Args:
kernel: The Kernel instance. (optional)
service_id: The service ID. (optional) If not provided the default service name (default) is used.
ai_model_id: The AI model ID. (optional)
api_key: The OpenAI API key. (optional)
org_id: The OpenAI organization ID. (optional)
client: The OpenAI client. (optional)
default_headers: The default headers. (optional)
env_file_path: The environment file path. (optional)
env_file_encoding: The environment file encoding. (optional)
description: The assistant description. (optional)
id: The assistant ID. (optional)
instructions: The assistant instructions. (optional)
name: The assistant name. (optional)
enable_code_interpreter: Enable code interpreter. (optional)
code_interpreter_filenames: The filenames/paths for files to use with code interpreter. (optional)
code_interpreter_file_ids: The existing file IDs to use with the code interpreter. (optional)
enable_file_search: Enable the file search. (optional)
vector_store_filenames: The filenames/paths for files to use with file search. (optional)
vector_store_file_ids: The existing file IDs to use with file search. (optional)
enable_json_response: Enable JSON response. (optional)
temperature: The temperature. (optional)
top_p: The top p. (optional)
vector_store_id: The vector store ID. (optional)
metadata: The assistant metadata. (optional)
max_completion_tokens: The max completion tokens. (optional)
max_prompt_tokens: The max prompt tokens. (optional)
parallel_tool_calls_enabled: Enable parallel tool calls. (optional)
truncation_message_count: The truncation message count. (optional)
kwargs: Additional keyword arguments.
Returns:
An OpenAIAssistantAgent instance.
"""
agent = cls(
kernel=kernel,
service_id=service_id,
ai_model_id=ai_model_id,
api_key=api_key,
org_id=org_id,
client=client,
default_headers=default_headers,
env_file_path=env_file_path,
env_file_encoding=env_file_encoding,
description=description,
id=id,
instructions=instructions,
name=name,
enable_code_interpreter=enable_code_interpreter,
enable_file_search=enable_file_search,
enable_json_response=enable_json_response,
temperature=temperature,
top_p=top_p,
vector_store_id=vector_store_id,
metadata=metadata,
max_completion_tokens=max_completion_tokens,
max_prompt_tokens=max_prompt_tokens,
parallel_tool_calls_enabled=parallel_tool_calls_enabled,
truncation_message_count=truncation_message_count,
**kwargs,
)
assistant_create_kwargs: dict[str, Any] = {}
code_interpreter_file_ids_combined: list[str] = []
if code_interpreter_file_ids is not None:
code_interpreter_file_ids_combined.extend(code_interpreter_file_ids)
if code_interpreter_filenames is not None:
for file_path in code_interpreter_filenames:
try:
file_id = await agent.add_file(file_path=file_path, purpose="assistants")
code_interpreter_file_ids_combined.append(file_id)
except FileNotFoundError as ex:
logger.error(
f"Failed to upload code interpreter file with path: `{file_path}` with exception: {ex}"
)
raise AgentInitializationException("Failed to upload code interpreter files.", ex) from ex
if code_interpreter_file_ids_combined:
agent.code_interpreter_file_ids = code_interpreter_file_ids_combined
assistant_create_kwargs["code_interpreter_file_ids"] = code_interpreter_file_ids_combined
vector_store_file_ids_combined: list[str] = []
if vector_store_file_ids is not None:
vector_store_file_ids_combined.extend(vector_store_file_ids)
if vector_store_filenames is not None:
for file_path in vector_store_filenames:
try:
file_id = await agent.add_file(file_path=file_path, purpose="assistants")
vector_store_file_ids_combined.append(file_id)
except FileNotFoundError as ex:
logger.error(f"Failed to upload vector store file with path: `{file_path}` with exception: {ex}")
raise AgentInitializationException("Failed to upload vector store files.", ex) from ex
if vector_store_file_ids_combined:
agent.file_search_file_ids = vector_store_file_ids_combined
if enable_file_search or agent.enable_file_search:
vector_store_id = await agent.create_vector_store(file_ids=vector_store_file_ids_combined)
agent.vector_store_id = vector_store_id
assistant_create_kwargs["vector_store_id"] = vector_store_id
agent.assistant = await agent.create_assistant(**assistant_create_kwargs)
return agent
@staticmethod
def _create_client(
api_key: str | None = None, org_id: str | None = None, default_headers: dict[str, str] | None = None
) -> AsyncOpenAI:
"""An internal method to create the OpenAI client from the provided arguments.
Args:
api_key: The OpenAI API key.
org_id: The OpenAI organization ID. (optional)
default_headers: The default headers. (optional)
Returns:
An OpenAI client instance.
"""
merged_headers = dict(copy(default_headers)) if default_headers else {}
if default_headers:
merged_headers.update(default_headers)
if APP_INFO:
merged_headers.update(APP_INFO)
merged_headers = prepend_semantic_kernel_to_user_agent(merged_headers)
if not api_key:
raise AgentInitializationException("Please provide an OpenAI api_key")
return AsyncOpenAI(
api_key=api_key,
organization=org_id,
default_headers=merged_headers,
)
@staticmethod
def _create_open_ai_settings(
api_key: str | None = None,
org_id: str | None = None,
ai_model_id: str | None = None,
env_file_path: str | None = None,
env_file_encoding: str | None = None,
) -> OpenAISettings:
"""An internal method to create the OpenAI settings from the provided arguments.
Args:
api_key: The OpenAI API key.
org_id: The OpenAI organization ID. (optional)
ai_model_id: The AI model ID. (optional)
env_file_path: The environment file path. (optional)
env_file_encoding: The environment file encoding. (optional)
Returns:
An OpenAI settings instance.
"""
try:
openai_settings = OpenAISettings.create(
api_key=api_key,
org_id=org_id,
chat_model_id=ai_model_id,
env_file_path=env_file_path,
env_file_encoding=env_file_encoding,
)
except ValidationError as ex:
raise AgentInitializationException("Failed to create OpenAI settings.", ex) from ex
return openai_settings
async def list_definitions(self) -> AsyncIterable[dict[str, Any]]:
"""List the assistant definitions.
Yields:
An AsyncIterable of dictionaries representing the OpenAIAssistantDefinition.
"""
assistants = await self.client.beta.assistants.list(order="desc")
for assistant in assistants.data:
yield OpenAIAssistantBase._create_open_ai_assistant_definition(assistant)
@classmethod
async def retrieve(
cls,
*,
id: str,
kernel: "Kernel | None" = None,
api_key: str | None = None,
org_id: str | None = None,
ai_model_id: str | None = None,
client: AsyncOpenAI | None = None,
default_headers: dict[str, str] | None = None,
env_file_path: str | None = None,
env_file_encoding: str | None = None,
) -> "OpenAIAssistantAgent":
"""Retrieve an assistant by ID.
Args:
id: The assistant ID.
kernel: The Kernel instance. (optional)
api_key: The OpenAI API key. (optional)
org_id: The OpenAI organization ID. (optional)
ai_model_id: The AI model ID. (optional)
client: The OpenAI client. (optional)
default_headers: The default headers. (optional)
env_file_path: The environment file path. (optional)
env_file_encoding: The environment file encoding. (optional
Returns:
An OpenAIAssistantAgent instance.
"""
openai_settings = OpenAIAssistantAgent._create_open_ai_settings(
api_key=api_key,
org_id=org_id,
ai_model_id=ai_model_id,
env_file_path=env_file_path,
env_file_encoding=env_file_encoding,
)
if not client and not openai_settings.api_key:
raise AgentInitializationException("The OpenAI API key is required, if a client is not provided.")
if not openai_settings.chat_model_id:
raise AgentInitializationException("The OpenAI chat model ID is required.")
if not client:
client = OpenAIAssistantAgent._create_client(
api_key=openai_settings.api_key.get_secret_value() if openai_settings.api_key else None,
org_id=openai_settings.org_id,
default_headers=default_headers,
)
assistant = await client.beta.assistants.retrieve(id)
assistant_definition = OpenAIAssistantBase._create_open_ai_assistant_definition(assistant)
return OpenAIAssistantAgent(kernel=kernel, assistant=assistant, **assistant_definition)
# endregion