Corin1998 commited on
Commit
25f6bed
·
verified ·
1 Parent(s): 61d8563

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +11 -4
requirements.txt CHANGED
@@ -1,10 +1,17 @@
 
1
  gradio==4.44.1
2
- gradio-client==1.3.0
 
 
3
  openai==1.47.0
4
- pdf2image==1.17.0
 
 
 
5
  pdfplumber==0.11.4
6
  pypdf==5.0.0
7
- Pillow==10.4.0
 
 
8
  pandas==2.2.2
9
  plotly==5.24.1
10
- httpx==0.27.2
 
1
+ # UI
2
  gradio==4.44.1
3
+ gradio_client==1.3.0 # gradio 4.44.1 と整合
4
+
5
+ # モデル/通信
6
  openai==1.47.0
7
+ httpx==0.27.2 # 0.28系だと openai が渡す proxies でエラーになる
8
+
9
+ # PDF/解析
10
+ pymupdf==1.24.10 # = PyMuPDF(OSパッケージ不要で画像化/テキスト化できる)
11
  pdfplumber==0.11.4
12
  pypdf==5.0.0
13
+ pillow==10.4.0
14
+
15
+ # データ処理/可視化
16
  pandas==2.2.2
17
  plotly==5.24.1