nikhilkomakula
commited on
Commit
·
87932ba
1
Parent(s):
27b774b
Renamed Files
Browse files- app.py +2 -2
- gradio_ui.py → gradio_app.py +0 -0
- streamlit_ui.py → streamlit_app.py +0 -0
app.py
CHANGED
@@ -4,10 +4,10 @@ import subprocess
|
|
4 |
|
5 |
# Define functions for Gradio and Streamlit interfaces
|
6 |
def run_gradio_interface():
|
7 |
-
subprocess.run(["python", "
|
8 |
|
9 |
def run_streamlit_interface():
|
10 |
-
subprocess.run(["streamlit", "run", "
|
11 |
|
12 |
def run_rag_evaluate():
|
13 |
subprocess.run(["python", "eval.py"])
|
|
|
4 |
|
5 |
# Define functions for Gradio and Streamlit interfaces
|
6 |
def run_gradio_interface():
|
7 |
+
subprocess.run(["python", "gradio_app.py"])
|
8 |
|
9 |
def run_streamlit_interface():
|
10 |
+
subprocess.run(["streamlit", "run", "streamlit_app.py"])
|
11 |
|
12 |
def run_rag_evaluate():
|
13 |
subprocess.run(["python", "eval.py"])
|
gradio_ui.py → gradio_app.py
RENAMED
File without changes
|
streamlit_ui.py → streamlit_app.py
RENAMED
File without changes
|