keynes42 commited on
Commit
c8db9ba
·
verified ·
1 Parent(s): 96442a5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -97,7 +97,8 @@ class BasicAgent:
97
  model=mod,
98
  tokenizer=tok,
99
  max_new_tokens=512,
100
- temperature=0.0,
 
101
  )
102
  self.agent = CodeAgent(model=self, tools=[], add_base_tools=True)
103
 
 
97
  model=mod,
98
  tokenizer=tok,
99
  max_new_tokens=512,
100
+ temperature=1.0,
101
+ do_sample=False
102
  )
103
  self.agent = CodeAgent(model=self, tools=[], add_base_tools=True)
104