Spaces:
Build error
Build error
Update app.py
Browse files
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.
|
| 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.
|
| 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,
|