-
Notifications
You must be signed in to change notification settings - Fork 3.4k
/
azure_assistant_agent.py
476 lines (428 loc) · 20.4 KB
/
azure_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
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
# Copyright (c) Microsoft. All rights reserved.
import logging
from collections.abc import AsyncIterable, Awaitable, Callable
from copy import copy
from typing import TYPE_CHECKING, Any
from openai import AsyncAzureOpenAI
from pydantic import ValidationError
from semantic_kernel.agents.open_ai.open_ai_assistant_base import OpenAIAssistantBase
from semantic_kernel.connectors.ai.open_ai.settings.azure_open_ai_settings import AzureOpenAISettings
from semantic_kernel.const import DEFAULT_SERVICE_NAME
from semantic_kernel.exceptions.agent_exceptions import AgentInitializationException
from semantic_kernel.kernel_pydantic import HttpsUrl
from semantic_kernel.utils.authentication.entra_id_authentication import get_entra_auth_token
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 AzureAssistantAgent(OpenAIAssistantBase):
"""Azure OpenAI Assistant Agent class.
Provides the ability to interact with Azure OpenAI Assistants.
"""
# region Agent Initialization
def __init__(
self,
kernel: "Kernel | None" = None,
service_id: str | None = None,
deployment_name: str | None = None,
api_key: str | None = None,
endpoint: HttpsUrl | None = None,
api_version: str | None = None,
ad_token: str | None = None,
ad_token_provider: Callable[[], str | Awaitable[str]] | None = None,
client: AsyncAzureOpenAI | 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,
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,
token_endpoint: str | None = None,
**kwargs: Any,
) -> None:
"""Initialize an Azure OpenAI Assistant Agent.
Args:
kernel: The Kernel instance. (optional)
service_id: The service ID. (optional)
deployment_name: The deployment name. (optional)
api_key: The Azure OpenAI API key. (optional)
endpoint: The Azure OpenAI endpoint. (optional)
api_version: The Azure OpenAI API version. (optional)
ad_token: The Azure AD token. (optional)
ad_token_provider: The Azure AD token provider. (optional)
client: The Azure 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 description. (optional)
id: The Agent ID. (optional)
instructions: The Agent instructions. (optional)
name: The Agent name. (optional)
enable_code_interpreter: Enable the code interpreter. (optional)
enable_file_search: Enable the file search. (optional)
enable_json_response: Enable the JSON response. (optional)
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 metadata. (optional)
max_completion_tokens: The maximum completion tokens. (optional)
max_prompt_tokens: The maximum prompt tokens. (optional)
parallel_tool_calls_enabled: Enable parallel tool calls. (optional)
truncation_message_count: The truncation message count. (optional)
token_endpoint: The Azure AD token endpoint. (optional)
**kwargs: Additional keyword arguments.
Raises:
AgentInitializationError: If the api_key is not provided in the configuration.
"""
azure_openai_settings = AzureAssistantAgent._create_azure_openai_settings(
api_key=api_key,
endpoint=endpoint,
deployment_name=deployment_name,
api_version=api_version,
env_file_path=env_file_path,
env_file_encoding=env_file_encoding,
token_endpoint=token_endpoint,
)
if not azure_openai_settings.chat_deployment_name:
raise AgentInitializationException("The Azure OpenAI chat_deployment_name is required.")
if (
client is None
and azure_openai_settings.api_key is None
and ad_token_provider is None
and ad_token is None
and azure_openai_settings.token_endpoint
):
ad_token = get_entra_auth_token(azure_openai_settings.token_endpoint)
if not client and not azure_openai_settings.api_key and not ad_token and not ad_token_provider:
raise AgentInitializationException("Please provide either api_key, ad_token or ad_token_provider.")
if not client:
client = self._create_client(
api_key=azure_openai_settings.api_key.get_secret_value() if azure_openai_settings.api_key else None,
endpoint=azure_openai_settings.endpoint,
api_version=azure_openai_settings.api_version,
ad_token=ad_token,
ad_token_provider=ad_token_provider,
default_headers=default_headers,
)
service_id = service_id if service_id else DEFAULT_SERVICE_NAME
args: dict[str, Any] = {
"kernel": kernel,
"ai_model_id": azure_openai_settings.chat_deployment_name,
"service_id": service_id,
"client": client,
"name": name,
"description": description,
"instructions": instructions,
"enable_code_interpreter": enable_code_interpreter,
"enable_file_search": enable_file_search,
"enable_json_response": enable_json_response,
"file_ids": 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 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,
deployment_name: str | None = None,
api_key: str | None = None,
endpoint: HttpsUrl | None = None,
api_version: str | None = None,
ad_token: str | None = None,
ad_token_provider: Callable[[], str | Awaitable[str]] | None = None,
client: AsyncAzureOpenAI | 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,
) -> "AzureAssistantAgent":
"""Asynchronous class method used to create the OpenAI Assistant Agent.
Args:
kernel: The Kernel instance. (optional)
service_id: The service ID. (optional)
deployment_name: The deployment name. (optional)
api_key: The Azure OpenAI API key. (optional)
endpoint: The Azure OpenAI endpoint. (optional)
api_version: The Azure OpenAI API version. (optional)
ad_token: The Azure AD token. (optional)
ad_token_provider: The Azure AD token provider. (optional)
client: The Azure 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 description. (optional)
id: The Agent ID. (optional)
instructions: The Agent instructions. (optional)
name: The Agent name. (optional)
enable_code_interpreter: Enable the code interpreter. (optional)
code_interpreter_filenames: The filenames/paths to use with the 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 the JSON response. (optional)
temperature: The temperature. (optional)
top_p: The top p. (optional)
vector_store_id: The vector store ID. (optional)
metadata: The metadata. (optional)
max_completion_tokens: The maximum completion tokens. (optional)
max_prompt_tokens: The maximum 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 instance of the AzureOpenAIAssistantAgent
"""
agent = cls(
kernel=kernel,
service_id=service_id,
deployment_name=deployment_name,
api_key=api_key,
endpoint=endpoint,
api_version=api_version,
ad_token=ad_token,
ad_token_provider=ad_token_provider,
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,
endpoint: HttpsUrl | None = None,
api_version: str | None = None,
ad_token: str | None = None,
ad_token_provider: Callable[[], str | Awaitable[str]] | None = None,
default_headers: dict[str, str] | None = None,
) -> AsyncAzureOpenAI:
"""Create the OpenAI client from configuration.
Args:
api_key: The OpenAI API key.
endpoint: The OpenAI endpoint.
api_version: The OpenAI API version.
ad_token: The Azure AD token.
ad_token_provider: The Azure AD token provider.
default_headers: The default headers.
Returns:
An AsyncAzureOpenAI client instance.
"""
merged_headers = dict(copy(default_headers)) if default_headers else {}
if APP_INFO:
merged_headers.update(APP_INFO)
merged_headers = prepend_semantic_kernel_to_user_agent(merged_headers)
if not api_key and not ad_token and not ad_token_provider:
raise AgentInitializationException(
"Please provide either AzureOpenAI api_key, an ad_token or an ad_token_provider or a client."
)
if not endpoint:
raise AgentInitializationException("Please provide an AzureOpenAI endpoint.")
return AsyncAzureOpenAI(
azure_endpoint=str(endpoint),
api_version=api_version,
api_key=api_key,
azure_ad_token=ad_token,
azure_ad_token_provider=ad_token_provider,
default_headers=merged_headers,
)
@staticmethod
def _create_azure_openai_settings(
api_key: str | None = None,
endpoint: HttpsUrl | None = None,
deployment_name: str | None = None,
api_version: str | None = None,
env_file_path: str | None = None,
env_file_encoding: str | None = None,
token_endpoint: str | None = None,
) -> AzureOpenAISettings:
"""Create the Azure OpenAI settings.
Args:
api_key: The Azure OpenAI API key.
endpoint: The Azure OpenAI endpoint.
deployment_name: The Azure OpenAI chat deployment name.
api_version: The Azure OpenAI API version.
env_file_path: The environment file path.
env_file_encoding: The environment file encoding.
token_endpoint: The Azure AD token endpoint.
Returns:
An instance of the AzureOpenAISettings.
"""
try:
azure_openai_settings = AzureOpenAISettings.create(
api_key=api_key,
endpoint=endpoint,
chat_deployment_name=deployment_name,
api_version=api_version,
env_file_path=env_file_path,
env_file_encoding=env_file_encoding,
token_endpoint=token_endpoint,
)
except ValidationError as ex:
raise AgentInitializationException("Failed to create Azure OpenAI settings.", ex) from ex
return azure_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,
api_key: str | None = None,
endpoint: HttpsUrl | None = None,
api_version: str | None = None,
ad_token: str | None = None,
ad_token_provider: Callable[[], str | Awaitable[str]] | None = None,
client: AsyncAzureOpenAI | None = None,
kernel: "Kernel | None" = None,
default_headers: dict[str, str] | None = None,
env_file_path: str | None = None,
env_file_encoding: str | None = None,
) -> "AzureAssistantAgent":
"""Retrieve an assistant by ID.
Args:
id: The assistant ID.
api_key: The Azure OpenAI API
endpoint: The Azure OpenAI endpoint. (optional)
api_version: The Azure OpenAI API version. (optional)
ad_token: The Azure AD token. (optional)
ad_token_provider: The Azure AD token provider. (optional)
client: The Azure OpenAI client. (optional)
kernel: The Kernel instance. (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 AzureAssistantAgent instance.
"""
azure_openai_settings = AzureAssistantAgent._create_azure_openai_settings(
api_key=api_key,
endpoint=endpoint,
api_version=api_version,
env_file_path=env_file_path,
env_file_encoding=env_file_encoding,
)
if not azure_openai_settings.chat_deployment_name:
raise AgentInitializationException("The Azure OpenAI chat_deployment_name is required.")
if not azure_openai_settings.api_key and not ad_token and not ad_token_provider:
raise AgentInitializationException("Please provide either api_key, ad_token or ad_token_provider.")
if not client:
client = AzureAssistantAgent._create_client(
api_key=api_key,
endpoint=endpoint,
api_version=api_version,
ad_token=ad_token,
ad_token_provider=ad_token_provider,
default_headers=default_headers,
)
assistant = await client.beta.assistants.retrieve(id)
assistant_definition = OpenAIAssistantBase._create_open_ai_assistant_definition(assistant)
return AzureAssistantAgent(kernel=kernel, assistant=assistant, **assistant_definition)
# endregion