Skip to content

Update langchain and langgraph runners #57

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 6 additions & 8 deletions langchain-python/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,16 @@ PYTHON_BINARY=$(find_python3)
# shellcheck disable=SC2164
cd libs/langchain-mongodb

$PYTHON_BINARY -m venv venv_pipeline
source venv_pipeline/bin/activate
$PYTHON_BINARY -m venv venv_pipeline
source venv_pipeline/bin/activate

pip install poetry
pip install uv rust-just

poetry lock

poetry install --with dev
just install

export MONGODB_URI=$MONGODB_URI
export OPENAI_API_KEY=$OPENAI_API_KEY

make test
just test

make integration_test
just integration_tests
14 changes: 6 additions & 8 deletions langgraph-python/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,16 @@ PYTHON_BINARY=$(find_python3)
# shellcheck disable=SC2164
cd libs/langgraph-checkpoint-mongodb

$PYTHON_BINARY -m venv venv_pipeline
source venv_pipeline/bin/activate
$PYTHON_BINARY -m venv venv_pipeline
source venv_pipeline/bin/activate

pip install poetry
pip install uv rust-just

poetry lock

poetry install --with dev
just install

export MONGODB_URI=$MONGODB_URI
export OPENAI_API_KEY=$OPENAI_API_KEY

make test
just test

make integration_test
just integration_tests
Loading