Spaces:
Sleeping
Sleeping
File size: 797 Bytes
ffb41aa 944b4f4 ffb41aa 549bb77 ffb41aa 944b4f4 ffb41aa 944b4f4 ffb41aa 944b4f4 ffb41aa |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
import streamlit as st
from PIL import Image
def main():
st.title("言い得て妙・生成アプリ")
# ローカルのファイルパスを指定します。
local_image_path = (
"img/_An_ethereal_boy_gracefully_traversing_a_realm_of_floating_mirr_7f76488c-8b95-4fa3-8230-a877ca792282.png"
)
# 画像を読み込む
img = Image.open(local_image_path)
# Streamlitで画像を表示する
st.image(img, use_column_width=True)
st.markdown("### 説明")
st.write("言い得て妙をあなたに差し上げます")
user_input = st.text_input("ここに単語を入力してください。適切な例えやアナロジーを提供します。")
st.markdown("### 出力")
st.write(user_input)
if __name__ == "__main__":
main()
|