Afeezee commited on
Commit
bd54f7b
·
verified ·
1 Parent(s): ff349dd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -37,7 +37,7 @@ def start_trivia_game():
37
 
38
  # Get completion from the LLM for the initial question
39
  completion = client.chat.completions.create(
40
- model="llama-3.1-70b-versatile",
41
  messages=conversation_history,
42
  temperature=0.3,
43
  max_tokens=4096,
@@ -81,7 +81,7 @@ def continue_trivia_game(user_response):
81
  # Get completion from the LLM for the user's response
82
  try:
83
  completion = client.chat.completions.create(
84
- model="llama-3.1-70b-versatile",
85
  messages=conversation_history,
86
  temperature=0.3,
87
  max_tokens=8000,
 
37
 
38
  # Get completion from the LLM for the initial question
39
  completion = client.chat.completions.create(
40
+ model="llama-3.3-70b-versatile",
41
  messages=conversation_history,
42
  temperature=0.3,
43
  max_tokens=4096,
 
81
  # Get completion from the LLM for the user's response
82
  try:
83
  completion = client.chat.completions.create(
84
+ model="llama-3.3-70b-versatile",
85
  messages=conversation_history,
86
  temperature=0.3,
87
  max_tokens=8000,