Skip to content

Commit c346b5a

Browse files
committed
style
1 parent aca4cc6 commit c346b5a

File tree

1 file changed

+34
-7
lines changed

1 file changed

+34
-7
lines changed

FirebaseAI/Tests/TestApp/Tests/Integration/GenerateContentIntegrationTests.swift

Lines changed: 34 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -172,12 +172,36 @@ struct GenerateContentIntegrationTests {
172172
(.googleAI_v1beta, ModelNames.gemini2_5_Pro, ThinkingConfig(
173173
thinkingBudget: 32768, includeThoughts: true
174174
)),
175-
(.googleAI_v1beta, ModelNames.gemini3_1_FlashLitePreview, ThinkingConfig(thinkingLevel: .minimal)),
176-
(.googleAI_v1beta, ModelNames.gemini3_1_FlashLitePreview, ThinkingConfig(thinkingLevel: .low)),
177-
(.googleAI_v1beta, ModelNames.gemini3_1_FlashLitePreview, ThinkingConfig(thinkingLevel: .medium)),
178-
(.googleAI_v1beta, ModelNames.gemini3_1_FlashLitePreview, ThinkingConfig(thinkingLevel: .high)),
179-
(.googleAI_v1beta, ModelNames.gemini3_1_FlashLitePreview, ThinkingConfig(thinkingBudget: 128)),
180-
(.googleAI_v1beta, ModelNames.gemini3_1_FlashLitePreview, ThinkingConfig(thinkingBudget: 32768)),
175+
(
176+
.googleAI_v1beta,
177+
ModelNames.gemini3_1_FlashLitePreview,
178+
ThinkingConfig(thinkingLevel: .minimal)
179+
),
180+
(
181+
.googleAI_v1beta,
182+
ModelNames.gemini3_1_FlashLitePreview,
183+
ThinkingConfig(thinkingLevel: .low)
184+
),
185+
(
186+
.googleAI_v1beta,
187+
ModelNames.gemini3_1_FlashLitePreview,
188+
ThinkingConfig(thinkingLevel: .medium)
189+
),
190+
(
191+
.googleAI_v1beta,
192+
ModelNames.gemini3_1_FlashLitePreview,
193+
ThinkingConfig(thinkingLevel: .high)
194+
),
195+
(
196+
.googleAI_v1beta,
197+
ModelNames.gemini3_1_FlashLitePreview,
198+
ThinkingConfig(thinkingBudget: 128)
199+
),
200+
(
201+
.googleAI_v1beta,
202+
ModelNames.gemini3_1_FlashLitePreview,
203+
ThinkingConfig(thinkingBudget: 32768)
204+
),
181205
(.googleAI_v1beta, ModelNames.gemini3_1_FlashLitePreview, ThinkingConfig(
182206
thinkingBudget: 32768, includeThoughts: true
183207
)),
@@ -499,7 +523,10 @@ struct GenerateContentIntegrationTests {
499523
@Test(arguments: [
500524
(InstanceConfig.vertexAI_v1beta, ModelNames.gemini2FlashLite),
501525
(InstanceConfig.vertexAI_v1beta_global, ModelNames.gemini3_1_FlashLitePreview),
502-
(InstanceConfig.vertexAI_v1beta_global_appCheckLimitedUse, ModelNames.gemini3_1_FlashLitePreview),
526+
(
527+
InstanceConfig.vertexAI_v1beta_global_appCheckLimitedUse,
528+
ModelNames.gemini3_1_FlashLitePreview
529+
),
503530
(InstanceConfig.googleAI_v1beta, ModelNames.gemini2_5_FlashLite),
504531
(InstanceConfig.googleAI_v1beta_appCheckLimitedUse, ModelNames.gemini2_5_FlashLite),
505532
(InstanceConfig.googleAI_v1beta, ModelNames.gemma3_4B),

0 commit comments

Comments
 (0)