kaitwithkwk commited on
Commit
f5debf6
·
verified ·
1 Parent(s): ed00974

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -18,7 +18,7 @@ def respond(message, history: list[tuple[str, str]]):
18
  messages.append({"role": "user", "content": message})
19
 
20
  response = pipe(chat, max_new_tokens=512)
21
-
22
  return response
23
 
24
 
 
18
  messages.append({"role": "user", "content": message})
19
 
20
  response = pipe(chat, max_new_tokens=512)
21
+ print(response)
22
  return response
23
 
24