gmoriki commited on
Commit
944b4f4
1 Parent(s): 549bb77

fix sentence

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -3,7 +3,7 @@ from PIL import Image
3
 
4
 
5
  def main():
6
- st.title("Your App 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, caption="Sample Image", 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
 
 
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