TraducaoPT-EN / app.py
thlanza's picture
Update app.py
0be4c02
raw
history blame
979 Bytes
import streamlit as st
from langchain.llms import HuggingFaceHub
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM, pipeline
from st_pages import Page, show_pages, add_page_title
st.set_page_config(page_title="Tradução do Português para o Inglês.", page_icon=":robot:")
# Optional -- adds the title and icon to the current page
add_page_title()
# Specify what pages should be shown in the sidebar, and what their titles
# and icons should be
show_pages(
[
Page("app.py", "Home", "🏠"),
Page("pages/resumo.py", "Resumo", ":books:"),
Page("pages/traducao.py", "Resumo", ":books:"),
]
)
#App UI starts here
st.image("https://www.viajenaviagem.com/wp-content/uploads/2020/02/belo-horizonte-pampulha.jpg.webp", caption='Autoria de Thiago Lanza. Todos os direitos reservados')
st.header("Esse é o ajudante!")
st.subheader("Escolha no menu ao lado entre traduzir um texto do português para o inglês ou resumir um texto.")