ricklamers commited on
Commit
2bd8a0f
1 Parent(s): 0190a84

chore: swap to 70b

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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-8b-8192-tool-use-preview"
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-8b-8192-tool-use-preview` LLM with tool use capabilities, including a calculator function.",
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__":