Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
#from flask import jsonify
|
2 |
# from gameload import upload_game_docs
|
3 |
-
|
4 |
# import os
|
5 |
# import dotenv
|
6 |
# import os
|
@@ -59,7 +59,6 @@ play_game_gr = gradio.Interface(
|
|
59 |
inputs=["text","text", "text"],
|
60 |
outputs="text"
|
61 |
)
|
62 |
-
demo = gradio.TabbedInterface([health_check_gr, play_game_gr, initialize_game_gr], ["Health Check", "Play Game", "Initialize game"])
|
63 |
-
|
64 |
-
demo.launch()
|
65 |
|
|
|
|
|
|
1 |
#from flask import jsonify
|
2 |
# from gameload import upload_game_docs
|
3 |
+
import chat
|
4 |
# import os
|
5 |
# import dotenv
|
6 |
# import os
|
|
|
59 |
inputs=["text","text", "text"],
|
60 |
outputs="text"
|
61 |
)
|
|
|
|
|
|
|
62 |
|
63 |
+
genesis_app = gradio.TabbedInterface([health_check_gr, play_game_gr, initialize_game_gr], ["Health Check", "Play Game", "Initialize game"])
|
64 |
+
genesis_app.launch()
|