Skip to content

Commit ba7b0bf

Browse files
added gemini newest models
1 parent 3f58c00 commit ba7b0bf

File tree

3 files changed

+28
-8
lines changed

3 files changed

+28
-8
lines changed

lib/models.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,27 @@
161161
"name": "Gemini 1.5 Flash",
162162
"multiModal": true
163163
},
164+
{
165+
"id": "models/gemini-2.5-pro",
166+
"provider": "Google Generative AI",
167+
"providerId": "google",
168+
"name": "Gemini 2.5 Pro",
169+
"multiModal": true
170+
},
171+
{
172+
"id": "models/gemini-2.5-flash-lite-preview-06-17",
173+
"provider": "Google Generative AI",
174+
"providerId": "google",
175+
"name": "Gemini 2.5 Flash lite Preview 06-17",
176+
"multiModal": true
177+
},
178+
{
179+
"id": "models/gemini-2.5-flash",
180+
"provider": "Google Generative AI",
181+
"providerId": "google",
182+
"name": "Gemini 2.5 Flash",
183+
"multiModal": true
184+
},
164185
{
165186
"id": "models/gemini-2.5-flash-preview-05-20",
166187
"provider": "Google Generative AI",

lib/stores/billingStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export interface Subscription {
99
stripe_customer_id?: string
1010
plan_id: string
1111
plan_name: string
12-
price_amount: number // in cents
12+
price_amount: number
1313
price_currency: string
1414
interval_type: 'month' | 'year'
1515
status: 'active' | 'canceled' | 'past_due' | 'incomplete' | 'trialing' | 'unpaid'
Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
1-
# This is a config for E2B sandbox template.
2-
# You can use 'template_id' (1ypi8ae3amtyxttny60k) or 'template_name (gradio-developer) from this config to spawn a sandbox:
1+
# E2B sandbox template config for gradio-developer
32

4-
# Python SDK
3+
# You can use 'template_id' or 'template_name' from this config to spawn a sandbox:
4+
# Python SDK:
55
# from e2b import Sandbox
66
# sandbox = Sandbox(template='gradio-developer')
7-
8-
# JS SDK
7+
# JS SDK:
98
# import { Sandbox } from 'e2b'
109
# const sandbox = await Sandbox.create({ template: 'gradio-developer' })
1110

1211
template_id = "1ypi8ae3amtyxttny60k"
13-
dockerfile = "e2b.Dockerfile"
1412
template_name = "gradio-developer"
13+
dockerfile = "e2b.Dockerfile"
1514
start_cmd = "cd /home/user && gradio app.py"
1615
cpu_count = 4
17-
memory_mb = 4_096
16+
memory_mb = 4096
1817
team_id = "460355b3-4f64-48f9-9a16-4442817f79f5"

0 commit comments

Comments
 (0)