USC-GPT / app.py
bhulston's picture
Update app.py
b930634
raw
history blame
351 Bytes
import streamlit as st
from transformers import pipeline
from PIL import Image
import time
st.title("USC GPT - Find the perfect class")
class_time = st.slider(
"Filter Class Times:",
value=(time(11, 30), time(12, 45)))
# st.write("You're scheduled for:", class_time)
units = st.slider(
"Number of units",
1, 4,
value = (1, 4)
)