Skip to content

Commit 7b69eb6

Browse files
authored
chore: fix developer.md (#4)
1 parent 9127dc6 commit 7b69eb6

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

DEVELOPER.md

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,34 +3,35 @@
33
Below are the details to set up a development environment and run tests.
44

55
## Install
6+
67
1. Clone the repository:
8+
79
```bash
8-
git clone https://github.com/googleapis/genai-toolbox.git
9-
```
10-
1. Navigate to the SDK directory:
11-
```bash
12-
cd genai-toolbox/sdks/langchain
10+
git clone https://github.com/googleapis/genai-toolbox-langchain-sdk-python.git
1311
```
12+
1413
1. Install the package in editable mode, so changes are reflected without
1514
reinstall:
15+
1616
```bash
1717
pip install -e .
1818
```
19+
1920
1. Make code changes and contribute to the SDK's development.
21+
2022
> [!TIP] Using `-e` option allows you to make changes to the SDK code and have
2123
> those changes reflected immediately without reinstalling the package.
2224
2325
## Test
24-
1. Navigate to the SDK directory:
25-
```bash
26-
cd genai-toolbox/sdks/langchain
27-
```
26+
2827
1. Install the SDK and test dependencies:
28+
2929
```bash
3030
pip install -e .[test]
3131
```
32+
3233
1. Run tests and/or contribute to the SDK's development.
3334

3435
```bash
3536
pytest
36-
```
37+
```

0 commit comments

Comments
 (0)