Spaces:
Running
Running
Update app.py
Browse files
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()
|