NexusAI-Client

Installation

How to install NexusAI-Client in your Python projects.

Installation 📦

NexusAI-Client requires Python 3.12 or higher. It is intentionally designed with zero heavy dependencies, relying exclusively on httpx and python-dotenv.


🚀 Package Managers

uv is the fastest Python package manager:

uv add nexusai-client

With pip

pip install nexusai-client

With poetry

poetry add nexusai-client

🛠️ Development & Git Options

Install from Git Repository

To track the latest unreleased updates directly from GitHub:

# With uv
uv add git+https://github.com/laurentvv/NexusAI-Client.git

# With pip
pip install git+https://github.com/laurentvv/NexusAI-Client.git

Local Editable Mode (Monorepo)

For local development or contributing to NexusAI-Client:

# With uv
uv add --editable /path/to/NexusAI-Client

# With pip
pip install -e /path/to/NexusAI-Client

In pyproject.toml

[project]
dependencies = [
    "nexusai-client>=0.4.3",
]

✅ Verify Installation

Verify that the installation succeeded by running this one-line command:

python -c "import nexusai_client; print('NexusAI-Client v' + nexusai_client.__version__)"

Expected output:

NexusAI-Client v0.4.3

Next, proceed to the Configuration Guide to configure your API keys.

On this page