Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -92,15 +92,18 @@ class Pypelyne:
|
|
92 |
if VERBOSE:
|
93 |
print(LOG_PROMPT.format(content))
|
94 |
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
|
|
|
|
|
|
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))
|