aleixlopezpascual commited on
Commit
ce5e7c0
·
1 Parent(s): 9a906e6

add poetry

Browse files
Files changed (2) hide show
  1. poetry.lock +0 -0
  2. pyproject.toml +32 -0
poetry.lock ADDED
The diff for this file is too large to render. See raw diff
 
pyproject.toml ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [tool.poetry]
2
+ name = "final-assignment-v3"
3
+ version = "0.1.0"
4
+ description = ""
5
+ authors = ["aleixlopezpascual <[email protected]>"]
6
+ readme = "README.md"
7
+ packages = [{include = "final_assignment_v3"}]
8
+
9
+ [tool.poetry.dependencies]
10
+ python = "^3.10"
11
+ gradio = "*"
12
+ requests = "*"
13
+ langchain = "*"
14
+ langchain-community = "*"
15
+ langchain-core = "*"
16
+ langchain-google-genai = "*"
17
+ langchain-huggingface = "*"
18
+ langchain-groq = "*"
19
+ langchain-tavily = "*"
20
+ langchain-chroma = "*"
21
+ langgraph = "*"
22
+ huggingface_hub = "*"
23
+ supabase = "*"
24
+ arxiv = "*"
25
+ pymupdf = "*"
26
+ wikipedia = "*"
27
+ pgvector = "*"
28
+ python-dotenv = "*"
29
+
30
+ [build-system]
31
+ requires = ["poetry-core"]
32
+ build-backend = "poetry.core.masonry.api"