ai-tomoni commited on
Commit
fc2d715
·
verified ·
1 Parent(s): 814942d

print testing

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -11,6 +11,8 @@ client = InferenceClient(
11
  token=HF_TOKEN
12
  )
13
 
 
 
14
  def respond(
15
  message,
16
  history: list[tuple[str, str]],
@@ -20,6 +22,7 @@ def respond(
20
  top_p,
21
  ):
22
  messages = [{"role": "system", "content": system_message}]
 
23
 
24
  for val in history:
25
  if val[0]:
 
11
  token=HF_TOKEN
12
  )
13
 
14
+ print("inside dok")
15
+
16
  def respond(
17
  message,
18
  history: list[tuple[str, str]],
 
22
  top_p,
23
  ):
24
  messages = [{"role": "system", "content": system_message}]
25
+ print("inside response")
26
 
27
  for val in history:
28
  if val[0]: