Spaces:
Runtime error
Runtime error
ricklamers
commited on
Commit
·
5199efe
1
Parent(s):
7d20328
feat: add examples.
Browse files
app.py
CHANGED
@@ -186,6 +186,11 @@ demo = gr.ChatInterface(
|
|
186 |
),
|
187 |
],
|
188 |
type="messages",
|
|
|
|
|
|
|
|
|
|
|
189 |
title="Groq Tool Use Chat",
|
190 |
description="This chatbot uses the `llama3-groq-8b-8192-tool-use-preview` LLM with tool use capabilities, including a calculator function.",
|
191 |
)
|
|
|
186 |
),
|
187 |
],
|
188 |
type="messages",
|
189 |
+
examples=[
|
190 |
+
"What is 42 to the power of 42?",
|
191 |
+
"Calculate 3.14159 * 2",
|
192 |
+
"Compute 2^10",
|
193 |
+
],
|
194 |
title="Groq Tool Use Chat",
|
195 |
description="This chatbot uses the `llama3-groq-8b-8192-tool-use-preview` LLM with tool use capabilities, including a calculator function.",
|
196 |
)
|