Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ozzyable
/
transaction-summarizer
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ozzyable
commited on
Jul 11, 2024
Commit
8a3759d
·
1 Parent(s):
e642edd
Added files to test i/o
Browse files
Files changed (1)
hide
show
app.py
+5
-0
app.py
ADDED
Viewed
@@ -0,0 +1,5 @@
1
+
import streamlit as st
2
+
3
+
transactions = st.text_area("Enter your transactions").split(',').strip()
4
+
if st.button("Reset", type="primary"):
5
+
st.write(f"transaction: {transactions}")