Spaces:
Sleeping
Sleeping
Initial Draft
Browse files
app.py
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
# Title
|
4 |
+
st.title("LLM Basics Demo - with Huggingface Pipeline()")
|
5 |
+
|
6 |
+
options = ["Sentiment Analysis", "Zero-shot Classification", "Text Generation","Mask Filling","Named Entity Recognition","Question & Answering","Summarization","English to French Translation"]
|
7 |
+
text_area = st.text_area("Enter your message", "")
|