From faafdd35f684b1e1d0f9c4167da5836f31332af4 Mon Sep 17 00:00:00 2001 From: madjin <32600939+madjin@users.noreply.github.com> Date: Tue, 17 Dec 2024 17:42:40 -0500 Subject: [PATCH] add requirements.txt --- .github/workflows/weekly-summaries.yml | 2 +- requirements.txt | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 requirements.txt diff --git a/.github/workflows/weekly-summaries.yml b/.github/workflows/weekly-summaries.yml index c4800d2..1038ba7 100644 --- a/.github/workflows/weekly-summaries.yml +++ b/.github/workflows/weekly-summaries.yml @@ -31,7 +31,7 @@ jobs: - name: Install Python dependencies run: | python -m pip install --upgrade pip - pip install openai + pip install -r requirements.txt - name: Install Node dependencies run: npm ci diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..240b33d --- /dev/null +++ b/requirements.txt @@ -0,0 +1,3 @@ +langchain-core>=0.1.0 +openai>=1.0.0 +langchain-ollama>=0.0.3