This project requires Python >= 3.9 (tested with 3.9, 3.10, 3.11).
-
Create virtual environment with Python 3.11:
uv venv --python 3.11
-
Activate the virtual environment:
source .venv/bin/activate -
Install dependencies:
uv pip install -e ".[dev]"
Run all tests:
pytestRun specific test:
pytest tests/test_chat_clients.py::TestClientLangChainBaseURL::test_empty_base_url_parameters -vRun tests with verbose output:
pytest -v