- 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.py
And 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.py
And then start the team agent in the third terminal:
python examples/app-builder/team.py
Finally, 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.py
Finally, start a client in the fourth terminal.
python examples/rich_client.py auto_team
User> Generate a calculator in Tkinter.