Spaces:
Sleeping
Sleeping
change directory for app.py script, corrected typo
Browse files- README.md +1 -1
- app.py → scripts/app.py +1 -1
README.md
CHANGED
@@ -5,7 +5,7 @@ colorFrom: indigo
|
|
5 |
colorTo: indigo
|
6 |
sdk: gradio
|
7 |
sdk_version: 5.24.0
|
8 |
-
app_file: app.py
|
9 |
pinned: false
|
10 |
short_description: RAG chatbot trained on my master thesis.
|
11 |
---
|
|
|
5 |
colorTo: indigo
|
6 |
sdk: gradio
|
7 |
sdk_version: 5.24.0
|
8 |
+
app_file: scripts/app.py
|
9 |
pinned: false
|
10 |
short_description: RAG chatbot trained on my master thesis.
|
11 |
---
|
app.py → scripts/app.py
RENAMED
@@ -54,7 +54,7 @@ def chat_bot(query: str, rag_mode: SupportedRags) -> str:
|
|
54 |
|
55 |
default_message = (
|
56 |
"Ask a about a topic that is discussed in my master thesis."
|
57 |
-
"E.g., what is epistemic uncertainty?"
|
58 |
)
|
59 |
|
60 |
gradio_app = gr.Interface(
|
|
|
54 |
|
55 |
default_message = (
|
56 |
"Ask a about a topic that is discussed in my master thesis."
|
57 |
+
" E.g., what is epistemic uncertainty?"
|
58 |
)
|
59 |
|
60 |
gradio_app = gr.Interface(
|