Spaces:
Sleeping
Sleeping
Updated tags
Browse files
README.md
CHANGED
|
@@ -10,6 +10,12 @@ app_file: app.py
|
|
| 10 |
pinned: false
|
| 11 |
license: apache-2.0
|
| 12 |
short_description: For when tabletop RPG player ask "who's that?"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
---
|
| 14 |
|
| 15 |
Model used is openbmb/MiniCPM5-1B-Base
|
|
|
|
| 10 |
pinned: false
|
| 11 |
license: apache-2.0
|
| 12 |
short_description: For when tabletop RPG player ask "who's that?"
|
| 13 |
+
tags:
|
| 14 |
+
- Build Small Hackathon
|
| 15 |
+
- Backyard AI
|
| 16 |
+
- Open BMB
|
| 17 |
+
- Modal
|
| 18 |
+
- Tiny Titan
|
| 19 |
---
|
| 20 |
|
| 21 |
Model used is openbmb/MiniCPM5-1B-Base
|
app.py
CHANGED
|
@@ -325,7 +325,7 @@ def get_csv_file(state):
|
|
| 325 |
with gr.Blocks() as demo:
|
| 326 |
title = gr.HTML("<center><h1>NPC Generator</h1></center>")
|
| 327 |
description = gr.HTML("<center>For tabletop GMs when players ask for a description of random people in the tavern.</center>")
|
| 328 |
-
tags = gr.HTML("<center>| Backyard AI | Open BMB |</center>")
|
| 329 |
|
| 330 |
with gr.Row(equal_height = True):
|
| 331 |
with gr.Column(scale = 2):
|
|
@@ -355,7 +355,7 @@ with gr.Blocks() as demo:
|
|
| 355 |
hp_box = gr.Textbox(value = "", label = "HP", interactive = False)
|
| 356 |
speed_box = gr.Textbox(value = "", label = "Speed", interactive = False)
|
| 357 |
bard_stats = gr.HTML("~~Bard Stats~~")
|
| 358 |
-
with gr.Accordion():
|
| 359 |
dcs = gr.Textbox(value = "", label = "DC to Charm")
|
| 360 |
prefs = gr.Textbox(value = "", label = "Advantage if:")
|
| 361 |
icks = gr.Textbox(value = "", label = "Disdvantage if:")
|
|
|
|
| 325 |
with gr.Blocks() as demo:
|
| 326 |
title = gr.HTML("<center><h1>NPC Generator</h1></center>")
|
| 327 |
description = gr.HTML("<center>For tabletop GMs when players ask for a description of random people in the tavern.</center>")
|
| 328 |
+
tags = gr.HTML("<center>| Backyard AI | Open BMB | Tiny Titan | Modal |</center>")
|
| 329 |
|
| 330 |
with gr.Row(equal_height = True):
|
| 331 |
with gr.Column(scale = 2):
|
|
|
|
| 355 |
hp_box = gr.Textbox(value = "", label = "HP", interactive = False)
|
| 356 |
speed_box = gr.Textbox(value = "", label = "Speed", interactive = False)
|
| 357 |
bard_stats = gr.HTML("~~Bard Stats~~")
|
| 358 |
+
with gr.Accordion(open = False):
|
| 359 |
dcs = gr.Textbox(value = "", label = "DC to Charm")
|
| 360 |
prefs = gr.Textbox(value = "", label = "Advantage if:")
|
| 361 |
icks = gr.Textbox(value = "", label = "Disdvantage if:")
|