Spaces:
Build error
Build error
Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -115,6 +115,12 @@ with gr.Blocks(title="Token Counter & Cost Calculator", theme=gr.themes.Soft(pri
|
|
| 115 |
"**Every token costs money. Know what you're spending.**"
|
| 116 |
)
|
| 117 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 118 |
with gr.Row():
|
| 119 |
with gr.Column(scale=2):
|
| 120 |
text_input = gr.Textbox(
|
|
|
|
| 115 |
"**Every token costs money. Know what you're spending.**"
|
| 116 |
)
|
| 117 |
|
| 118 |
+
gr.Markdown(
|
| 119 |
+
"> **PM Decision:** Token counts directly impact API costs and response latency. "
|
| 120 |
+
"Use this to estimate costs before committing to a model - a 10x difference in token count "
|
| 121 |
+
"means a 10x difference in your monthly bill."
|
| 122 |
+
)
|
| 123 |
+
|
| 124 |
with gr.Row():
|
| 125 |
with gr.Column(scale=2):
|
| 126 |
text_input = gr.Textbox(
|