rayl-aoit's picture
Update app.py
c64bdd7 verified
raw
history blame
1.02 kB
import gradio as gr
playground = gr.Blocks()
def create_playground_header():
gr.Markdown("""
πŸ€— Hugging Face Labs
** Explore different LLM on Hugging Face platform. Just play and enjoy **
""")
def create_playground_footer():
gr.Markdown("""
### To Learn More about πŸ€— Hugging Face,[Click Here](https://huggingface.co/docs)
""")
with playground:
create_playground_header()
with gr.Tabs():
with gr.TabItem("Text"):
gr.Markdown("""
> Text Summarization and Translation
""")
with gr.TabItem("Image"):
gr.Markdown("""
> Image Captioning
""")
with gr.TabItem("Name Entity"):
gr.Markdown("""
> Name Entity Recognition
""")
create_playground_footer()
playground.launch(share=True)