MarziehFadaee commited on
Commit
802a937
·
verified ·
1 Parent(s): 7a2d4dc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -17
app.py CHANGED
@@ -31,24 +31,18 @@ def generate_response(user_message, history=None):
31
  output = ""
32
 
33
  for idx, response in enumerate(stream):
34
- if response.status_code == HTTPStatus.OK:
35
- if response.event_type == "text-generation":
36
- output += response.text
37
- if idx == 0:
38
- history.append(" " + output)
39
- else:
40
- history[-1] = output
41
- chat = [
42
- (history[i].strip(), history[i + 1].strip())
43
- for i in range(0, len(history) - 1, 2)
44
- ]
45
- yield chat, history
46
  else:
47
- raise HTTPError('Request id: %s, Status code: %s, error code: %s, error message: %s' % (
48
- response.request_id, response.status_code,
49
- response.code, response.message
50
- ))
51
-
 
 
52
  return chat, history
53
 
54
 
 
31
  output = ""
32
 
33
  for idx, response in enumerate(stream):
34
+ if response.event_type == "text-generation":
35
+ output += response.text
36
+ if idx == 0:
37
+ history.append(" " + output)
 
 
 
 
 
 
 
 
38
  else:
39
+ history[-1] = output
40
+ chat = [
41
+ (history[i].strip(), history[i + 1].strip())
42
+ for i in range(0, len(history) - 1, 2)
43
+ ]
44
+ yield chat, history
45
+
46
  return chat, history
47
 
48