Autogen Nest #4813
Replies: 2 comments 8 replies
-
Do you mean nested agents, as agents wrapped within an agent?
For v0.4 API yes. |
Beta Was this translation helpful? Give feedback.
-
@ekzhu and this is one of the agents made by a single agent system. Generated Agent File for connection_string_finder5656565656import autogen Set environment variable to disable Dockeros.environ["AUTOGEN_USE_DOCKER"] = "0" Original method codedef find_connection_string(content: str) -> str: Agent configurationconfig_list = [{'model': 'gpt-4o', 'api_key': ', 'api_type': 'azure', 'base_url': ' 'api_version': '2023-03-15-preview'}] llm_config = { Create the agent instanceconnection_string_finder5656565656_agent = autogen.AssistantAgent(
1. Agent's Primary PurposeThe primary purpose of the agent is to locate and extract the value of the "ConnectionString" from a given string of content. This helps in identifying the database connection string configuration in a body of text. 2. Specific Role and ResponsibilitiesThe agent's role is to:
3. Required Capabilities and LimitationsCapabilities:
Limitations:
4. Success Criteria for Task Execution
5. Expected Input Parameters and Return ValuesInput Parameters:
Return Values:
def get_agent(): if name == "main":
|
Beta Was this translation helpful? Give feedback.
-
Can you Let me Know if we can build Agents Using a single Agent in AutoGen. If yes ,after the agents are made can they be used parallelly with the Ongoing Processes?
Beta Was this translation helpful? Give feedback.
All reactions