This README provides instructions for installing, configuring, and managing the AutoGen Studio application using Docker Compose. For more information about AutoGen Studio, visit: https://microsoft.github.io/autogen/blog/2023/12/01/AutoGenStudio/
This is a fork of of Dan Murfitt's repo https://github.com/danmurf/autogen-studio-docker-compose
Make sure you have the following:
- Docker
- Docker Compose
- An OpenAI API Key.
- Run this docker compose run commmand, replacing the OPEN_API_KEY with your own.
docker run -d \
--name autogenstudio \
-p 8081:8081 \
-e OPENAI_API_KEY=$OPENAI_API_KEY \
--restart unless-stopped \
ghcr.io/matthewglenn/autogen-studio-docker-compose:latest
- Use this docker compose file, replacing the OPEN_API_KEY with your own or using a value in the an
.env
file.
version: "3"
services:
autogenstudio:
container_name: autogenstudio
image: ghcr.io/matthewglenn/autogen-studio-docker-compose:latest
ports:
- 8081:8081
environment:
- OPENAI_API_KEY=$OPENAI_API_KEY
restart: unless-stopped
- Build and start the AutoGen Studio application using Docker Compose:
docker-compose up
Access Autogen Studio using http://localhost:8081
Please be mindful of your OpenAI (or any other provider) API key usage when using AutoGen Studio. Excessive API usage may result in high charges. By using this application, you acknowledge and accept responsibility for monitoring and controlling your API usage.