nchen909 commited on
Commit
413c7f5
1 Parent(s): 3d66326

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -9,7 +9,6 @@ description = """
9
 
10
  🔨 Running on CPU-Basic free hardware. Suggest duplicating this space to run without a queue.
11
 
12
- Mistral does not support system prompt symbol (such as ```<<SYS>>```) now, input your system prompt in the first message if you need. Learn more: [Guardrailing Mistral 7B](https://docs.mistral.ai/usage/guardrailing).
13
  """
14
 
15
  """
@@ -52,7 +51,7 @@ chatbot = gr.Chatbot(avatar_images=('resourse/user-icon.png', 'resourse/chatbot-
52
  additional_inputs=[
53
  gr.Slider(
54
  label="temperature",
55
- value=0.5,
56
  minimum=0.0,
57
  maximum=2.0,
58
  step=0.05,
@@ -96,4 +95,4 @@ with gr.Blocks(css="resourse/style/custom.css") as demo:
96
  iface.render()
97
 
98
  if __name__ == "__main__":
99
- demo.queue(max_size=3).launch()
 
9
 
10
  🔨 Running on CPU-Basic free hardware. Suggest duplicating this space to run without a queue.
11
 
 
12
  """
13
 
14
  """
 
51
  additional_inputs=[
52
  gr.Slider(
53
  label="temperature",
54
+ value=0.8,
55
  minimum=0.0,
56
  maximum=2.0,
57
  step=0.05,
 
95
  iface.render()
96
 
97
  if __name__ == "__main__":
98
+ demo.queue(max_size=256).launch()