You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/init/features/genkit/index.ts
+12-9Lines changed: 12 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -382,21 +382,23 @@ export async function genkitSetup(
382
382
default: true,
383
383
}))
384
384
){
385
-
386
-
logger.info("Telemetry data can be used to monitor and gain insights into your AI features. There may be a cost associated with using this feature. See https://firebase.google.com/docs/genkit/observability/telemetry-collection.");
385
+
logger.info(
386
+
"Telemetry data can be used to monitor and gain insights into your AI features. There may be a cost associated with using this feature. See https://firebase.google.com/docs/genkit/observability/telemetry-collection.",
387
+
);
387
388
constenableTelemetry=
388
-
options.nonInteractive||
389
+
options.nonInteractive||
389
390
(awaitconfirm({
390
391
message: "Would like you to enable telemetry collection?",
391
-
default: true
392
+
default: true,
392
393
}));
393
394
394
395
generateSampleFile(
395
396
modelOptions[model].plugin,
396
397
plugins,
397
398
projectDir,
398
399
genkitInfo.templateVersion,
399
-
enableTelemetry);
400
+
enableTelemetry,
401
+
);
400
402
}
401
403
}
402
404
@@ -639,15 +641,16 @@ async function updatePackageJson(nonInteractive: boolean, projectDir: string): P
0 commit comments