Local Deployment

Running Cleo locally is ideal for development, agent design, tool testing, and iterative prototyping. This guide covers everything needed to clone the project, configure your environment, and start building with agents on your own machine.


Prerequisites

Before deploying Cleo locally, ensure the following:

  • Python 3.10 or later is installed

  • pip and virtualenv are available

  • Git is installed and available in your terminal

  • You're working on a Unix-based system (macOS, Linux, or WSL for Windows)

Optional but recommended:


Step-by-Step Setup

1. Clone the Repository

bashCopyEditgit clone https://github.com/HUADA999/Cleo.git
cd Cleo

2. Create a Virtual Environment

Using venv:

Or with Poetry:

3. Install Dependencies

If you're using GPU-based libraries (like PyTorch or FAISS with CUDA), install those manually based on your setup.


Environment Configuration

Copy and modify the default environment config:

Then configure your .env file with:

You can change the default agent here without modifying code.


Launching Cleo

Default Mode

This will load the agent specified in .env and enter an interactive loop.

Example session:

Load Any Agent Manually

You can also run tasks programmatically:


Development Tips

  • Use logging.debug() calls inside tools or memory layers to monitor behavior.

  • Add breakpoints in core/agent.py to trace agent state transitions.

  • Use the tools/ directory to add or modify custom tools and test them in isolation.


Cleanup & Reset

To reset memory or agent state during dev:

Or clear memory in-code:


Summary

Local deployment is the recommended way to experiment with agent behavior, create new personas, test tools, and evaluate workflows before deploying remotely. Once your setup is stable, you can move into containerized or server deployments, which are covered in the next section.

Last updated