Create requirements.txt
Browse files- requirements.txt +16 -0
requirements.txt
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Gradio UI
|
| 2 |
+
|
| 3 |
+
# Google Gemini API
|
| 4 |
+
google-generativeai>=0.7.0
|
| 5 |
+
|
| 6 |
+
# Hugging Face Hub API
|
| 7 |
+
huggingface-hub>=0.16.4
|
| 8 |
+
|
| 9 |
+
# 言語検出
|
| 10 |
+
langdetect>=1.0.9
|
| 11 |
+
|
| 12 |
+
# 翻訳
|
| 13 |
+
googletrans==4.0.0-rc1
|
| 14 |
+
|
| 15 |
+
# その他ユーティリティ
|
| 16 |
+
numpy>=1.24.0 # gradioの内部DataFrameなどで必要になる場合
|