From 83be07b0e40318a3406586894495cab4e5cec5dc Mon Sep 17 00:00:00 2001 From: Franco Valerio Date: Fri, 22 Nov 2024 15:28:33 -0300 Subject: [PATCH] chore: install aiohttp as a separated package Set `aiohttp` as a standalone dependency, decoupling it from the gidgetlab dependency. Pins aiohttp to version `3.11.7` to mitigate known vulnerabilities. --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index e2bbd88..8157923 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,5 @@ -gidgetlab[aiohttp]>=1.1.0 +gidgetlab>=1.1.0 +aiohttp==3.11.7 langchain_core==0.2.0 langchain-openai==0.1.7 langchain-google-genai==1.0.4 # This package contains the LangChain integrations for the Gemini API.