Spaces:
Running
Running
Upload 42 files
Browse files
frontend/src/services/api.js
CHANGED
|
@@ -40,7 +40,6 @@ export async function generateImage(subject, modelId, apiKey = "") {
|
|
| 40 |
subject, // user_input
|
| 41 |
modelId, // model_id
|
| 42 |
"", // template (empty string = use default)
|
| 43 |
-
true, // include_reasoning flag
|
| 44 |
apiKey || "" // api_key (optional)
|
| 45 |
],
|
| 46 |
},
|
|
@@ -106,7 +105,6 @@ export async function editImageRegion(imagePath, bboxCoords, editRequest, modelI
|
|
| 106 |
editRequest,
|
| 107 |
modelId,
|
| 108 |
"", // edit_template (empty string = use default)
|
| 109 |
-
true, // include_reasoning flag
|
| 110 |
apiKey || "" // api_key (optional)
|
| 111 |
],
|
| 112 |
},
|
|
|
|
| 40 |
subject, // user_input
|
| 41 |
modelId, // model_id
|
| 42 |
"", // template (empty string = use default)
|
|
|
|
| 43 |
apiKey || "" // api_key (optional)
|
| 44 |
],
|
| 45 |
},
|
|
|
|
| 105 |
editRequest,
|
| 106 |
modelId,
|
| 107 |
"", // edit_template (empty string = use default)
|
|
|
|
| 108 |
apiKey || "" // api_key (optional)
|
| 109 |
],
|
| 110 |
},
|