Cartof commited on
Commit
7399864
1 Parent(s): f4490b5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -114,8 +114,8 @@ with gr.Blocks() as demo:
114
  delLastBtn = gr.Button("🗑️ Delete conversation")
115
  reduceTokenBtn = gr.Button("♻️ Optimize Tokens")
116
 
117
- newSystemPrompt = gr.Textbox(show_label=True, placeholder=f"Setting System Prompt...", label="Change System prompt").style(container=False)
118
- systemPromptDisplay = gr.Textbox(show_label=True, value=initial_prompt, interactive=False, label="Current System prompt").style(container=False)
119
 
120
  gr.Markdown(description)
121
 
 
114
  delLastBtn = gr.Button("🗑️ Delete conversation")
115
  reduceTokenBtn = gr.Button("♻️ Optimize Tokens")
116
 
117
+ newSystemPrompt = gr.Textbox(show_label=True, placeholder=f"Setting System Prompt...", label="Change System prompt").style(container=True)
118
+ systemPromptDisplay = gr.Textbox(show_label=True, value=initial_prompt, interactive=False, label="Current System prompt").style(container=True)
119
 
120
  gr.Markdown(description)
121