Installation#

There are two ways to install AutoGen Studio - from PyPi or from source. We recommend installing from PyPi unless you plan to modify the source code.

Running the Application#

Once installed, run the web UI by entering the following in a terminal:

autogenstudio ui --port 8081 --appdir /path/to/folder

This will start the application on the specified port. Open your web browser and go to http://localhost:8081/ to begin using AutoGen Studio.

AutoGen Studio also takes several parameters to customize the application:

  • --host <host> argument to specify the host address. By default, it is set to localhost.

  • --appdir <appdir> argument to specify the directory where the app files (e.g., database and generated user files) are stored. By default, it is set to the a .autogenstudio directory in the user’s home directory.

  • --port <port> argument to specify the port number. By default, it is set to 8080.

  • --upgrade-database argument to force-upgrade it’s internal database schema (assuming there are changes in the version you are installing). By default, it is set to False.

  • --reload argument to enable auto-reloading of the server when changes are made to the code. By default, it is set to False.

  • --database-uri argument to specify the database URI. Example values include sqlite:///database.sqlite for SQLite and postgresql+psycopg://user:password@localhost/dbname for PostgreSQL. If this is not specified, the database URI defaults to a autogen.db file in the --appdir directory.

Now that you have AutoGen Studio installed and running, you are ready to explore its capabilities, including defining and modifying agent workflows, interacting with agents and sessions, and expanding agent skills.