ryomo commited on
Commit
224585b
ยท
1 Parent(s): a3e4e3c

docs: enhance Gradio UI description for Unpredictable Lord game

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -64,7 +64,13 @@ logger.info(f"Using tool prefix: '{tool_prefix}'")
64
 
65
  # Gradio UI
66
  with gr.Blocks(title="Unpredictable Lord") as demo:
67
- gr.Markdown("# Unpredictable Lord\nLord Advisor AI Simulation")
 
 
 
 
 
 
68
 
69
  # State to store current session_id and system_instructions for Chat tab
70
  chat_session_id = gr.State(value=None)
 
64
 
65
  # Gradio UI
66
  with gr.Blocks(title="Unpredictable Lord") as demo:
67
+ gr.Markdown(
68
+ "# Unpredictable Lord\n\n"
69
+ "**Lord Advisor AI Simulation** ๐Ÿฐ๐ŸŽฎ<br>"
70
+ "๐ŸŽฏ **Overview:** A turn-based advisor game where players propose policies and counsel a lord AI. ๐Ÿค<br>"
71
+ "โš–๏ธ Decisions depend on lord personality, advisor trust, and current state โ€” affecting resources, population, and morale. ๐Ÿ“ˆ๐Ÿ“‰<br>"
72
+ "๐Ÿ† Win by expanding territory, earning royal favor, or growing wealth; โš ๏ธ beware rebellion, exile, or bankruptcy. ๐Ÿ’€๐Ÿ‘‘๐Ÿ’ฐ"
73
+ )
74
 
75
  # State to store current session_id and system_instructions for Chat tab
76
  chat_session_id = gr.State(value=None)