broadfield-dev commited on
Commit
6ab1219
·
verified ·
1 Parent(s): f00cfe3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -53,9 +53,9 @@ model = OpenAIServerModel(
53
  api_base="https://openrouter.ai/api/v1",
54
  api_key=os.environ["OPENROUTER_API_KEY"],
55
  client_kwargs = {
56
- max_tokens=2096,
57
- temperature=0.5,
58
- custom_role_conversions=None,
59
  }
60
  )
61
 
 
53
  api_base="https://openrouter.ai/api/v1",
54
  api_key=os.environ["OPENROUTER_API_KEY"],
55
  client_kwargs = {
56
+ 'max_tokens':2096,
57
+ 'temperature':0.5,
58
+ 'custom_role_conversions': None,
59
  }
60
  )
61