Monster commited on
Commit
61999eb
·
1 Parent(s): 8a92f0f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -9,4 +9,4 @@ llm = Llama(model_path="./ggjt-model.bin")
9
  def chat(input):
10
  return llm(input)
11
 
12
- gr.Interface(fn=chat, inputs="text", outputs="text").launch()
 
9
  def chat(input):
10
  return llm(input)
11
 
12
+ gr.Interface(fn=chat, inputs="text", outputs="text", description="Assistant-style large language model with ~800k GPT-3.5-Turbo Generations").launch()