Spaces:
Sleeping
Sleeping
import streamlit as st | |
st.title("Automatic Reimbursement Tool Demo") | |
with st.container(): | |
col1, col2 = st.columns(2) | |
with col1: | |
st.header("Input") | |
st.file_uploader("Upload a PDF file or an image", type=["pdf", "png", "jpg", "jpeg"]) |