Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -23,7 +23,7 @@ def google_image_search(query):
|
|
23 |
|
24 |
# Gradio 인터페이스 정의
|
25 |
iface = gr.Interface(fn=google_image_search,
|
26 |
-
inputs=gr.
|
27 |
outputs=gr.outputs.Image(type="pil", label="검색 결과"),
|
28 |
title="구글 이미지 검색",
|
29 |
description="텍스트를 입력하면 구글 이미지 검색 결과를 보여줍니다.")
|
|
|
23 |
|
24 |
# Gradio 인터페이스 정의
|
25 |
iface = gr.Interface(fn=google_image_search,
|
26 |
+
inputs=gr.Textbox(lines=2, placeholder="검색할 이미지의 텍스트를 입력하세요..."),
|
27 |
outputs=gr.outputs.Image(type="pil", label="검색 결과"),
|
28 |
title="구글 이미지 검색",
|
29 |
description="텍스트를 입력하면 구글 이미지 검색 결과를 보여줍니다.")
|