Spaces:
Runtime error
Runtime error
File size: 352 Bytes
5ddf50c 26cbfcd 5ddf50c 7db14ed 26cbfcd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import streamlit as st
def get_image(text):
return "https://img.freepik.com/free-vector/illustration-space_29937-1093.jpg?w=2000"
def app():
st.title("Welcome to Space Vector")
st.text("You want search an image with given text.")
text = st.text_input("Enter text: ")
if st.button("Search"):
st.image(get_image(text))
|