Installation
ant-ai requires Python 3.14 or later. uv is the recommended package manager.
From PyPI
uv add ant-ai
Optional extras
Install all optional extras at once:
uv add "ant-ai[all]"
Or pick individual extras:
| Extra | What it adds |
|---|---|
openai |
OpenAI client integration |
langfuse |
Observability via Langfuse |
mem0 |
Long-term memory via mem0 |
viz |
Workflow graph visualization |
uv add "ant-ai[openai]"
uv add "ant-ai[langfuse]"
uv add "ant-ai[mem0]"
uv add "ant-ai[viz]"
From the repository
To install directly from source, point uv at the Git repository:
uv add "ant-ai @ git+https://github.com/idea-idsia/ant-ai"
Verifying the installation
python -c "import ant_ai; print('ok')"