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

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", description="Assistant-style large language model with ~800k GPT-3.5-Turbo Generations").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", examples=[['What is a three word topic describing the following keywords: baseball, football, soccer'],['List 10 dogs.'],['Reverse a string in python.']]).launch()