File size: 283 Bytes
9ee675e |
1 2 3 4 5 6 7 8 9 10 11 |
import streamlit as st
from src import get_predict
def main():
st.title("Aplicación de Streamlit")
texto = st.text_input("Ingresa un texto")
if texto:
resultado = get_predict(texto)
st.write("Resultado:", resultado)
if __name__ == '__main__':
main()
|