acecalisto3 commited on
Commit
4ba3a32
·
verified ·
1 Parent(s): c15c30f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -9
app.py CHANGED
@@ -92,15 +92,18 @@ class Pypelyne:
92
  if VERBOSE:
93
  print(LOG_PROMPT.format(content))
94
 
95
- stream = client.text_generation(
96
- prompt=content,
97
- max_new_tokens=max_tokens,
98
- stop_sequences=stop_tokens if stop_tokens else None,
99
- do_sample=True,
100
- temperature=0.7,
101
- )
102
-
103
- resp = "".join(token for token in stream)
 
 
 
104
 
105
  if VERBOSE:
106
  print(LOG_RESPONSE.format(resp))
 
92
  if VERBOSE:
93
  print(LOG_PROMPT.format(content))
94
 
95
+ try:
96
+ stream = client.text_generation(
97
+ prompt=content,
98
+ max_new_tokens=max_tokens,
99
+ stop_sequences=stop_tokens if stop_tokens else None,
100
+ do_sample=True,
101
+ temperature=0.7,
102
+ )
103
+ resp = "".join(token for token in stream)
104
+ except Exception as e:
105
+ print(f"Error in run_gpt: {e}")
106
+ resp = f"Error: {e}"
107
 
108
  if VERBOSE:
109
  print(LOG_RESPONSE.format(resp))