Shriharsh commited on
Commit
0467f25
·
verified ·
1 Parent(s): d47506c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -88,9 +88,11 @@ css = """
88
  border: 0.5px solid #ccc;
89
  }
90
  """
 
91
 
92
- with gr.Blocks(css=css) as demo:
93
- gr.HTML("<h1><center>Mistral 7B Instruct inspired by <a href = 'https://huggingface.co/spaces/Skier8402/mistral-super-fast'>Skier8402</a><h1><center>")
 
94
  gr.ChatInterface(
95
  generate,
96
  additional_inputs=additional_inputs,
 
88
  border: 0.5px solid #ccc;
89
  }
90
  """
91
+ article = "Inspired by [Skier8402]('https://huggingface.co/spaces/Skier8402/mistral-super-fast')"
92
 
93
+
94
+ with gr.Blocks(css=css, article=article) as demo:
95
+ gr.HTML("<h1><center>Mistral 7B Instruct<h1><center>")
96
  gr.ChatInterface(
97
  generate,
98
  additional_inputs=additional_inputs,