Bryan Bimantaka (Monash University) commited on
Commit
d1161d3
·
1 Parent(s): ce20fd0

change model to llama3.2_1B with print

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -105,6 +105,7 @@ def respond(
105
  token = message.choices[0].delta.content
106
 
107
  response += token
 
108
  yield response
109
 
110
  """
 
105
  token = message.choices[0].delta.content
106
 
107
  response += token
108
+ print(f"Response:\n{response}")
109
  yield response
110
 
111
  """