Spaces:
Runtime error
Runtime error
added username to the layout
Browse files
app.py
CHANGED
@@ -28,6 +28,7 @@ with gr.Blocks(theme='gstaff/xkcd') as demo:
|
|
28 |
game_state = gr.State(Game())
|
29 |
game_state.value.reset()
|
30 |
title = gr.Markdown("# Guessing Game")
|
|
|
31 |
chatbot = gr.Chatbot(value=[(None, game_state.value.prompt)])
|
32 |
msg = gr.Textbox()
|
33 |
restart = gr.Button("Restart")
|
|
|
28 |
game_state = gr.State(Game())
|
29 |
game_state.value.reset()
|
30 |
title = gr.Markdown("# Guessing Game")
|
31 |
+
description = gr.HTML("""This Gradio Demo was build by <a href="https://huggingface.co/gstaff" target="_blank">Grant Stafford @gstaff</a>.""")
|
32 |
chatbot = gr.Chatbot(value=[(None, game_state.value.prompt)])
|
33 |
msg = gr.Textbox()
|
34 |
restart = gr.Button("Restart")
|