docs: enhance Gradio UI description for Unpredictable Lord game
Browse files
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(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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)
|