Skip to content

Commit df32d5e

Browse files
OpenAI Assistants Agent (#4131)
* initial assistant client draft * expose assistants client * initial openai assistant agentchat draft * update file search * add delete methods and fix typing * add tool execution * fix tool call and add docstring * abstract tools and support thread management * add tests * removed unused typevars * add unsaved test changes * test typing fixes --------- Co-authored-by: Leonardo Pinheiro <[email protected]>
1 parent ad271d9 commit df32d5e

File tree

3 files changed

+680
-0
lines changed

3 files changed

+680
-0
lines changed

python/packages/autogen-agentchat/src/autogen_agentchat/agents/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
from ._base_chat_agent import BaseChatAgent
33
from ._code_executor_agent import CodeExecutorAgent
44
from ._coding_assistant_agent import CodingAssistantAgent
5+
from ._openai_assistant_agent import OpenAIAssistantAgent
56
from ._society_of_mind_agent import SocietyOfMindAgent
67
from ._tool_use_assistant_agent import ToolUseAssistantAgent
78

@@ -11,6 +12,7 @@
1112
"Handoff",
1213
"CodeExecutorAgent",
1314
"CodingAssistantAgent",
15+
"OpenAIAssistantAgent",
1416
"ToolUseAssistantAgent",
1517
"SocietyOfMindAgent",
1618
]

0 commit comments

Comments
 (0)