Spaces:
Runtime error
Runtime error
fix
Browse files- .gitignore +3 -1
- app.py +1 -1
- requirements.txt +2 -1
.gitignore
CHANGED
@@ -1,3 +1,5 @@
|
|
1 |
__pycache__
|
2 |
examples
|
3 |
-
.env
|
|
|
|
|
|
1 |
__pycache__
|
2 |
examples
|
3 |
+
.env
|
4 |
+
.venv
|
5 |
+
.gradio
|
app.py
CHANGED
@@ -424,4 +424,4 @@ with gr.Blocks(theme=gr.themes.Soft()) as app:
|
|
424 |
)
|
425 |
|
426 |
# Launch the app
|
427 |
-
app.launch(auth=auth
|
|
|
424 |
)
|
425 |
|
426 |
# Launch the app
|
427 |
+
app.launch(auth=auth)
|
requirements.txt
CHANGED
@@ -3,4 +3,5 @@ torch
|
|
3 |
transformers
|
4 |
langchain-openai
|
5 |
langchain-core
|
6 |
-
sentence_transformers
|
|
|
|
3 |
transformers
|
4 |
langchain-openai
|
5 |
langchain-core
|
6 |
+
sentence_transformers
|
7 |
+
gradio
|