QAway-to
commited on
Commit
·
916e292
1
Parent(s):
909ac92
Just shit v 1.0
Browse files- app.py +3 -1
- core/__init__.py +2 -0
app.py
CHANGED
|
@@ -50,4 +50,6 @@ with gr.Blocks(theme=gr.themes.Soft(), title="MBTI Interviewer AI") as demo:
|
|
| 50 |
|
| 51 |
demo.load(lambda: ("", generate_first_question(), "0/16"), inputs=None, outputs=[mbti_out, interviewer_out, progress])
|
| 52 |
|
| 53 |
-
|
|
|
|
|
|
|
|
|
| 50 |
|
| 51 |
demo.load(lambda: ("", generate_first_question(), "0/16"), inputs=None, outputs=[mbti_out, interviewer_out, progress])
|
| 52 |
|
| 53 |
+
if __name__ == "__main__":
|
| 54 |
+
|
| 55 |
+
demo.launch()
|
core/__init__.py
CHANGED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# __init__.py
|
| 2 |
+
# Marks this directory as a Python package.
|