- Install
coagent(see Installation). - Start a NATS server (see Distributed).
First, start the dev agent:
export MODEL_ID="your-model-id"
export MODEL_BASE_URL="your-base-url"
export MODEL_API_VERSION="your-api-version"
export MODEL_API_KEY="your-api-key"
python examples/app-builder/dev.pyAnd then start the qa agent in the second terminal:
export MODEL_ID="your-model-id"
export MODEL_BASE_URL="your-base-url"
export MODEL_API_VERSION="your-api-version"
export MODEL_API_KEY="your-api-key"
python examples/app-builder/qa.pyAnd then start the team agent in the third terminal:
python examples/app-builder/team.pyFinally, start a client in the fourth terminal.
python examples/rich_client.py team
User> Generate a calculator in Tkinter.And then start the auto-team agent in the third terminal:
python examples/app-builder/auto_team.pyFinally, start a client in the fourth terminal.
python examples/rich_client.py auto_team
User> Generate a calculator in Tkinter.