-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsidebar.py
More file actions
14 lines (11 loc) · 734 Bytes
/
sidebar.py
File metadata and controls
14 lines (11 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import streamlit as st
def sidebar():
with st.sidebar:
st.image("cutie.png", use_column_width=True)
st.title("About Token Tally")
st.info("Select your desired base model, parameters, and configuration to get an estimate of the required GPU memory and model size. Do contribute: https://github.com/adarshxs/TokenTally")
# Add a Products section with radio buttons to select a page
product_options = ["Overview", "LLM Cost Tool", "Transformer Memory Tool", "LLM Model Recommendation"]
selected_product = st.radio("Products", product_options)
st.warning("Notice: The logic for the final cost/token is yet to be implemented!")
return selected_product