Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +4 -4
src/streamlit_app.py
CHANGED
@@ -9,10 +9,10 @@ st.markdown("This dashboard helps you budget your API calls to various LLMs base
|
|
9 |
|
10 |
# Define LLM models and their costs
|
11 |
llm_data = {
|
12 |
-
"GPT-4o": {"input_cost_per_m": 2.50, "output_cost_per_m": 10.00
|
13 |
-
"Claude 3.7 Sonnet": {"input_cost_per_m": 3.00, "output_cost_per_m": 15.00
|
14 |
-
"Gemini Flash 1.5-8b": {"input_cost_per_m": 0.038, "output_cost_per_m": 0.15
|
15 |
-
"o3-mini": {"input_cost_per_m": 1.10, "output_cost_per_m": 4.40
|
16 |
}
|
17 |
|
18 |
# Convert the LLM data to a DataFrame for displaying in a table
|
|
|
9 |
|
10 |
# Define LLM models and their costs
|
11 |
llm_data = {
|
12 |
+
"GPT-4o": {"input_cost_per_m": 2.50, "output_cost_per_m": 10.00},
|
13 |
+
"Claude 3.7 Sonnet": {"input_cost_per_m": 3.00, "output_cost_per_m": 15.00},
|
14 |
+
"Gemini Flash 1.5-8b": {"input_cost_per_m": 0.038, "output_cost_per_m": 0.15},
|
15 |
+
"o3-mini": {"input_cost_per_m": 1.10, "output_cost_per_m": 4.40}
|
16 |
}
|
17 |
|
18 |
# Convert the LLM data to a DataFrame for displaying in a table
|