Skip to content

Commit 58241cd

Browse files
authored
Merge pull request #57 from blink1073/update-langchain
Update langchain and langgraph runners
2 parents e450bfb + c85b21d commit 58241cd

File tree

2 files changed

+12
-16
lines changed

2 files changed

+12
-16
lines changed

langchain-python/run.sh

+6-8
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,16 @@ PYTHON_BINARY=$(find_python3)
1515
# shellcheck disable=SC2164
1616
cd libs/langchain-mongodb
1717

18-
$PYTHON_BINARY -m venv venv_pipeline
19-
source venv_pipeline/bin/activate
18+
$PYTHON_BINARY -m venv venv_pipeline
19+
source venv_pipeline/bin/activate
2020

21-
pip install poetry
21+
pip install uv rust-just
2222

23-
poetry lock
24-
25-
poetry install --with dev
23+
just install
2624

2725
export MONGODB_URI=$MONGODB_URI
2826
export OPENAI_API_KEY=$OPENAI_API_KEY
2927

30-
make test
28+
just test
3129

32-
make integration_test
30+
just integration_tests

langgraph-python/run.sh

+6-8
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,16 @@ PYTHON_BINARY=$(find_python3)
1515
# shellcheck disable=SC2164
1616
cd libs/langgraph-checkpoint-mongodb
1717

18-
$PYTHON_BINARY -m venv venv_pipeline
19-
source venv_pipeline/bin/activate
18+
$PYTHON_BINARY -m venv venv_pipeline
19+
source venv_pipeline/bin/activate
2020

21-
pip install poetry
21+
pip install uv rust-just
2222

23-
poetry lock
24-
25-
poetry install --with dev
23+
just install
2624

2725
export MONGODB_URI=$MONGODB_URI
2826
export OPENAI_API_KEY=$OPENAI_API_KEY
2927

30-
make test
28+
just test
3129

32-
make integration_test
30+
just integration_tests

0 commit comments

Comments
 (0)