mirror of
https://github.com/googleapis/genai-toolbox.git
synced 2026-01-09 15:38:08 -05:00
915 B
915 B
Development
Below are the details to set up a development environment and run tests.
Install
- Clone the repository:
git clone https://github.com/googleapis/genai-toolbox.git - Navigate to the SDK directory:
cd genai-toolbox/sdks/langchain - Install the package in editable mode, so changes are reflected without
reinstall:
pip install -e . - Make code changes and contribute to the SDK's development.
[!TIP] Using
-eoption allows you to make changes to the SDK code and have those changes reflected immediately without reinstalling the package.
Test
-
Navigate to the SDK directory:
cd genai-toolbox/sdks/langchain -
Install the SDK and test dependencies:
pip install -e .[test] -
Run tests and/or contribute to the SDK's development.
pytest