728x90
import streamlit as st
# streamlit document를 활용하여 예제가 아닌 나만의 것으로 만들어 보았다.
st.title("동물 이미지 찾아 주기 🐯")
st.subheader("영어로 입력해 주세요.",divider="rainbow")
animal = st.chat_input("어떤 동물을 찾아드릴까요?")
if animal:
with st.chat_message("ai"):
st.text("잠시만 기다려 주세요.")
st.image(f"https://edu.spartacodingclub.kr/random/?{animal}")
st.text(f"예쁜{animal}가 나왔습니다.")
WEB : https://animalfinder.streamlit.app/
Github : https://github.com/verdantjuly/animalfinder
'학습 내용 정리 > AI' 카테고리의 다른 글
AI가 처음이어도 쉽게 배우는 생성형 AI 2주차 (0) | 2024.07.22 |
---|---|
AI가 처음이어도 쉽게 배우는 생성형 AI 1주차 (2) | 2024.07.20 |
streamlit을 활용한 웹 서비스 개발 3주차 (0) | 2024.07.19 |
streamlit을 활용한 웹 서비스 개발 1주차 (2) | 2024.07.19 |