File size: 4,940 Bytes
e14fdae 605eceb e14fdae 605eceb e14fdae 605eceb e14fdae 605eceb e14fdae 605eceb e14fdae 605eceb 3262754 e14fdae 605eceb 3262754 cc669f5 3262754 e14fdae 605eceb e14fdae 3262754 e14fdae 605eceb e14fdae 605eceb 3262754 605eceb e14fdae 605eceb e14fdae 605eceb e14fdae 0335c15 c84427d 0335c15 e14fdae 605eceb e14fdae 605eceb e14fdae 605eceb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
import streamlit as st
import numpy as np
import plotly.graph_objects as go
st.set_page_config()
st.title('Cost Comparison Chatgpt Plus vs Custom-Chatgpt CoPilot')
@st.dialog("Assumptions")
def note():
st.markdown('''
# ChatGPT plans
- Plus - $20/month with 320 and 640 msgs per day cap for GPT-4 and GPT-4o models resp
- Teams - $30/month with 800 and 1600 msgs per day cap for GPT-4 and GPT-4o models resp (minimum 2 users)
[link](https://openai.com/chatgpt/pricing)
# API plans
- GPT-4o: \\$5/1Million input tokens, $15/1Million output tokens
- GPT4: \\$30/1Million input tokens, $60/1Million output tokens
[link](https://openai.com/api/pricing)
# Assumptions
- 1 token = 0.75 words (1.33 tokens ≈ 1 word)
- For ChatGPT API plans, we consider 1 input prompt = 250 words and same word count for output messages
''')
# if st.button("Show Assumptions"):
# note()
with st.sidebar:
st.title("Model Parameters")
max_months = st.select_slider("No. of months to show on plot (x-axis)",
options=np.arange(0, 37, 1, dtype=int), value=13)
no_of_users = st.select_slider("No. of users",
options=np.arange(10, 501, 1, dtype=int), value=30)
st.subheader("One-Time Development Cost (Custom App)", divider="gray")
development_cost = st.select_slider("Development Cost for Custom App ($)",
options=np.arange(3000, 20001, 100, dtype=int), value=3000)
st.subheader("Token Usage", divider="gray")
st.markdown("""
**Note:**
- 1 token = 0.75 words
- 1.33 tokens $\\approx$ 1 word
""", unsafe_allow_html=True)
input_tokens_per_month = st.slider("Input Tokens per user (Monthly)",
min_value=10000, max_value=500000, step=10000, value=85000)
output_tokens_per_month = st.slider("Output Tokens per user (Monthly)",
min_value=10000, max_value=500000, step=10000, value=85000)
# Fixed parameters
plan_limits = {"Plus": {"GPT-4o": 640, "GPT4": 320, "price": 20}, # 40 messages/3hrs
"Team": {"GPT-4o": 1600, "GPT4": 800, "price": 30}} # 100 messages/3hrs, minimum 2 users price 25 pm if billed annually
api_price = {"GPT-4o": {"input": 0.0100, "output": 0.0300}, "GPT4": {"input": 0.0100, "output": 0.0300}} #usd per 1K tokens
# Timeline
x = np.arange(0, max_months, dtype=int) # in months timeline
# Accumulated cost for ChatGPT-4o API
api_price_per_month = x * (api_price["GPT4"]["input"] * input_tokens_per_month *0.001 +
api_price["GPT4"]["output"] * output_tokens_per_month*0.001) * no_of_users
# Accumulated cost for ChatGPT Team
team_price_per_month = x * no_of_users * plan_limits["Plus"]["price"]
# # Calculate breakeven month
savings_per_month=(team_price_per_month-api_price_per_month)/x
if savings_per_month[1] > 0:
breakeven_month = development_cost / savings_per_month[1]
else:
breakeven_month = None
# Plotting
fig = go.Figure()
fig.add_trace(go.Scatter(x=x, y=team_price_per_month, name='ChatGPT Plus', fillcolor="red", line=dict(color='red')))
fig.add_trace(go.Scatter(x=x, y=api_price_per_month + development_cost, name='Custom-Chatgpt', fillcolor="blue", line=dict(color='blue')))
fig.update_layout(title="Accumulated Monthly Costs Over Time",
xaxis_title="Time in Months",
yaxis_title="Accumulated Cost in $")
# Add breakeven annotation if applicable
if breakeven_month is not None and breakeven_month < max_months:
fig.add_vline(x=breakeven_month, line_dash="dash", line_color="black")
fig.add_annotation(x=breakeven_month, y=api_price_per_month[int(breakeven_month)] + development_cost,
text=f"Breakeven at {breakeven_month:.1f} months",
showarrow=True, arrowhead=1)
st.plotly_chart(fig)
# Description
st.info('''
This plot compares the accumulated costs of two options over time: ChatGPT Teams and GPT-4o API with a Custom Application.
1. **ChatGPT Teams**: A fixed cost per user with no upfront development costs.
2. **GPT-4o API with Custom Application**: Includes a one-time development cost and usage-based charges for input and output tokens.
#### Key Insights:
- The black dashed line indicates the **breakeven point**, where the total cost of the custom application becomes equal to or less than the cost of ChatGPT Teams.
- Beyond this point, the custom application provides **cost savings** compared to ChatGPT Teams.
Use the sliders to adjust parameters like the number of users and the one-time development cost to see how they affect the breakeven point and accumulated costs.
''')
|