Develop with AutoGen
Introduction
Quick Start
+ with aios_starter(**vars(args)):
+ prepare_framework(FrameworkType.AutoGen)
# Create the agent that uses the LLM.
assistant = ConversableAgent("agent")
# Create the agent that represents the user in the conversation.
user_proxy = UserProxyAgent("user", code_execution_config=False)
# Let the assistant start the conversation. It will end when the user types exit.
assistant.initiate_chat(user_proxy, message="How can I help you today?")
Last updated