Afeezee commited on
Commit
8b09894
·
verified ·
1 Parent(s): 045c882

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -25,8 +25,8 @@ def start_trivia_game():
25
  completion = client.chat.completions.create(
26
  model="llama-3.1-70b-versatile",
27
  messages=conversation_history,
28
- temperature=0.8,
29
- max_tokens=4096,
30
  top_p=1,
31
  stream=True,
32
  stop=None,
@@ -62,8 +62,8 @@ def continue_trivia_game(user_response):
62
  completion = client.chat.completions.create(
63
  model="llama-3.1-70b-versatile",
64
  messages=conversation_history,
65
- temperature=0.8,
66
- max_tokens=4096,
67
  top_p=1,
68
  stream=True,
69
  stop=None,
 
25
  completion = client.chat.completions.create(
26
  model="llama-3.1-70b-versatile",
27
  messages=conversation_history,
28
+ temperature=0.6,
29
+ max_tokens=8000,
30
  top_p=1,
31
  stream=True,
32
  stop=None,
 
62
  completion = client.chat.completions.create(
63
  model="llama-3.1-70b-versatile",
64
  messages=conversation_history,
65
+ temperature=0.6,
66
+ max_tokens=8000,
67
  top_p=1,
68
  stream=True,
69
  stop=None,