Update app.py
Browse files
app.py
CHANGED
@@ -447,6 +447,9 @@ with gr.Blocks() as demo:
|
|
447 |
- **Make an Accusation**: Include the word `"accuse"` in your statement to accuse a suspect.
|
448 |
- **Note**: Be careful with your actions; they may affect suspects' trust and anger levels.
|
449 |
""")
|
|
|
|
|
|
|
450 |
with gr.TabItem("Debug"):
|
451 |
debug_info = gr.Textbox(lines=30, label="Debug Information", interactive=False)
|
452 |
update_debug_button = gr.Button("Update Debug Info")
|
|
|
447 |
- **Make an Accusation**: Include the word `"accuse"` in your statement to accuse a suspect.
|
448 |
- **Note**: Be careful with your actions; they may affect suspects' trust and anger levels.
|
449 |
""")
|
450 |
+
markdown_output = "### List of Locations:\n\n" + "\n".join(f"- {location}" for location in locations)
|
451 |
+
gr.Markdown("## Game Locations")
|
452 |
+
gr.Markdown(markdown_output)
|
453 |
with gr.TabItem("Debug"):
|
454 |
debug_info = gr.Textbox(lines=30, label="Debug Information", interactive=False)
|
455 |
update_debug_button = gr.Button("Update Debug Info")
|