Update handler.py
Browse files- handler.py +2 -1
handler.py
CHANGED
@@ -53,5 +53,6 @@ class EndpointHandler():
|
|
53 |
except Exception: pass
|
54 |
return {
|
55 |
"role": "AI",
|
56 |
-
"message": decoded_output
|
|
|
57 |
}
|
|
|
53 |
except Exception: pass
|
54 |
return {
|
55 |
"role": "AI",
|
56 |
+
"message": decoded_output,
|
57 |
+
"prompt": prompt
|
58 |
}
|