Arjun Singh commited on
Commit
26b3709
·
1 Parent(s): 38564c0

updating method

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -10,7 +10,7 @@ client = Groq(
10
  api_key=os.environ.get("groq_api_key"),
11
  )
12
 
13
- def chat_with_Mixtral():
14
  chat_completion = client.chat.completions.create(
15
  messages=[{"role": "system", "content": system_prompt},{"role": "user", "content": prompt}],
16
  model="llama-3.1-8b-instant",
 
10
  api_key=os.environ.get("groq_api_key"),
11
  )
12
 
13
+ def chat_with_llama(user_input):
14
  chat_completion = client.chat.completions.create(
15
  messages=[{"role": "system", "content": system_prompt},{"role": "user", "content": prompt}],
16
  model="llama-3.1-8b-instant",