NHZ commited on
Commit
619719f
·
verified ·
1 Parent(s): 3e2ce3e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -103,4 +103,11 @@ def main():
103
 
104
  # Use Groq API for additional insights
105
  chat_completion = client.chat.completions.create(
106
- messa
 
 
 
 
 
 
 
 
103
 
104
  # Use Groq API for additional insights
105
  chat_completion = client.chat.completions.create(
106
+ messages=[{"role": "user", "content": query}],
107
+ model="llama-3.3-70b-versatile",
108
+ )
109
+ st.write("### Insights from Groq-powered Model:")
110
+ st.write(chat_completion.choices[0].message.content)
111
+
112
+ if __name__ == "__main__":
113
+ main()