Update run.sh to launch FastAPI with Gradio interface instead of Streamlit
Browse files
run.sh
CHANGED
@@ -1,5 +1,4 @@
|
|
1 |
#!/bin/bash
|
2 |
|
3 |
-
#
|
4 |
-
|
5 |
-
uvicorn api.main:app --reload # Запуск API для анализа логов
|
|
|
1 |
#!/bin/bash
|
2 |
|
3 |
+
# Run FastAPI and Gradio interface
|
4 |
+
python app.py
|
|