Bachir00 commited on
Commit
1014339
·
1 Parent(s): 20d5dab

requirements

Browse files
Files changed (1) hide show
  1. requirements.txt +36 -0
requirements.txt ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # AI Research Assistant - Configuration requise
2
+
3
+ # Python
4
+ # python>=3.10
5
+
6
+ # LangGraph
7
+ langgraph>=0.0.20
8
+
9
+ # LangChain
10
+ langchain>=0.0.310
11
+ langchain-core>=0.1.4
12
+ langchain-groq>=0.1.0
13
+ langchain-text-splitters>=0.0.1
14
+
15
+ # ChromaDB
16
+ # chromadb>=0.4.18
17
+
18
+ # API Clients
19
+ tavily-python>=0.2.6
20
+ serper-python>=0.1.3
21
+
22
+ # Utilitaires
23
+ python-dotenv>=1.0.0
24
+ requests>=2.31.0
25
+ aiohttp>=3.8.0
26
+ pydantic>=2.5.0
27
+ pydantic-settings>=2.0.0
28
+ markdown>=3.5.1
29
+ fpdf2>=2.7.5
30
+
31
+ # Streamlit (optionnel, pour l'interface utilisateur)
32
+ # streamlit>=1.28.0
33
+
34
+ # Tests
35
+ pytest>=7.0.0
36
+ pytest-asyncio>=0.21.0