Spaces:
Running
Running
Commit
·
2bd8a0f
1
Parent(s):
0190a84
chore: swap to 70b
Browse files
app.py
CHANGED
|
@@ -5,7 +5,7 @@ import numexpr
|
|
| 5 |
from groq import Groq
|
| 6 |
from groq.types.chat.chat_completion_tool_param import ChatCompletionToolParam
|
| 7 |
|
| 8 |
-
MODEL = "llama3-groq-
|
| 9 |
client = Groq(api_key=os.environ["GROQ_API_KEY"])
|
| 10 |
|
| 11 |
|
|
@@ -188,7 +188,7 @@ demo = gr.ChatInterface(
|
|
| 188 |
],
|
| 189 |
type="messages",
|
| 190 |
title="Groq Tool Use Chat",
|
| 191 |
-
description="This chatbot uses the `llama3-groq-
|
| 192 |
)
|
| 193 |
|
| 194 |
if __name__ == "__main__":
|
|
|
|
| 5 |
from groq import Groq
|
| 6 |
from groq.types.chat.chat_completion_tool_param import ChatCompletionToolParam
|
| 7 |
|
| 8 |
+
MODEL = "llama3-groq-70b-8192-tool-use-preview"
|
| 9 |
client = Groq(api_key=os.environ["GROQ_API_KEY"])
|
| 10 |
|
| 11 |
|
|
|
|
| 188 |
],
|
| 189 |
type="messages",
|
| 190 |
title="Groq Tool Use Chat",
|
| 191 |
+
description="This chatbot uses the `llama3-groq-70b-8192-tool-use-preview` LLM with tool use capabilities, including a calculator function.",
|
| 192 |
)
|
| 193 |
|
| 194 |
if __name__ == "__main__":
|