Update app.py
Browse files
app.py
CHANGED
@@ -69,8 +69,9 @@ else:
|
|
69 |
|
70 |
# Plotting
|
71 |
fig = go.Figure()
|
72 |
-
fig.add_trace(go.Scatter(x=x, y=team_price_per_month, name='ChatGPT Plus', fillcolor="red"))
|
73 |
-
fig.add_trace(go.Scatter(x=x, y=api_price_per_month + development_cost, name='Custom-Chatgpt', fillcolor="
|
|
|
74 |
|
75 |
fig.update_layout(title="Accumulated Monthly Costs Over Time",
|
76 |
xaxis_title="Time in Months",
|
|
|
69 |
|
70 |
# Plotting
|
71 |
fig = go.Figure()
|
72 |
+
fig.add_trace(go.Scatter(x=x, y=team_price_per_month, name='ChatGPT Plus', fillcolor="red", line=dict(color='red')))
|
73 |
+
fig.add_trace(go.Scatter(x=x, y=api_price_per_month + development_cost, name='Custom-Chatgpt', fillcolor="green", line=dict(color='green')))
|
74 |
+
|
75 |
|
76 |
fig.update_layout(title="Accumulated Monthly Costs Over Time",
|
77 |
xaxis_title="Time in Months",
|