csabakecskemeti commited on
Commit
ae93774
1 Parent(s): 13bd032

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -59,6 +59,9 @@ For information on how to customize the ChatInterface, peruse the gradio docs: h
59
  """
60
  title = "Brainstorm Demo by devquasar.com"
61
  desc = "Please note that this model is self-hosted, which means it may not be available at all times. Thank you for your understanding!"
 
 
 
62
  demo = gr.ChatInterface(
63
  respond,
64
  additional_inputs=[
@@ -68,7 +71,8 @@ demo = gr.ChatInterface(
68
  #gr.Slider(minimum=0.1, maximum=1.0, value=0.95, step=0.05, label="Top-p (nucleus sampling)"),
69
  ],
70
  title=title,
71
- description=desc
 
72
  )
73
 
74
 
 
59
  """
60
  title = "Brainstorm Demo by devquasar.com"
61
  desc = "Please note that this model is self-hosted, which means it may not be available at all times. Thank you for your understanding!"
62
+ long_desc = """Brainstorm facilitates idea exploration through interaction with a Language Model (LLM).
63
+ Rather than providing direct answers, the model engages in a dialogue with users, offering probing
64
+ questions aimed at fostering deeper contemplation and consideration of various facets of their ideas."""
65
  demo = gr.ChatInterface(
66
  respond,
67
  additional_inputs=[
 
71
  #gr.Slider(minimum=0.1, maximum=1.0, value=0.95, step=0.05, label="Top-p (nucleus sampling)"),
72
  ],
73
  title=title,
74
+ description=desc,
75
+ article=long_desc
76
  )
77
 
78