Installation#

We recommend installing KodeAgent into a dedicated virtual environment.

Stable Release#

To install (or upgrade to) the latest stable version of KodeAgent, run this command:

pip install -U kodeagent

You can verify the installation by checking the version of KodeAgent:

import kodeagent

print(kodeagent.__version__)

Development Version#

If you want to use the latest features or contribute, clone the repository and install it in editable mode:

git clone https://github.com/barun-saha/kodeagent.git
cd kodeagent
pip install -e .

Optional Dependencies#

Tracing#

While langfuse is included by default, langsmith must be installed separately:

pip install langsmith