llm-basics / app.py
rahgadda's picture
Initial Draft
5ccab46
raw
history blame
334 Bytes
import streamlit as st
# Title
st.title("LLM Basics Demo - with Huggingface Pipeline()")
options = ["Sentiment Analysis", "Zero-shot Classification", "Text Generation","Mask Filling","Named Entity Recognition","Question & Answering","Summarization","English to French Translation"]
text_area = st.text_area("Enter your message", "")