KingNish commited on
Commit
f15d7bd
1 Parent(s): 73893aa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -32,9 +32,9 @@ def models(text, model="Mixtral 8x7B"):
32
  if "Phi" in model:
33
  output = output[:-13]
34
  yield output
35
- else:
36
- if not response.token.text == "</s>":
37
- output += response.token.text
38
  return output
39
 
40
  description="""# Chat GO
 
32
  if "Phi" in model:
33
  output = output[:-13]
34
  yield output
35
+
36
+ if not response.token.text == "</s>":
37
+ output += response.token.text
38
  return output
39
 
40
  description="""# Chat GO