PY007 commited on
Commit
710178a
Β·
1 Parent(s): c416409

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -44,8 +44,8 @@ def has_no_history(chatbot, history):
44
  return not chatbot and not history
45
 
46
 
47
- header = "A chat between a curious human and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the user's questions."
48
- prompt_template = "### Human: {query}\n### Assistant:{response}"
49
 
50
  def generate(
51
  user_message,
@@ -143,7 +143,7 @@ def process_example(args):
143
  return [x, y]
144
 
145
 
146
- title = """<h1 align="center">Guanaco Playground πŸ’¬</h1>"""
147
  custom_css = """
148
  #banner-image {
149
  display: block;
@@ -163,7 +163,7 @@ with gr.Blocks(analytics_enabled=False, css=custom_css) as demo:
163
  with gr.Column():
164
  gr.Markdown(
165
  """
166
- πŸ’» This demo showcases the Guanaco 33B model, released together with the paper [QLoRA](https://arxiv.org/abs/2305.14314)
167
  """
168
  )
169
 
 
44
  return not chatbot and not history
45
 
46
 
47
+ header = ""
48
+ prompt_template = "### Human: {query}### Assistant: {response}"
49
 
50
  def generate(
51
  user_message,
 
143
  return [x, y]
144
 
145
 
146
+ title = """<h1 align="center">TinyLlama Chat Playground πŸ’¬</h1>"""
147
  custom_css = """
148
  #banner-image {
149
  display: block;
 
163
  with gr.Column():
164
  gr.Markdown(
165
  """
166
+ πŸ’» This demo showcases the PY007/TinyLlama-1.1B-Chat-v0.1 model that is finetuned from TinyLlama 503B checkpoints on the openassitant-guanaco dataset.
167
  """
168
  )
169