Add `requirements.txt`
Browse files- .gitignore +1 -0
- app.py +1 -1
- requirements.txt +4 -0
.gitignore
CHANGED
@@ -2,6 +2,7 @@
|
|
2 |
data/
|
3 |
flagged/
|
4 |
gradio_cached_examples/
|
|
|
5 |
|
6 |
# Byte-compiled / optimized / DLL files
|
7 |
__pycache__/
|
|
|
2 |
data/
|
3 |
flagged/
|
4 |
gradio_cached_examples/
|
5 |
+
hub.py
|
6 |
|
7 |
# Byte-compiled / optimized / DLL files
|
8 |
__pycache__/
|
app.py
CHANGED
@@ -46,4 +46,4 @@ app = gr.Interface(
|
|
46 |
|
47 |
)
|
48 |
|
49 |
-
app.launch(server_port=8080, share=True)
|
|
|
46 |
|
47 |
)
|
48 |
|
49 |
+
app.launch(server_port=8080, share=True)
|
requirements.txt
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
revChatGPT
|
2 |
+
python-dotenv
|
3 |
+
huggingface_hub
|
4 |
+
gradio
|