Update app.py
Browse files
app.py
CHANGED
@@ -173,7 +173,7 @@ def process_image(image_path, prompt):
|
|
173 |
# Prepare the data for the API request (specific to the API you're using)
|
174 |
data = {
|
175 |
'image': encoded_string,
|
176 |
-
'
|
177 |
}
|
178 |
return data
|
179 |
|
|
|
173 |
# Prepare the data for the API request (specific to the API you're using)
|
174 |
data = {
|
175 |
'image': encoded_string,
|
176 |
+
'prompt': prompt,
|
177 |
}
|
178 |
return data
|
179 |
|