mirror of
https://github.com/microsoft/autogen.git
synced 2026-04-20 03:02:16 -04:00
Add examples for mixture of agents; patch doc strings (#108)
* add examples for mixture of agents * format
This commit is contained in:
@@ -37,7 +37,6 @@ class ChatCompletionAgent(TypeRoutedAgent):
|
||||
|
||||
Args:
|
||||
description (str): The description of the agent.
|
||||
runtime (AgentRuntime): The runtime to register the agent.
|
||||
system_messages (List[SystemMessage]): The system messages to use for
|
||||
the ChatCompletion API.
|
||||
memory (ChatMemory[Message]): The memory to store and retrieve messages.
|
||||
|
||||
@@ -15,7 +15,6 @@ class OpenAIAssistantAgent(TypeRoutedAgent):
|
||||
|
||||
Args:
|
||||
description (str): The description of the agent.
|
||||
runtime (AgentRuntime): The runtime to register the agent.
|
||||
client (openai.AsyncClient): The client to use for the OpenAI API.
|
||||
assistant_id (str): The assistant ID to use for the OpenAI API.
|
||||
thread_id (str): The thread ID to use for the OpenAI API.
|
||||
|
||||
@@ -11,7 +11,6 @@ class UserProxyAgent(TypeRoutedAgent):
|
||||
|
||||
Args:
|
||||
description (str): The description of the agent.
|
||||
runtime (AgentRuntime): The runtime to register the agent.
|
||||
user_input_prompt (str): The console prompt to show to the user when asking for input.
|
||||
"""
|
||||
|
||||
|
||||
Reference in New Issue
Block a user