ilyassh commited on
Commit
1f49301
·
verified ·
1 Parent(s): 7f7adcc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
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")