piotrzelasko commited on
Commit
7d91bc4
·
1 Parent(s): 1ed2d99

Signed-off-by: Piotr Żelasko <[email protected]>

Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -132,7 +132,7 @@ with gr.Blocks(
132
  gr.HTML("<p><b>Step 3:</b> Prompt the model.</p>")
133
 
134
  prompt_box = gr.Textbox(
135
- "Summarize the following:",
136
  label="Prompt",
137
  elem_id="prompt_box",
138
  )
@@ -146,16 +146,16 @@ with gr.Blocks(
146
  variant="primary", # make "primary" so it stands out (default is "secondary")
147
  )
148
 
149
- think_box = gr.Textbox(
150
- label="Assistant's Thinking",
151
- elem_id="think_box",
152
- )
153
-
154
  magic_box = gr.Textbox(
155
  label="Assistant's Response",
156
  elem_id="magic_box",
157
  )
158
 
 
 
 
 
 
159
 
160
  with gr.Row():
161
 
 
132
  gr.HTML("<p><b>Step 3:</b> Prompt the model.</p>")
133
 
134
  prompt_box = gr.Textbox(
135
+ "Give me a TL;DR:",
136
  label="Prompt",
137
  elem_id="prompt_box",
138
  )
 
146
  variant="primary", # make "primary" so it stands out (default is "secondary")
147
  )
148
 
 
 
 
 
 
149
  magic_box = gr.Textbox(
150
  label="Assistant's Response",
151
  elem_id="magic_box",
152
  )
153
 
154
+ think_box = gr.Textbox(
155
+ label="Assistant's Thinking",
156
+ elem_id="think_box",
157
+ )
158
+
159
 
160
  with gr.Row():
161