This Developer Guide is designed to help you contribute to the OpenLLM project. Follow these steps to set up your development environment and learn the process of contributing to our open-source project.
Join our Discord Channel and reach out to us if you have any question!
Before you can start developing, you'll need to set up your environment:
-
Ensure you have Git, and Python3.8+ installed.
-
Fork the OpenLLM repository from GitHub.
-
Clone the forked repository from GitHub:
git clone [email protected]:username/OpenLLM.git && cd openllm
-
Add the OpenLLM upstream remote to your local OpenLLM clone:
git remote add upstream [email protected]:bentoml/OpenLLM.git
-
Configure git to pull from the upstream remote:
git switch main # ensure you're on the main branch git fetch upstream --tags git branch --set-upstream-to=upstream/main
-
Install hatch:
pip install hatch pre-commit
-
Run the following to setup all pre-commit hooks:
hatch run setup
-
Enter a project's environment with.
hatch shell
This will automatically enter a virtual environment and update the relevant dependencies.
Here's a high-level overview of our project structure:
openllm/
├── examples # Usage demonstration scripts
├── src
│ ├── openllm # Core OpenLLM library
│ ├── openllm_client # OpenLLM Python Client code
│ └── openllm_js # OpenLLM JavaScript Client code
├── tests # Automated Tests
├── tools # Utilities Script
├── typings # Typing Checking Utilities Module and Classes
├── DEVELOPMENT.md # The project's Developer Guide
├── LICENSE # Use terms and conditions
├── package.json # Node.js or JavaScript dependencies
├── pyproject.toml # Python Project Specification File (PEP 518)
└── README.md # The project's README file
After setting up your environment, here's how you can start contributing:
-
Create a new branch for your feature or fix:
git checkout -b feature/my-feature
-
Make your changes to the codebase.
-
Run all formatter and linter with
hatch
:hatch run dev:fmt
-
Write tests that verify your feature or fix (see Writing Tests below).
-
Run all tests to ensure your changes haven't broken anything:
hatch run test
-
Commit your changes:
git commit -m "Add my feature"
-
Push your changes to your fork:
git push origin feature/my-feature
-
Submit a Pull Request on GitHub.
If you wish to use a modified version of OpenLLM, install your fork from source
with pip install -e
and set OPENLLM_DEV_BUILD=True
, so that Bentos built will
include the generated wheels for OpenLLM in the bundle.
Good tests are crucial for the stability of our codebase. Always write tests for your features and fixes.
We use pytest
for our tests. Make sure your tests are in the tests/
directory and their filenames start with test_
.
Run all tests with:
hatch run test
To release a new version, use ./tools/run-release-action
. It requires gh
,
jq
and hatch
:
./tools/run-release-action
Note that currently this workflow can only be run by the BentoML team.