Open Interpreter is large, open-source initiative to build a standard interface between language models and computers.
There are many ways to contribute, from helping others on Github or Discord, writing documentation, or improving code.
We depend on contributors like you. Let's build this.
First, please familiarize yourself with our project scope. Then, pick up a task from our roadmap or work on solving an issue.
If you encounter a bug or have a feature in mind, don't hesitate to open a new issue.
This is a minimalist, tighly scoped project that places a premium on simplicity. We're skeptical of new extensions, integrations, and extra features. We would rather not extend the system if it adds nonessential complexity.
- Before taking on significant code changes, please discuss your ideas on Discord to ensure they align with our vision. We want to keep the codebase simple and unintimidating for new users.
- Fork the repository and create a new branch for your work.
- Follow the Running Your Local Fork guide below.
- Make changes with clear code comments explaining your approach. Try to follow existing conventions in the code.
- Follow the Code Formatting and Linting guide below.
- Open a PR into
main
linking any related issues. Provide detailed context on your changes.
We will review PRs when possible and work with you to integrate your contribution. Please be patient as reviews take time. Once approved, your code will be merged.
Once you've forked the code and created a new branch for your work, you can run the fork in CLI mode by following these steps:
- CD into the project folder by running
cd open-interpreter
. - Install
poetry
according to their documentation, which will create a virtual environment for development + handle dependencies. - Install dependencies by running
poetry install
. - Run the program with
poetry run interpreter
. Run tests withpoetry run pytest -s -x
.
Note: This project uses black
and isort
via a pre-commit
hook to ensure consistent code style. If you need to bypass it for some reason, you can git commit
with the --no-verify
flag.
If you wish to install new dependencies into the project, please use poetry add package-name
.
If you need to install dependencies specific to development, like testing tools, formatting tools, etc. please use poetry add package-name --group dev
.
For some, poetry install
might hang on some dependencies. As a first step, try to run the following command in your terminal:
export PYTHON_KEYRING_BACKEND=keyring.backends.fail.Keyring
Then run poetry install
again. If this doesn't work, please join our Discord community for help.
Our project uses black
for code formatting and isort
for import sorting. To ensure consistency across contributions, please adhere to the following guidelines:
-
Install Pre-commit Hooks:
If you want to automatically format your code every time you make a commit, install the pre-commit hooks.
pip install pre-commit pre-commit install
After installing, the hooks will automatically check and format your code every time you commit.
-
Manual Formatting:
If you choose not to use the pre-commit hooks, you can manually format your code using:
black . isort .
Contributions to Open Interpreter would be under the MIT license before version 0.2.0, or under AGPL for subsequent contributions.
Join our Discord community and post in the #General channel to connect with contributors. We're happy to guide you through your first open source contribution to this project!
Thank you for your dedication and understanding as we continue refining our processes. As we explore this extraordinary new technology, we sincerely appreciate your involvement.