Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -93,6 +93,7 @@ async def get_completion(prompt: str, user_id, image_u8=None) -> str:
|
|
93 |
|
94 |
# If there is an image, include it as an array of unsigned 8-bit integers (u8)
|
95 |
if image_u8:
|
|
|
96 |
data["image"] = image_u8 # Send as array of integers
|
97 |
|
98 |
headers = {
|
|
|
93 |
|
94 |
# If there is an image, include it as an array of unsigned 8-bit integers (u8)
|
95 |
if image_u8:
|
96 |
+
print(image_u8)
|
97 |
data["image"] = image_u8 # Send as array of integers
|
98 |
|
99 |
headers = {
|