Update app.py
Browse files
app.py
CHANGED
@@ -450,6 +450,9 @@ with gr.Blocks() as demo:
|
|
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")
|
|
|
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 |
+
markdown_output = "### List of Weapons:\n\n" + "\n".join(f"- {weapon}" for weapon in weapons)
|
454 |
+
gr.Markdown("## Game Weapons")
|
455 |
+
gr.Markdown(markdown_output)
|
456 |
with gr.TabItem("Debug"):
|
457 |
debug_info = gr.Textbox(lines=30, label="Debug Information", interactive=False)
|
458 |
update_debug_button = gr.Button("Update Debug Info")
|