laxsvips commited on
Commit
24a12b5
·
1 Parent(s): 6ffbca0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -4
app.py CHANGED
@@ -1,6 +1,6 @@
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,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()