Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -59,6 +59,9 @@ demo = gr.Interface(fn = invoke,
|
|
59 |
gr.Textbox(label = "Prompt", lines = 1, value = "What is today's date?")],
|
60 |
outputs = [gr.Textbox(label = "Completion", lines = 1)],
|
61 |
title = "Generative AI - LLM & Agent",
|
62 |
-
description = description
|
|
|
|
|
|
|
63 |
|
64 |
demo.launch()
|
|
|
59 |
gr.Textbox(label = "Prompt", lines = 1, value = "What is today's date?")],
|
60 |
outputs = [gr.Textbox(label = "Completion", lines = 1)],
|
61 |
title = "Generative AI - LLM & Agent",
|
62 |
+
description = description,
|
63 |
+
examples = [["sk-", "What is today's date?"],
|
64 |
+
["sk-", "What is the weather in SF?"]],
|
65 |
+
cache_examples = False)
|
66 |
|
67 |
demo.launch()
|