Skip to content

terraphim/try-coagent

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Try Coagent - AI Model and Agent Evals, Tests, and Logs

Quick start guide to try the Coagent AI Agent Framework using Docker.

Prerequisites

  • Docker and Docker Compose
  • At least 4GB of available RAM
  • Internet connection to download images

Quick Start

  1. Clone or download this directory

    git clone <repository-url>
    cd try-coagent
  2. Start the demo

    docker-compose up -d

Note

If you already have a CoAgent Demo running, stop it first. Run docker-compose pull and then run docker-compose up.

Tip

If you want to cleanup storage you can run the following command, be mindful when running it as CoAgent storage will be deleted. docker-compose down -v --remove-orphans.

  1. Access the application

    Once the containers are running, open your browser to:

Shutting Down

Once you are done using CoAgent, you can stop services with:

docker-compose down

Data will remain stored, so you can restart later with docker-compose up.

What's Included

The demo starts two main services:

  • coagent-core (port 3000): Main API server with embedded web UI

Your data is stored locally in the ./coagent_demo_storage directory.

Optional Services

The docker-compose.yml includes optional services that are commented out:

Ollama (Local LLM)

Uncomment the ollama service to run local language models. This will:

  • Download and run Ollama
  • Pull all-minilm and qwen3:4b models
  • Require significant disk space and memory

Common Commands

# Start the demo
docker-compose up

# Start in background
docker-compose up -d

# View logs
docker-compose logs -f

# Stop the demo
docker-compose down

# Update to latest version
docker-compose pull
docker-compose up

# Use specific version
IMAGE_TAG='v0.4' docker-compose up

Integration Examples

Troubleshooting

Services won't start

  • Ensure port 3000 is not in use by other applications
  • Check Docker has sufficient resources allocated

Can't access the UI

  • Wait 30-60 seconds after docker-compose up for services to fully start
  • Check logs with docker-compose logs coagent-core

Need to reset data

docker-compose down
rm -rf coagent_demo_storage
docker-compose up

Documentation

For detailed information on integrating CoAgent with your Python AI agents:

Support

For issues or questions:

  • Contact us via the Feedback link in the ui
  • Visit the main repository for documentation
  • File issues in the project's issue tracker

About

CoAgent can help you assess, test, and monitor AI models and agents

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published