Spaces:
Runtime error
Runtime error
File size: 17,258 Bytes
e0e93c4 73d3fc4 e0e93c4 73d3fc4 e0e93c4 73d3fc4 e0e93c4 73d3fc4 e0e93c4 73d3fc4 e0e93c4 73d3fc4 e0e93c4 73d3fc4 e0e93c4 73d3fc4 e0e93c4 73d3fc4 e0e93c4 73d3fc4 e0e93c4 73d3fc4 |
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 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 |
import gradio as gr
text = "<h1 style='text-align: center; color: blue; font-size: 30px;'>TCO Comparison Calculator"
text1 = "<h1 style='text-align: center; color: blue; font-size: 20px;'>First solution"
text2 = "<h1 style='text-align: center; color: blue; font-size: 20px;'>Second solution"
text3 = "<h1 style='text-align: center; color: blue; font-size: 25px;'>Comparison"
def calculate_tco(model_choice, vm_rental_choice):
VM_cost_per_hour=3.6730 #at Azure for the basic pay as you go option
maxed_out = 0.8 #percentage of time the VM is maxed out
used = 0.5 #percentage of time the VM is used
tokens_per_request = 64
if model_choice == "Llama-2-7B":
tokens_per_second=694.38
elif model_choice == "Llama-2-13B":
tokens_per_second=1000
elif model_choice == "Llama-2-70B":
tokens_per_second=10000
if vm_rental_choice == "pay as you go":
reduction = 0
elif vm_rental_choice == "1 year reserved":
reduction = 0.34
elif vm_rental_choice == "3 years reserved":
reduction = 0.62
homemade_cost_per_token = VM_cost_per_hour * (1 - reduction) / (tokens_per_second * 3600 * maxed_out * used)
homemade_cost_per_request = tokens_per_request * homemade_cost_per_token
output = f"In a situation of a {vm_rental_choice} plan, using an Home-made solution with the open-source model {model_choice}: \ncost per request = ${homemade_cost_per_request:.7f}"
return output
def calculate_tco_2(model_provider, context):
tokens_per_request = 64
if model_provider == "OpenAI":
if context == "4K context":
saas_cost_per_token = 0.00035
saas_cost_per_request = saas_cost_per_token * tokens_per_request
elif context == "16K context" :
saas_cost_per_token = 0.0007
saas_cost_per_request = saas_cost_per_token * tokens_per_request
return f"When renting services from {model_provider} for a SaaS solution, specifying a {context}, you'll get: \ncost per request = ${saas_cost_per_request:.7f}"
def extract_cost_from_text(text):
try:
cost = float(text)
return cost
except ValueError as e:
raise ValueError("Invalid cost text format")
def compare(cost_text1, cost_text2):
try:
# Extract the costs from the input strings
cost1 = extract_cost_from_text(cost_text1)
cost2 = extract_cost_from_text(cost_text2)
r = cost1 / cost2
if r < 1:
comparison_result = f"First solution is cheaper, with a ratio of {r:.2f}."
elif r > 1:
comparison_result = f"Second solution is cheaper, with a ratio of {r:.2f}."
else:
comparison_result = "Both solutions will cost the same."
return comparison_result
except ValueError as e:
return f"Error: {str(e)}"
description=f"""
<p>In this demo application, we help you compare different solutions for your AI incorporation plans, such as open-source or SaaS.</p>
<p>First, you'll have to choose the two options you'd like to compare. Then, follow the instructions to select your configurations for each option and we will compute the cost/request accordingly to them. Eventually, you can compare both solutions to evaluate which one best suits your needs, in the short or long term.</p>
"""
description1=f"""
<p>This interface provides you with the cost per token you get using the open-source solution, based on the model you choose to use and how long you're planning to use it.</p>
<p>The selected prices for a Virtual Machine rental come from Azure's VM rental plans, which can offer reductions for long-term reserved usage.</p>
<p>To compute this cost per token, some adjustments were chosen: the VM is an A100 40GB, supposedly maxed out at 80% and utilized 50% of the time in a full day. Plus, the number of tokens per request was set to 64.</p>
<p>To see the formula used to compute the cost/request, check the box just below!</p>
"""
description2=f"""
<p>This interface provides you with the cost per token resulting from the AI model provider you choose and the number of tokens you select for context, which the model will take into account when processing input texts.</p>
<p>To compute this cost per token, some adjustments were chosen: the number of tokensper request was set to 64.</p>
<p>To see the formula used to compute the cost/request, check the box just below!</p>
"""
description3=f"""
<p>This interface compares the cost per token for the two solutions you selected and gives you an insight of whether a solution is more valuable in the long term.</p>
"""
models = ["Llama-2-7B", "Llama-2-13B", "Llama-2-70B"]
vm_rental_choice = ["pay as you go", "1 year reserved", "3 years reserved"]
model_provider = ["OpenAI"]
context = ["4K context", "16K context"]
error_box = gr.Textbox(label="Error", visible=False)
bool_diy = False
bool_saas = False
with gr.Blocks(theme=gr.themes.Soft()) as demo:
gr.Markdown(value=text)
gr.Markdown(value=description)
with gr.Row():
with gr.Column(scale=2):
solution_selection = gr.Dropdown(["SaaS", "Home-made"], label="Select a Solution")
submit_btn = gr.Button("Submit")
with gr.Row(visible=False) as title_column:
gr.Markdown(value=text1)
with gr.Row(visible=False) as text_diy_column:
gr.Markdown(description1)
with gr.Row(visible=False) as see_formula_diy:
formula_diy_btn = gr.Checkbox(label="See formula", value=False)
with gr.Row(visible=False) as formula_diy:
gr.Markdown(
r"$ homemade\_cost\_per\_request = \frac{tokens\_per\_request \times VM\_cost\_per\_hour \times (1 - reduction)}{tokens\_per\_second \times 3600 \times maxed\_out \times used}$"
)
def submit_formula_diy(formula_diy_btn):
if formula_diy_btn:
return{
formula_diy: gr.update(visible=True),
}
else:
return{
formula_diy: gr.update(visible=False),
}
formula_diy_btn.select(
submit_formula_diy,
[formula_diy_btn],
[formula_diy]
)
with gr.Row(visible=False) as input_diy_column:
inp = gr.Dropdown(models, label="Select an AI Model")
inp2 = gr.Dropdown(vm_rental_choice, label="Select a VM Rental Plan")
with gr.Row(visible=False) as output_diy_column:
out = gr.Textbox(label="Cost/request")
btn = gr.Button("Compute the cost/request")
btn.click(fn=calculate_tco, inputs=[inp, inp2], outputs=out)
with gr.Row(visible=False) as text_saas_column:
gr.Markdown(description2)
with gr.Row(visible=False) as see_formula_saas:
formula_saas_btn = gr.Checkbox(label="See formula", value=False)
with gr.Row(visible=False) as formula_saas:
gr.Markdown(
r"$ saas\_cost\_per\_request = saas\_cost\_per\_token \times tokens\_per\_request$"
)
def submit_formula_diy(formula_saas_btn):
if formula_saas_btn:
return{
formula_saas: gr.update(visible=True),
}
else:
return{
formula_saas: gr.update(visible=False),
}
formula_saas_btn.select(
submit_formula_diy,
[formula_saas_btn],
[formula_saas]
)
with gr.Row(visible=False) as input_saas_column:
model_provider_inp = gr.Dropdown(model_provider, label="Model Provider")
context_inp = gr.Dropdown(context, label="Context")
with gr.Row(visible=False) as output_saas_column:
out_2 = gr.Textbox(label="Cost/request")
btn_2 = gr.Button("Compute the cost/request")
btn_2.click(fn=calculate_tco_2, inputs=[model_provider_inp, context_inp], outputs=out_2)
def submit(solution_selection):
if solution_selection == "Home-made":
return {
see_formula_diy: gr.update(visible=True),
title_column: gr.update(visible=True),
text_diy_column: gr.update(visible=True),
input_diy_column: gr.update(visible=True),
output_diy_column: gr.update(visible=True),
see_formula_saas: gr.update(visible=False),
text_saas_column: gr.update(visible=False),
input_saas_column: gr.update(visible=False),
output_saas_column: gr.update(visible=False),
}
else:
return {
see_formula_diy: gr.update(visible=False),
text_diy_column: gr.update(visible=False),
input_diy_column: gr.update(visible=False),
output_diy_column: gr.update(visible=False),
see_formula_saas: gr.update(visible=True),
title_column: gr.update(visible=True),
text_saas_column: gr.update(visible=True),
input_saas_column: gr.update(visible=True),
output_saas_column: gr.update(visible=True),
}
submit_btn.click(
submit,
solution_selection,
[see_formula_diy, see_formula_saas, text_diy_column, title_column, text_saas_column, inp, inp2, out, btn, model_provider_inp, context_inp, out_2, btn_2, input_diy_column, input_saas_column, output_diy_column, output_saas_column],
)
# gr.Divider(style="vertical", thickness=2, color="blue")
with gr.Column(scale=2):
solution_selection2 = gr.Dropdown(["SaaS", "Home-made"], label="Select a Solution")
submit_btn2 = gr.Button("Submit")
with gr.Row(visible=False) as title_column2:
gr.Markdown(value=text2)
with gr.Row(visible=False) as text_diy_column2:
gr.Markdown(description1)
with gr.Row(visible=False) as see_formula_diy2:
formula_diy_btn2 = gr.Checkbox(label="See formula", value=False)
with gr.Row(visible=False) as formula_diy2:
gr.Markdown(
r"$ homemade\_cost\_per\_request = \frac{tokens\_per\_request \times VM\_cost\_per\_hour \times (1 - reduction)}{tokens\_per\_second \times 3600 \times maxed\_out \times used}$"
)
def submit_formula_diy(formula_diy_btn2):
if formula_diy_btn2:
return{
formula_diy2: gr.update(visible=True),
}
else:
return{
formula_diy2: gr.update(visible=False),
}
formula_diy_btn2.select(
submit_formula_diy,
[formula_diy_btn2],
[formula_diy2]
)
with gr.Row(visible=False) as input_diy_column2:
inp_2 = gr.Dropdown(models, label="Select an AI Model")
inp2_2 = gr.Dropdown(vm_rental_choice, label="Select a VM Rental Plan")
with gr.Row(visible=False) as output_diy_column2:
out2 = gr.Textbox(label="Cost/request")
btn2 = gr.Button("Compute the cost/request")
btn2.click(fn=calculate_tco, inputs=[inp_2, inp2_2], outputs=out2)
with gr.Row(visible=False) as text_saas_column2:
gr.Markdown(description2)
with gr.Row(visible=False) as see_formula_saas2:
formula_saas_btn2 = gr.Checkbox(label="See formula", value=False)
with gr.Row(visible=False) as formula_saas2:
gr.Markdown(
r"$ saas\_cost\_per\_request = saas\_cost\_per\_token \times tokens\_per\_request$"
)
def submit_formula_diy2(formula_saas_btn2):
if formula_saas_btn2:
return{
formula_saas2: gr.update(visible=True),
}
else:
return{
formula_saas2: gr.update(visible=False),
}
formula_saas_btn2.select(
submit_formula_diy2,
[formula_saas_btn2],
[formula_saas2]
)
with gr.Row(visible=False) as input_saas_column2:
model_provider_inp2 = gr.Dropdown(['OpenAI'], label="Model Provider")
context_inp2 = gr.Dropdown(['4K context', '16K context'], label="Context")
with gr.Row(visible=False) as output_saas_column2:
out_2_2 = gr.Textbox(label="Cost/request")
btn_2_2 = gr.Button("Compute the cost/request")
btn_2_2.click(fn=calculate_tco_2, inputs=[model_provider_inp2, context_inp2], outputs=out_2_2)
def submit(solution_selection2):
if solution_selection2 == "Home-made":
return {
see_formula_diy2: gr.update(visible=True),
title_column2: gr.update(visible=True),
text_diy_column2: gr.update(visible=True),
input_diy_column2: gr.update(visible=True),
output_diy_column2: gr.update(visible=True),
see_formula_saas2: gr.update(visible=False),
text_saas_column2: gr.update(visible=False),
input_saas_column2: gr.update(visible=False),
output_saas_column2: gr.update(visible=False),
}
else:
return {
see_formula_diy2: gr.update(visible=False),
text_diy_column2: gr.update(visible=False),
input_diy_column2: gr.update(visible=False),
output_diy_column2: gr.update(visible=False),
see_formula_saas2: gr.update(visible=True),
title_column2: gr.update(visible=True),
text_saas_column2: gr.update(visible=True),
input_saas_column2: gr.update(visible=True),
output_saas_column2: gr.update(visible=True),
}
submit_btn2.click(
submit,
solution_selection2,
[see_formula_diy2, see_formula_saas2, title_column2, text_diy_column2, text_saas_column2, inp_2, inp2_2, out2, btn2, model_provider_inp2, context_inp2, out_2_2, btn_2_2, input_diy_column2, input_saas_column2, output_diy_column2, output_saas_column2],
)
gr.Markdown(value=text3)
gr.Markdown(description3)
error_box = gr.Textbox(label="Error", visible=False)
with gr.Row():
cost_text1_inp = gr.Textbox(label="Cost/request for the first solution", placeholder="Enter cost/request for the first solution")
cost_text2_inp = gr.Textbox(label="Cost/request for the second solution",placeholder="Enter cost/request for the second solution")
btn_compare = gr.Button("Compare")
with gr.Row(visible=False) as output:
out_compare = gr.Textbox()
def submit2(cost_text1_inp, cost_text2_inp):
if len(cost_text1_inp) == 0:
return {error_box: gr.update(value="Enter cost of solution 1", visible=True)}
if len(cost_text2_inp) == 0:
return {error_box: gr.update(value="Enter cost of solution 2", visible=True)}
return {
output: gr.update(visible=True),
out_compare: compare(cost_text1_inp, cost_text2_inp),
}
btn_compare.click(
submit2,
inputs=[cost_text1_inp, cost_text2_inp],
outputs=[out_compare, output]
)
demo.launch() |