Update requirements.txt
Browse files- requirements.txt +21 -14
requirements.txt
CHANGED
@@ -1,27 +1,34 @@
|
|
|
|
1 |
fastapi>=0.95.0
|
2 |
uvicorn>=0.22.0
|
|
|
|
|
3 |
httpx>=0.27.0
|
|
|
|
|
|
|
4 |
openai>=0.27.0
|
|
|
|
|
|
|
5 |
pydantic>=1.10
|
|
|
|
|
6 |
feedparser>=6.0
|
7 |
xmltodict>=0.13.0
|
|
|
|
|
|
|
8 |
|
9 |
-
#
|
10 |
-
spacy>=3.4.1,<3.5.0
|
11 |
-
scispacy>=0.5.1
|
12 |
-
https://s3-us-west-2.amazonaws.com/ai2-s2-scispacy/releases/v0.5.1/en_core_sci_sm-0.5.1.tar.gz
|
13 |
-
|
14 |
-
python-dotenv>=1.0.0
|
15 |
-
pandas>=2.0
|
16 |
-
fpdf>=1.7
|
17 |
plotly>=5.15
|
|
|
18 |
pyvis>=0.3.1
|
|
|
19 |
streamlit-agraph>=0.0.45
|
20 |
jinja2>=3.0.0
|
21 |
-
schedule
|
22 |
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
gql[all]>=3.5
|
|
|
1 |
+
# Web frameworks & servers
|
2 |
fastapi>=0.95.0
|
3 |
uvicorn>=0.22.0
|
4 |
+
|
5 |
+
# HTTP clients & GraphQL
|
6 |
httpx>=0.27.0
|
7 |
+
gql[all]>=3.5
|
8 |
+
|
9 |
+
# LLM & AI
|
10 |
openai>=0.27.0
|
11 |
+
google-generativeai>=0.5.0
|
12 |
+
|
13 |
+
# Data & parsing
|
14 |
pydantic>=1.10
|
15 |
+
python-dotenv>=1.0.0
|
16 |
+
pandas>=2.0
|
17 |
feedparser>=6.0
|
18 |
xmltodict>=0.13.0
|
19 |
+
requests>=2.28.1
|
20 |
+
PyYAML>=6.0
|
21 |
+
schedule>=1.2.0
|
22 |
|
23 |
+
# Visualization & export
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
plotly>=5.15
|
25 |
+
fpdf>=1.7
|
26 |
pyvis>=0.3.1
|
27 |
+
streamlit<2.0,>=1.25.0
|
28 |
streamlit-agraph>=0.0.45
|
29 |
jinja2>=3.0.0
|
|
|
30 |
|
31 |
+
# NLP core
|
32 |
+
spacy==3.4.4 # compatible with scispacy en_core_sci_sm v0.5.x
|
33 |
+
scispacy>=0.5.1
|
34 |
+
en-core-sci-sm @ https://s3-us-west-2.amazonaws.com/ai2-s2-scispacy/releases/v0.5.1/en_core_sci_sm-0.5.1.tar.gz
|
|