Spaces:
Running
Running
syurein
commited on
Commit
·
5a3f01e
1
Parent(s):
b42a7a4
auto修正
Browse files- app.py +1 -1
- templates/index.html +1 -1
app.py
CHANGED
@@ -271,7 +271,7 @@ def llm_to_process_image_simple_auto(risk_level, image_path, point1, point2, thr
|
|
271 |
Objectdetector = ObjectDetector(API_KEY=GEMINI_API_KEY)
|
272 |
debug_image_path='/test_llm.jpg'
|
273 |
response=Objectdetector.detect_auto(image_path)
|
274 |
-
print(response)
|
275 |
Objectdetector.prompt_objects=response["objects_to_remove"]
|
276 |
# 画像の読み込みとRGB変換
|
277 |
print(f"Objectdetector.prompt_objects: {Objectdetector.prompt_objects}")
|
|
|
271 |
Objectdetector = ObjectDetector(API_KEY=GEMINI_API_KEY)
|
272 |
debug_image_path='/test_llm.jpg'
|
273 |
response=Objectdetector.detect_auto(image_path)
|
274 |
+
print(response["objects_to_remove"])
|
275 |
Objectdetector.prompt_objects=response["objects_to_remove"]
|
276 |
# 画像の読み込みとRGB変換
|
277 |
print(f"Objectdetector.prompt_objects: {Objectdetector.prompt_objects}")
|
templates/index.html
CHANGED
@@ -449,7 +449,7 @@
|
|
449 |
formData.append('x2', 0.001); // FastAPIで使うデフォルト値と同じ値を設定
|
450 |
formData.append('y2', 0.001); // FastAPIで使うデフォルト値と同じ値を設定
|
451 |
} else if (processingType === "llm") {
|
452 |
-
apiEndpoint = "/create-mask-and-inpaint-sum-llm-
|
453 |
formData.append('x1', 0.001); // FastAPIで使うデフォルト値と同じ値を設定
|
454 |
formData.append('y1', 0.001); // FastAPIで使うデフォルト値と同じ値を設定
|
455 |
formData.append('x2', 0.001); // FastAPIで使うデフォルト値と同じ値を設定
|
|
|
449 |
formData.append('x2', 0.001); // FastAPIで使うデフォルト値と同じ値を設定
|
450 |
formData.append('y2', 0.001); // FastAPIで使うデフォルト値と同じ値を設定
|
451 |
} else if (processingType === "llm") {
|
452 |
+
apiEndpoint = "/create-mask-and-inpaint-sum-llm-simple";
|
453 |
formData.append('x1', 0.001); // FastAPIで使うデフォルト値と同じ値を設定
|
454 |
formData.append('y1', 0.001); // FastAPIで使うデフォルト値と同じ値を設定
|
455 |
formData.append('x2', 0.001); // FastAPIで使うデフォルト値と同じ値を設定
|