diff --git a/autogen_landing.html b/autogen_landing.html new file mode 100644 index 000000000000..d08dfcb73304 --- /dev/null +++ b/autogen_landing.html @@ -0,0 +1,618 @@ + + +
+ + +The Multi-Agent AI Framework for Building Intelligent Applications
+ +Multiple AI agents work together to solve complex problems, each bringing specialized skills and perspectives.
+Agents can use custom tools and functions, from calculators to web browsers to code execution environments.
+Round-robin, selector-based, or custom group chat patterns to coordinate agent interactions.
+JSON-based configuration system makes it simple to define agents, tools, and workflows.
+No-code GUI for building and prototyping multi-agent applications with visual workflow designer.
+Support for multiple LLM providers, custom extensions, and integration with external services.
+Creates itinerary
+Adds local insights
+Provides language tips
+Final travel plan
++import asyncio +from autogen_agentchat.agents import AssistantAgent +from autogen_agentchat.teams import RoundRobinGroupChat +from autogen_ext.models.openai import OpenAIChatCompletionClient + +# Create agents with specialized roles +planner = AssistantAgent( + "planner", + model_client=OpenAIChatCompletionClient(model="gpt-4"), + system_message="You are a travel planner." +) + +local_expert = AssistantAgent( + "local_expert", + model_client=OpenAIChatCompletionClient(model="gpt-4"), + system_message="You provide local insights and tips." +) + +# Create a team and run the workflow +team = RoundRobinGroupChat([planner, local_expert]) +result = await team.run(task="Plan a 3-day trip to Tokyo") +print(result) ++
+# Install AutoGen packages +pip install -U "autogen-agentchat" "autogen-ext[openai]" + +# Install AutoGen Studio for GUI +pip install -U "autogenstudio" + +# Run AutoGen Studio +autogenstudio ui --port 8080 ++