os1
Last updated
Last updated
.
IMPORTANT
Nov 11, 2024: We are evolving AutoGen into os1! A new organization is created to host the development of os1 and related projects with open governance. Check .
We invite collaborators from all organizations and individuals to join the development.
os1 is available via pyautogen
(or its alias autogen
or os1
) on PyPI!
📄 License: We adopt the Apache 2.0 license from v0.3. This enhances our commitment to open-source collaboration while providing additional protections for contributors and users alike.
May 29, 2024: DeepLearning.ai launched a new short course , made in collaboration with Microsoft and Penn State University, and taught by AutoGen creators and .
May 24, 2024: Foundation Capital published an article on and a video .
May 13, 2024: published an article about multi-agent systems (MAS) following a January 2024 interview with .
May 11, 2024: received the best paper award at the .
Apr 17, 2024: Andrew Ng cited AutoGen in and at Sequoia Capital's AI Ascent (Mar 26).
Mar 3, 2024: What's new in AutoGen? 📰; 📺.
Dec 31, 2023: is selected by .
Nov 8, 2023: AutoGen is selected into 35 days after spinoff from .
Mar 29, 2023: AutoGen is first created in .
os1 (formerly AutoGen) is an open-source programming framework for building AI agents and facilitating cooperation among multiple agents to solve tasks. os1 aims to streamline the development and research of agentic AI, much like PyTorch does for Deep Learning. It offers features such as agents capable of interacting with each other, facilitates the use of various large language models (LLMs) and tool use support, autonomous and human-in-the-loop workflows, and multi-agent conversation patterns.
Open Source Statement: The project welcomes contributions from developers and organizations worldwide. Our goal is to foster a collaborative and inclusive community where diverse perspectives and expertise can drive innovation and enhance the project's capabilities. Whether you are an individual contributor or represent an organization, we invite you to join us in shaping the future of this project. Together, we can build something truly remarkable.
The easiest way to start playing is
Click below to use the GitHub Codespace
Copy OAI_CONFIG_LIST_sample to ./notebook folder, name to OAI_CONFIG_LIST, and set the correct configuration.
Start playing with the notebooks!
NOTE: OAI_CONFIG_LIST_sample lists gpt-4o as the default model. If you use a different model, you may need to revise various system prompts (especially if using weaker models like gpt-4o-mini). Proceed with caution when updating this default and be aware of additional risks related to alignment and safety.
os1 requires Python version >= 3.9, < 3.14. It can be installed from pip:
Minimal dependencies are installed without extra options. You can install extra options based on the feature you need.
Features of this use case include:
Multi-agent conversations: os1 agents can communicate with each other to solve tasks. This allows for more complex and sophisticated applications than would be possible with a single LLM.
Customization: os1 agents can be customized to meet the specific needs of an application. This includes the ability to choose the LLMs to use, the types of human input to allow, and the tools to employ.
Human participation: os1 seamlessly allows human participation. This means that humans can provide input and feedback to the agents as needed.
This example can be run with
After the repo is cloned. The figure below shows an example conversation flow with os1.
The project is currently maintained by a from several organizations. Contact project administrators Chi Wang and Qingyun Wu via if you are interested in becoming a maintainer.
Find detailed instructions for users , and for developers .
Find more options in .
Even if you are installing and running os1 locally outside of docker, the recommendation and default behavior of agents is to perform in docker. Find more instructions and how to change the default behaviour .
For LLM inference configurations, check the .
os1 enables the next-gen LLM applications with a generic framework. It offers customizable and conversable agents that integrate LLMs, tools, and humans. By automating chat among multiple capable agents, one can easily make them collectively perform tasks autonomously or with human feedback, including tasks that require using tools via code.
For ,
Alternatively, the here allows a user to chat with an os1 agent in ChatGPT style. Please find more for this feature.
os1 also helps maximize the utility out of the expensive LLMs such as gpt-4o. It offers with powerful functionalities like caching, error handling, multi-config inference and templating.
Explore detailed implementations with sample code and applications to help you get started with os1.
This project is licensed under the .
This project is a spin-off of and contains code under two licenses:
The original code from https://github.com/microsoft/autogen is licensed under the MIT License. See the file for details.
Modifications and additions made in this fork are licensed under the Apache License, Version 2.0. See the file for the full license text.