Presidentlin commited on
Commit
7c54daa
·
1 Parent(s): 7663767
Files changed (2) hide show
  1. src/App.tsx +1 -1
  2. src/lib/data.ts +2 -2
src/App.tsx CHANGED
@@ -38,7 +38,7 @@ const App: React.FC = () => {
38
 
39
  useEffect(() => {
40
  setData(mockData)
41
- setComparisonModels(['OpenAI:GPT-4o-mini', 'Anthropic:Claude 3.5 (Sonnet)', 'Google:Gemini 1.5 Pro'])
42
  }, [])
43
 
44
  const calculatePrice = (price: number, tokens: number): number => {
 
38
 
39
  useEffect(() => {
40
  setData(mockData)
41
+ // setComparisonModels(['OpenAI:GPT-4o-mini'])
42
  }, [])
43
 
44
  const calculatePrice = (price: number, tokens: number): number => {
src/lib/data.ts CHANGED
@@ -25,9 +25,9 @@ export const mockData: Provider[] = [
25
  provider: 'Google',
26
  uri: 'https://ai.google.dev/pricing?hl=en',
27
  models: [
28
- { name: 'Gemini 1.5 Pro', inputPrice: 3.5, outputPrice: 10.50 },
29
  { name: 'Gemini 1.5 Pro 2M', inputPrice: 7.0, outputPrice: 21.0 },
30
- { name: 'Gemini 1.5 Flash', inputPrice: 0.35, outputPrice: 1.05 },
31
  { name: 'Gemini 1.5 Flash 1M', inputPrice: 0.70, outputPrice: 2.10 },
32
  ],
33
  },
 
25
  provider: 'Google',
26
  uri: 'https://ai.google.dev/pricing?hl=en',
27
  models: [
28
+ { name: 'Gemini 1.5 Pro 128K', inputPrice: 3.5, outputPrice: 10.50 },
29
  { name: 'Gemini 1.5 Pro 2M', inputPrice: 7.0, outputPrice: 21.0 },
30
+ { name: 'Gemini 1.5 Flash 128K', inputPrice: 0.35, outputPrice: 1.05 },
31
  { name: 'Gemini 1.5 Flash 1M', inputPrice: 0.70, outputPrice: 2.10 },
32
  ],
33
  },