ehagey commited on
Commit
a7212d4
·
verified ·
1 Parent(s): 81497d1

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. 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, "description": "OpenAI's GPT-4o model"},
13
- "Claude 3.7 Sonnet": {"input_cost_per_m": 3.00, "output_cost_per_m": 15.00, "description": "Anthropic's Claude 3.7 Sonnet model"},
14
- "Gemini Flash 1.5-8b": {"input_cost_per_m": 0.038, "output_cost_per_m": 0.15, "description": "Google's Gemini Flash 1.5-8b model"},
15
- "o3-mini": {"input_cost_per_m": 1.10, "output_cost_per_m": 4.40, "description": "Created Jan 31, 2025, 200k context"}
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