Spaces:
Sleeping
Sleeping
fix sentence
Browse files
app.py
CHANGED
@@ -3,7 +3,7 @@ from PIL import Image
|
|
3 |
|
4 |
|
5 |
def main():
|
6 |
-
st.title("
|
7 |
|
8 |
# ローカルのファイルパスを指定します。
|
9 |
local_image_path = (
|
@@ -14,12 +14,12 @@ def main():
|
|
14 |
img = Image.open(local_image_path)
|
15 |
|
16 |
# Streamlitで画像を表示する
|
17 |
-
st.image(img,
|
18 |
|
19 |
st.markdown("### 説明")
|
20 |
-
st.write("
|
21 |
|
22 |
-
user_input = st.text_input("
|
23 |
st.markdown("### 出力")
|
24 |
st.write(user_input)
|
25 |
|
|
|
3 |
|
4 |
|
5 |
def main():
|
6 |
+
st.title("言い得て妙・生成アプリ")
|
7 |
|
8 |
# ローカルのファイルパスを指定します。
|
9 |
local_image_path = (
|
|
|
14 |
img = Image.open(local_image_path)
|
15 |
|
16 |
# Streamlitで画像を表示する
|
17 |
+
st.image(img, use_column_width=True)
|
18 |
|
19 |
st.markdown("### 説明")
|
20 |
+
st.write("言い得て妙をあなたに差し上げます")
|
21 |
|
22 |
+
user_input = st.text_input("ここに単語を入力してください。適切な例えやアナロジーを提供します。")
|
23 |
st.markdown("### 出力")
|
24 |
st.write(user_input)
|
25 |
|