LennardZuendorf commited on
Commit
6ff516d
1 Parent(s): 3567c6f

fix: minor bugfix

Browse files
Files changed (2) hide show
  1. explanation/attention.py +0 -1
  2. main.py +4 -1
explanation/attention.py CHANGED
@@ -3,7 +3,6 @@
3
 
4
  # internal imports
5
  from utils import formatting as fmt
6
- from model import godel
7
  from .markup import markup_text
8
 
9
 
 
3
 
4
  # internal imports
5
  from utils import formatting as fmt
 
6
  from .markup import markup_text
7
 
8
 
main.py CHANGED
@@ -110,7 +110,10 @@ with gr.Blocks(
110
  label="System Prompt",
111
  info="Set the models system prompt, dictating how it answers.",
112
  # default system prompt is set to this in the backend
113
- placeholder=("You are a helpful, respectful and honest assistant. Always answer as helpfully as possible, while being safe.",
 
 
 
114
  )
115
  # column that takes up 1/4 of the row
116
  with gr.Column(scale=1):
 
110
  label="System Prompt",
111
  info="Set the models system prompt, dictating how it answers.",
112
  # default system prompt is set to this in the backend
113
+ placeholder=(
114
+ "You are a helpful, respectful and honest assistant. Always"
115
+ " answer as helpfully as possible, while being safe."
116
+ ),
117
  )
118
  # column that takes up 1/4 of the row
119
  with gr.Column(scale=1):