codelion commited on
Commit
6003553
1 Parent(s): 4527045

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -6,10 +6,10 @@ from optillm.mcts import chat_with_mcts
6
  from optillm.bon import best_of_n_sampling
7
 
8
  def respond(
9
- model,
10
- approach,
11
  message,
12
  history: list[tuple[str, str]],
 
 
13
  system_message,
14
  max_tokens,
15
  temperature,
 
6
  from optillm.bon import best_of_n_sampling
7
 
8
  def respond(
 
 
9
  message,
10
  history: list[tuple[str, str]],
11
+ model,
12
+ approach,
13
  system_message,
14
  max_tokens,
15
  temperature,