promptfoo 0.87.0 → 0.87.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -12
- package/dist/package.json +2 -2
- package/dist/src/constants.d.ts +1 -0
- package/dist/src/constants.d.ts.map +1 -1
- package/dist/src/constants.js +3 -2
- package/dist/src/constants.js.map +1 -1
- package/dist/src/database/tables.d.ts +18 -18
- package/dist/src/envars.d.ts +1 -0
- package/dist/src/envars.d.ts.map +1 -1
- package/dist/src/envars.js.map +1 -1
- package/dist/src/providers/openai.d.ts +1 -0
- package/dist/src/providers/openai.d.ts.map +1 -1
- package/dist/src/providers/openai.js +46 -11
- package/dist/src/providers/openai.js.map +1 -1
- package/dist/src/share.d.ts.map +1 -1
- package/dist/src/share.js +3 -1
- package/dist/src/share.js.map +1 -1
- package/dist/src/types/index.d.ts +324 -324
- package/dist/src/util/index.d.ts +6 -6
- package/dist/src/validators/prompts.d.ts +2 -2
- package/dist/src/validators/providers.d.ts +26 -26
- package/dist/src/validators/redteam.d.ts +10 -10
- package/dist/src/web/nextui/404/index.html +1 -1
- package/dist/src/web/nextui/404.html +1 -1
- package/dist/src/web/nextui/_next/static/chunks/app/{layout-ad06af684889c655.js → layout-e465aaafbfe88e82.js} +1 -1
- package/dist/src/web/nextui/auth/login/index.html +1 -1
- package/dist/src/web/nextui/auth/login/index.txt +2 -2
- package/dist/src/web/nextui/auth/signup/index.html +1 -1
- package/dist/src/web/nextui/auth/signup/index.txt +2 -2
- package/dist/src/web/nextui/datasets/index.html +1 -1
- package/dist/src/web/nextui/datasets/index.txt +2 -2
- package/dist/src/web/nextui/eval/index.html +1 -1
- package/dist/src/web/nextui/eval/index.txt +2 -2
- package/dist/src/web/nextui/index.html +1 -1
- package/dist/src/web/nextui/index.txt +2 -2
- package/dist/src/web/nextui/progress/index.html +1 -1
- package/dist/src/web/nextui/progress/index.txt +2 -2
- package/dist/src/web/nextui/prompts/index.html +1 -1
- package/dist/src/web/nextui/prompts/index.txt +2 -2
- package/dist/src/web/nextui/report/index.html +1 -1
- package/dist/src/web/nextui/report/index.txt +2 -2
- package/dist/src/web/nextui/setup/index.html +1 -1
- package/dist/src/web/nextui/setup/index.txt +2 -2
- package/dist/test/providers.test.js +182 -0
- package/dist/test/providers.test.js.map +1 -1
- package/package.json +2 -2
- /package/dist/src/web/nextui/_next/static/{9oePeu-Q4M9r_50nf_Dh9 → gtTJhFvE95U20UjbnSnMr}/_buildManifest.js +0 -0
- /package/dist/src/web/nextui/_next/static/{9oePeu-Q4M9r_50nf_Dh9 → gtTJhFvE95U20UjbnSnMr}/_ssgManifest.js +0 -0
package/dist/src/util/index.d.ts
CHANGED
|
@@ -67,7 +67,7 @@ export declare function getTestCases(limit?: number): Promise<{
|
|
|
67
67
|
function?: ((args_0: {
|
|
68
68
|
vars: Record<string, any>;
|
|
69
69
|
provider?: import("../types").ApiProvider | undefined;
|
|
70
|
-
}, ...
|
|
70
|
+
}, ...args: unknown[]) => Promise<any>) | undefined;
|
|
71
71
|
id?: string | undefined;
|
|
72
72
|
display?: string | undefined;
|
|
73
73
|
config?: any;
|
|
@@ -166,8 +166,8 @@ export declare function getTestCases(limit?: number): Promise<{
|
|
|
166
166
|
label?: string | undefined;
|
|
167
167
|
transform?: string | undefined;
|
|
168
168
|
delay?: number | undefined;
|
|
169
|
-
callEmbeddingApi?: ((args_0: string, ...
|
|
170
|
-
callClassificationApi?: ((args_0: string, ...
|
|
169
|
+
callEmbeddingApi?: ((args_0: string, ...args: unknown[]) => Promise<import("../types").ProviderEmbeddingResponse>) | undefined;
|
|
170
|
+
callClassificationApi?: ((args_0: string, ...args: unknown[]) => Promise<import("../types").ProviderClassificationResponse>) | undefined;
|
|
171
171
|
} | undefined;
|
|
172
172
|
metadata?: Record<string, any> | undefined;
|
|
173
173
|
description?: string | undefined;
|
|
@@ -221,7 +221,7 @@ export declare function getDatasetFromHash(hash: string): Promise<{
|
|
|
221
221
|
function?: ((args_0: {
|
|
222
222
|
vars: Record<string, any>;
|
|
223
223
|
provider?: import("../types").ApiProvider | undefined;
|
|
224
|
-
}, ...
|
|
224
|
+
}, ...args: unknown[]) => Promise<any>) | undefined;
|
|
225
225
|
id?: string | undefined;
|
|
226
226
|
display?: string | undefined;
|
|
227
227
|
config?: any;
|
|
@@ -320,8 +320,8 @@ export declare function getDatasetFromHash(hash: string): Promise<{
|
|
|
320
320
|
label?: string | undefined;
|
|
321
321
|
transform?: string | undefined;
|
|
322
322
|
delay?: number | undefined;
|
|
323
|
-
callEmbeddingApi?: ((args_0: string, ...
|
|
324
|
-
callClassificationApi?: ((args_0: string, ...
|
|
323
|
+
callEmbeddingApi?: ((args_0: string, ...args: unknown[]) => Promise<import("../types").ProviderEmbeddingResponse>) | undefined;
|
|
324
|
+
callClassificationApi?: ((args_0: string, ...args: unknown[]) => Promise<import("../types").ProviderClassificationResponse>) | undefined;
|
|
325
325
|
} | undefined;
|
|
326
326
|
metadata?: Record<string, any> | undefined;
|
|
327
327
|
description?: string | undefined;
|
|
@@ -45,7 +45,7 @@ export declare const PromptSchema: z.ZodObject<{
|
|
|
45
45
|
function?: ((args_0: {
|
|
46
46
|
vars: Record<string, any>;
|
|
47
47
|
provider?: ApiProvider | undefined;
|
|
48
|
-
}, ...
|
|
48
|
+
}, ...args: unknown[]) => Promise<any>) | undefined;
|
|
49
49
|
id?: string | undefined;
|
|
50
50
|
display?: string | undefined;
|
|
51
51
|
config?: any;
|
|
@@ -55,7 +55,7 @@ export declare const PromptSchema: z.ZodObject<{
|
|
|
55
55
|
function?: ((args_0: {
|
|
56
56
|
vars: Record<string, any>;
|
|
57
57
|
provider?: ApiProvider | undefined;
|
|
58
|
-
}, ...
|
|
58
|
+
}, ...args: unknown[]) => Promise<any>) | undefined;
|
|
59
59
|
id?: string | undefined;
|
|
60
60
|
display?: string | undefined;
|
|
61
61
|
config?: any;
|
|
@@ -334,7 +334,7 @@ export declare const CallApiContextParamsSchema: z.ZodObject<{
|
|
|
334
334
|
function?: ((args_0: {
|
|
335
335
|
vars: Record<string, any>;
|
|
336
336
|
provider?: ApiProvider | undefined;
|
|
337
|
-
}, ...
|
|
337
|
+
}, ...args: unknown[]) => Promise<any>) | undefined;
|
|
338
338
|
id?: string | undefined;
|
|
339
339
|
display?: string | undefined;
|
|
340
340
|
config?: any;
|
|
@@ -344,7 +344,7 @@ export declare const CallApiContextParamsSchema: z.ZodObject<{
|
|
|
344
344
|
function?: ((args_0: {
|
|
345
345
|
vars: Record<string, any>;
|
|
346
346
|
provider?: ApiProvider | undefined;
|
|
347
|
-
}, ...
|
|
347
|
+
}, ...args: unknown[]) => Promise<any>) | undefined;
|
|
348
348
|
id?: string | undefined;
|
|
349
349
|
display?: string | undefined;
|
|
350
350
|
config?: any;
|
|
@@ -358,13 +358,13 @@ export declare const CallApiContextParamsSchema: z.ZodObject<{
|
|
|
358
358
|
function?: ((args_0: {
|
|
359
359
|
vars: Record<string, any>;
|
|
360
360
|
provider?: ApiProvider | undefined;
|
|
361
|
-
}, ...
|
|
361
|
+
}, ...args: unknown[]) => Promise<any>) | undefined;
|
|
362
362
|
id?: string | undefined;
|
|
363
363
|
display?: string | undefined;
|
|
364
364
|
config?: any;
|
|
365
365
|
};
|
|
366
366
|
fetchWithCache?: any;
|
|
367
|
-
filters?: Record<string, (args_0: any, ...
|
|
367
|
+
filters?: Record<string, (args_0: any, ...args: any[]) => string> | undefined;
|
|
368
368
|
getCache?: any;
|
|
369
369
|
logger?: any;
|
|
370
370
|
originalProvider?: any;
|
|
@@ -376,13 +376,13 @@ export declare const CallApiContextParamsSchema: z.ZodObject<{
|
|
|
376
376
|
function?: ((args_0: {
|
|
377
377
|
vars: Record<string, any>;
|
|
378
378
|
provider?: ApiProvider | undefined;
|
|
379
|
-
}, ...
|
|
379
|
+
}, ...args: unknown[]) => Promise<any>) | undefined;
|
|
380
380
|
id?: string | undefined;
|
|
381
381
|
display?: string | undefined;
|
|
382
382
|
config?: any;
|
|
383
383
|
};
|
|
384
384
|
fetchWithCache?: any;
|
|
385
|
-
filters?: Record<string, (args_0: any, ...
|
|
385
|
+
filters?: Record<string, (args_0: any, ...args: any[]) => string> | undefined;
|
|
386
386
|
getCache?: any;
|
|
387
387
|
logger?: any;
|
|
388
388
|
originalProvider?: any;
|
|
@@ -408,16 +408,16 @@ export declare const ApiProviderSchema: z.ZodObject<{
|
|
|
408
408
|
label?: string | undefined;
|
|
409
409
|
transform?: string | undefined;
|
|
410
410
|
delay?: number | undefined;
|
|
411
|
-
callEmbeddingApi?: ((args_0: string, ...
|
|
412
|
-
callClassificationApi?: ((args_0: string, ...
|
|
411
|
+
callEmbeddingApi?: ((args_0: string, ...args: unknown[]) => Promise<ProviderEmbeddingResponse>) | undefined;
|
|
412
|
+
callClassificationApi?: ((args_0: string, ...args: unknown[]) => Promise<ProviderClassificationResponse>) | undefined;
|
|
413
413
|
}, {
|
|
414
414
|
callApi: CallApiFunction;
|
|
415
415
|
id: (...args: unknown[]) => string;
|
|
416
416
|
label?: string | undefined;
|
|
417
417
|
transform?: string | undefined;
|
|
418
418
|
delay?: number | undefined;
|
|
419
|
-
callEmbeddingApi?: ((args_0: string, ...
|
|
420
|
-
callClassificationApi?: ((args_0: string, ...
|
|
419
|
+
callEmbeddingApi?: ((args_0: string, ...args: unknown[]) => Promise<ProviderEmbeddingResponse>) | undefined;
|
|
420
|
+
callClassificationApi?: ((args_0: string, ...args: unknown[]) => Promise<ProviderClassificationResponse>) | undefined;
|
|
421
421
|
}>;
|
|
422
422
|
export declare const ProvidersSchema: z.ZodUnion<[z.ZodString, z.ZodIntersection<z.ZodFunction<z.ZodTuple<[z.ZodString, z.ZodOptional<z.ZodObject<{
|
|
423
423
|
fetchWithCache: z.ZodOptional<z.ZodAny>;
|
|
@@ -447,7 +447,7 @@ export declare const ProvidersSchema: z.ZodUnion<[z.ZodString, z.ZodIntersection
|
|
|
447
447
|
function?: ((args_0: {
|
|
448
448
|
vars: Record<string, any>;
|
|
449
449
|
provider?: ApiProvider | undefined;
|
|
450
|
-
}, ...
|
|
450
|
+
}, ...args: unknown[]) => Promise<any>) | undefined;
|
|
451
451
|
id?: string | undefined;
|
|
452
452
|
display?: string | undefined;
|
|
453
453
|
config?: any;
|
|
@@ -457,7 +457,7 @@ export declare const ProvidersSchema: z.ZodUnion<[z.ZodString, z.ZodIntersection
|
|
|
457
457
|
function?: ((args_0: {
|
|
458
458
|
vars: Record<string, any>;
|
|
459
459
|
provider?: ApiProvider | undefined;
|
|
460
|
-
}, ...
|
|
460
|
+
}, ...args: unknown[]) => Promise<any>) | undefined;
|
|
461
461
|
id?: string | undefined;
|
|
462
462
|
display?: string | undefined;
|
|
463
463
|
config?: any;
|
|
@@ -471,13 +471,13 @@ export declare const ProvidersSchema: z.ZodUnion<[z.ZodString, z.ZodIntersection
|
|
|
471
471
|
function?: ((args_0: {
|
|
472
472
|
vars: Record<string, any>;
|
|
473
473
|
provider?: ApiProvider | undefined;
|
|
474
|
-
}, ...
|
|
474
|
+
}, ...args: unknown[]) => Promise<any>) | undefined;
|
|
475
475
|
id?: string | undefined;
|
|
476
476
|
display?: string | undefined;
|
|
477
477
|
config?: any;
|
|
478
478
|
};
|
|
479
479
|
fetchWithCache?: any;
|
|
480
|
-
filters?: Record<string, (args_0: any, ...
|
|
480
|
+
filters?: Record<string, (args_0: any, ...args: any[]) => string> | undefined;
|
|
481
481
|
getCache?: any;
|
|
482
482
|
logger?: any;
|
|
483
483
|
originalProvider?: any;
|
|
@@ -489,13 +489,13 @@ export declare const ProvidersSchema: z.ZodUnion<[z.ZodString, z.ZodIntersection
|
|
|
489
489
|
function?: ((args_0: {
|
|
490
490
|
vars: Record<string, any>;
|
|
491
491
|
provider?: ApiProvider | undefined;
|
|
492
|
-
}, ...
|
|
492
|
+
}, ...args: unknown[]) => Promise<any>) | undefined;
|
|
493
493
|
id?: string | undefined;
|
|
494
494
|
display?: string | undefined;
|
|
495
495
|
config?: any;
|
|
496
496
|
};
|
|
497
497
|
fetchWithCache?: any;
|
|
498
|
-
filters?: Record<string, (args_0: any, ...
|
|
498
|
+
filters?: Record<string, (args_0: any, ...args: any[]) => string> | undefined;
|
|
499
499
|
getCache?: any;
|
|
500
500
|
logger?: any;
|
|
501
501
|
originalProvider?: any;
|
|
@@ -937,7 +937,7 @@ export declare const ProvidersSchema: z.ZodUnion<[z.ZodString, z.ZodIntersection
|
|
|
937
937
|
function?: ((args_0: {
|
|
938
938
|
vars: Record<string, any>;
|
|
939
939
|
provider?: ApiProvider | undefined;
|
|
940
|
-
}, ...
|
|
940
|
+
}, ...args: unknown[]) => Promise<any>) | undefined;
|
|
941
941
|
id?: string | undefined;
|
|
942
942
|
display?: string | undefined;
|
|
943
943
|
config?: any;
|
|
@@ -947,7 +947,7 @@ export declare const ProvidersSchema: z.ZodUnion<[z.ZodString, z.ZodIntersection
|
|
|
947
947
|
function?: ((args_0: {
|
|
948
948
|
vars: Record<string, any>;
|
|
949
949
|
provider?: ApiProvider | undefined;
|
|
950
|
-
}, ...
|
|
950
|
+
}, ...args: unknown[]) => Promise<any>) | undefined;
|
|
951
951
|
id?: string | undefined;
|
|
952
952
|
display?: string | undefined;
|
|
953
953
|
config?: any;
|
|
@@ -961,13 +961,13 @@ export declare const ProvidersSchema: z.ZodUnion<[z.ZodString, z.ZodIntersection
|
|
|
961
961
|
function?: ((args_0: {
|
|
962
962
|
vars: Record<string, any>;
|
|
963
963
|
provider?: ApiProvider | undefined;
|
|
964
|
-
}, ...
|
|
964
|
+
}, ...args: unknown[]) => Promise<any>) | undefined;
|
|
965
965
|
id?: string | undefined;
|
|
966
966
|
display?: string | undefined;
|
|
967
967
|
config?: any;
|
|
968
968
|
};
|
|
969
969
|
fetchWithCache?: any;
|
|
970
|
-
filters?: Record<string, (args_0: any, ...
|
|
970
|
+
filters?: Record<string, (args_0: any, ...args: any[]) => string> | undefined;
|
|
971
971
|
getCache?: any;
|
|
972
972
|
logger?: any;
|
|
973
973
|
originalProvider?: any;
|
|
@@ -979,13 +979,13 @@ export declare const ProvidersSchema: z.ZodUnion<[z.ZodString, z.ZodIntersection
|
|
|
979
979
|
function?: ((args_0: {
|
|
980
980
|
vars: Record<string, any>;
|
|
981
981
|
provider?: ApiProvider | undefined;
|
|
982
|
-
}, ...
|
|
982
|
+
}, ...args: unknown[]) => Promise<any>) | undefined;
|
|
983
983
|
id?: string | undefined;
|
|
984
984
|
display?: string | undefined;
|
|
985
985
|
config?: any;
|
|
986
986
|
};
|
|
987
987
|
fetchWithCache?: any;
|
|
988
|
-
filters?: Record<string, (args_0: any, ...
|
|
988
|
+
filters?: Record<string, (args_0: any, ...args: any[]) => string> | undefined;
|
|
989
989
|
getCache?: any;
|
|
990
990
|
logger?: any;
|
|
991
991
|
originalProvider?: any;
|
|
@@ -1215,15 +1215,15 @@ export declare const ProviderSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
1215
1215
|
label?: string | undefined;
|
|
1216
1216
|
transform?: string | undefined;
|
|
1217
1217
|
delay?: number | undefined;
|
|
1218
|
-
callEmbeddingApi?: ((args_0: string, ...
|
|
1219
|
-
callClassificationApi?: ((args_0: string, ...
|
|
1218
|
+
callEmbeddingApi?: ((args_0: string, ...args: unknown[]) => Promise<ProviderEmbeddingResponse>) | undefined;
|
|
1219
|
+
callClassificationApi?: ((args_0: string, ...args: unknown[]) => Promise<ProviderClassificationResponse>) | undefined;
|
|
1220
1220
|
}, {
|
|
1221
1221
|
callApi: CallApiFunction;
|
|
1222
1222
|
id: (...args: unknown[]) => string;
|
|
1223
1223
|
label?: string | undefined;
|
|
1224
1224
|
transform?: string | undefined;
|
|
1225
1225
|
delay?: number | undefined;
|
|
1226
|
-
callEmbeddingApi?: ((args_0: string, ...
|
|
1227
|
-
callClassificationApi?: ((args_0: string, ...
|
|
1226
|
+
callEmbeddingApi?: ((args_0: string, ...args: unknown[]) => Promise<ProviderEmbeddingResponse>) | undefined;
|
|
1227
|
+
callClassificationApi?: ((args_0: string, ...args: unknown[]) => Promise<ProviderClassificationResponse>) | undefined;
|
|
1228
1228
|
}>]>;
|
|
1229
1229
|
//# sourceMappingURL=providers.d.ts.map
|
|
@@ -344,16 +344,16 @@ export declare const RedteamConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
344
344
|
label?: string | undefined;
|
|
345
345
|
transform?: string | undefined;
|
|
346
346
|
delay?: number | undefined;
|
|
347
|
-
callEmbeddingApi?: ((args_0: string, ...
|
|
348
|
-
callClassificationApi?: ((args_0: string, ...
|
|
347
|
+
callEmbeddingApi?: ((args_0: string, ...args: unknown[]) => Promise<import("..").ProviderEmbeddingResponse>) | undefined;
|
|
348
|
+
callClassificationApi?: ((args_0: string, ...args: unknown[]) => Promise<import("..").ProviderClassificationResponse>) | undefined;
|
|
349
349
|
}, {
|
|
350
350
|
callApi: import("..").CallApiFunction;
|
|
351
351
|
id: (...args: unknown[]) => string;
|
|
352
352
|
label?: string | undefined;
|
|
353
353
|
transform?: string | undefined;
|
|
354
354
|
delay?: number | undefined;
|
|
355
|
-
callEmbeddingApi?: ((args_0: string, ...
|
|
356
|
-
callClassificationApi?: ((args_0: string, ...
|
|
355
|
+
callEmbeddingApi?: ((args_0: string, ...args: unknown[]) => Promise<import("..").ProviderEmbeddingResponse>) | undefined;
|
|
356
|
+
callClassificationApi?: ((args_0: string, ...args: unknown[]) => Promise<import("..").ProviderClassificationResponse>) | undefined;
|
|
357
357
|
}>]>>>;
|
|
358
358
|
numTests: z.ZodOptional<z.ZodNumber>;
|
|
359
359
|
language: z.ZodOptional<z.ZodString>;
|
|
@@ -441,8 +441,8 @@ export declare const RedteamConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
441
441
|
label?: string | undefined;
|
|
442
442
|
transform?: string | undefined;
|
|
443
443
|
delay?: number | undefined;
|
|
444
|
-
callEmbeddingApi?: ((args_0: string, ...
|
|
445
|
-
callClassificationApi?: ((args_0: string, ...
|
|
444
|
+
callEmbeddingApi?: ((args_0: string, ...args: unknown[]) => Promise<import("..").ProviderEmbeddingResponse>) | undefined;
|
|
445
|
+
callClassificationApi?: ((args_0: string, ...args: unknown[]) => Promise<import("..").ProviderClassificationResponse>) | undefined;
|
|
446
446
|
} | undefined;
|
|
447
447
|
delay?: number | undefined;
|
|
448
448
|
maxConcurrency?: number | undefined;
|
|
@@ -500,8 +500,8 @@ export declare const RedteamConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
500
500
|
label?: string | undefined;
|
|
501
501
|
transform?: string | undefined;
|
|
502
502
|
delay?: number | undefined;
|
|
503
|
-
callEmbeddingApi?: ((args_0: string, ...
|
|
504
|
-
callClassificationApi?: ((args_0: string, ...
|
|
503
|
+
callEmbeddingApi?: ((args_0: string, ...args: unknown[]) => Promise<import("..").ProviderEmbeddingResponse>) | undefined;
|
|
504
|
+
callClassificationApi?: ((args_0: string, ...args: unknown[]) => Promise<import("..").ProviderClassificationResponse>) | undefined;
|
|
505
505
|
} | undefined;
|
|
506
506
|
delay?: number | undefined;
|
|
507
507
|
maxConcurrency?: number | undefined;
|
|
@@ -568,8 +568,8 @@ export declare const RedteamConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
568
568
|
label?: string | undefined;
|
|
569
569
|
transform?: string | undefined;
|
|
570
570
|
delay?: number | undefined;
|
|
571
|
-
callEmbeddingApi?: ((args_0: string, ...
|
|
572
|
-
callClassificationApi?: ((args_0: string, ...
|
|
571
|
+
callEmbeddingApi?: ((args_0: string, ...args: unknown[]) => Promise<import("..").ProviderEmbeddingResponse>) | undefined;
|
|
572
|
+
callClassificationApi?: ((args_0: string, ...args: unknown[]) => Promise<import("..").ProviderClassificationResponse>) | undefined;
|
|
573
573
|
} | undefined;
|
|
574
574
|
delay?: number | undefined;
|
|
575
575
|
maxConcurrency?: number | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><html><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width"/><title>404: This page could not be found</title><meta name="next-head-count" content="3"/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js"></script><script src="/_next/static/chunks/webpack-452ae8c28379ed4c.js" defer=""></script><script src="/_next/static/chunks/framework-c3d480eb9ad30ba5.js" defer=""></script><script src="/_next/static/chunks/main-6b1ff2291a752212.js" defer=""></script><script src="/_next/static/chunks/pages/_app-998b254a061422d4.js" defer=""></script><script src="/_next/static/chunks/pages/_error-94f0db477e27e000.js" defer=""></script><script src="/_next/static/
|
|
1
|
+
<!DOCTYPE html><html><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width"/><title>404: This page could not be found</title><meta name="next-head-count" content="3"/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js"></script><script src="/_next/static/chunks/webpack-452ae8c28379ed4c.js" defer=""></script><script src="/_next/static/chunks/framework-c3d480eb9ad30ba5.js" defer=""></script><script src="/_next/static/chunks/main-6b1ff2291a752212.js" defer=""></script><script src="/_next/static/chunks/pages/_app-998b254a061422d4.js" defer=""></script><script src="/_next/static/chunks/pages/_error-94f0db477e27e000.js" defer=""></script><script src="/_next/static/gtTJhFvE95U20UjbnSnMr/_buildManifest.js" defer=""></script><script src="/_next/static/gtTJhFvE95U20UjbnSnMr/_ssgManifest.js" defer=""></script></head><body><div id="__next"><div style="font-family:system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div style="line-height:48px"><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding-right:23px;font-size:24px;font-weight:500;vertical-align:top">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:28px">This page could not be found<!-- -->.</h2></div></div></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"statusCode":404}},"page":"/_error","query":{},"buildId":"gtTJhFvE95U20UjbnSnMr","nextExport":true,"isFallback":false,"gip":true,"scriptLoader":[]}</script></body></html>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><html><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width"/><title>404: This page could not be found</title><meta name="next-head-count" content="3"/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js"></script><script src="/_next/static/chunks/webpack-452ae8c28379ed4c.js" defer=""></script><script src="/_next/static/chunks/framework-c3d480eb9ad30ba5.js" defer=""></script><script src="/_next/static/chunks/main-6b1ff2291a752212.js" defer=""></script><script src="/_next/static/chunks/pages/_app-998b254a061422d4.js" defer=""></script><script src="/_next/static/chunks/pages/_error-94f0db477e27e000.js" defer=""></script><script src="/_next/static/
|
|
1
|
+
<!DOCTYPE html><html><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width"/><title>404: This page could not be found</title><meta name="next-head-count" content="3"/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js"></script><script src="/_next/static/chunks/webpack-452ae8c28379ed4c.js" defer=""></script><script src="/_next/static/chunks/framework-c3d480eb9ad30ba5.js" defer=""></script><script src="/_next/static/chunks/main-6b1ff2291a752212.js" defer=""></script><script src="/_next/static/chunks/pages/_app-998b254a061422d4.js" defer=""></script><script src="/_next/static/chunks/pages/_error-94f0db477e27e000.js" defer=""></script><script src="/_next/static/gtTJhFvE95U20UjbnSnMr/_buildManifest.js" defer=""></script><script src="/_next/static/gtTJhFvE95U20UjbnSnMr/_ssgManifest.js" defer=""></script></head><body><div id="__next"><div style="font-family:system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div style="line-height:48px"><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding-right:23px;font-size:24px;font-weight:500;vertical-align:top">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:28px">This page could not be found<!-- -->.</h2></div></div></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"statusCode":404}},"page":"/_error","query":{},"buildId":"gtTJhFvE95U20UjbnSnMr","nextExport":true,"isFallback":false,"gip":true,"scriptLoader":[]}</script></body></html>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[185],{84173:function(e,t,r){Promise.resolve().then(r.bind(r,72403)),Promise.resolve().then(r.t.bind(r,5100,23)),Promise.resolve().then(r.t.bind(r,65246,23))},72403:function(e,t,r){"use strict";r.r(t),r.d(t,{PageShell:function(){return ee}});var n=r(24004),o=r(14978),a=r(52428),s=r(26647),i=r(14819),l=r(52653),c=r(78276),u=r(13457),h=r(38640),d=r.n(h),p=r(28891),f=r(82911),x=r(88270),g=r(89394),m=r(91797),j=r(26337),b=r(43226),v=r(21975),Z=r(42834),S=r(49050);function C(e){let{open:t,onClose:r}=e,{apiBaseUrl:a,setApiBaseUrl:s}=(0,f.Z)(),{apiShareBaseUrl:i,setApiShareBaseUrl:l,appShareBaseUrl:c,setAppShareBaseUrl:u}=(0,x.Z)(),[h,d]=(0,o.useState)(a||""),[p,C]=(0,o.useState)(i||""),[k,E]=(0,o.useState)(c||"");return(0,o.useEffect)(()=>{d(a||""),C(i||""),E(c||"")},[a,i,c]),(0,n.jsxs)(g.Z,{open:t,onClose:r,maxWidth:"xs",fullWidth:!0,"aria-labelledby":"api-settings-dialog-title",children:[(0,n.jsx)(m.Z,{id:"api-settings-dialog-title",children:"API and Sharing Settings"}),(0,n.jsxs)(j.Z,{children:[(0,n.jsx)(b.Z,{variant:"h6",children:"API"}),(0,n.jsx)(v.Z,{label:"API Base URL",helperText:"The promptfoo API the webview will connect to",value:h,onChange:e=>{d(e.target.value)},fullWidth:!0,margin:"normal"}),(0,n.jsx)(b.Z,{variant:"h6",children:"Sharing"}),(0,n.jsx)(v.Z,{label:"API Share Base URL",helperText:'Where to send the eval when you click "Share"',value:p,onChange:e=>{C(e.target.value)},fullWidth:!0,margin:"normal"}),(0,n.jsx)(v.Z,{label:"App Share Base URL",helperText:"Set this to the App URL for the promptfoo instance you send shared evals to",value:k,onChange:e=>{E(e.target.value)},fullWidth:!0,margin:"normal"})]}),(0,n.jsxs)(Z.Z,{children:[(0,n.jsx)(S.Z,{onClick:()=>{s(h),l(p),u(k),r()},children:"Save"}),(0,n.jsx)(S.Z,{onClick:r,children:"Close"})]})]})}var k=r(39864),E=r(47028);function P(e){let{darkMode:t,onToggleDarkMode:r}=e;return(0,n.jsx)("div",{className:"dark-mode-toggle",onClick:r,children:t?(0,n.jsx)(k.Z,{}):(0,n.jsx)(E.Z,{})})}r(32854);var w=r(58715),y=r(61443),O=r(14089),I=r(68452),U=r(91018),_=r(25210);let B=[{icon:(0,n.jsx)(U.Z,{fontSize:"small"}),text:"Documentation",href:"https://www.promptfoo.dev/docs/intro"},{icon:(0,n.jsx)(I.Z,{fontSize:"small"}),text:"GitHub Repository",href:"https://github.com/promptfoo/promptfoo"},{icon:(0,n.jsx)(w.Z,{fontSize:"small"}),text:"File an Issue",href:"https://github.com/promptfoo/promptfoo/issues"},{icon:(0,n.jsx)(O.Z,{fontSize:"small"}),text:"Join Our Discord Community",href:"https://discord.gg/gHPS9jjfbs"},{icon:(0,n.jsx)(y.Z,{fontSize:"small"}),text:"Book a Meeting",href:"https://cal.com/team/promptfoo/intro"}];function F(e){let{open:t,onClose:r}=e;return(0,n.jsxs)(g.Z,{open:t,onClose:r,maxWidth:"xs",fullWidth:!0,"aria-labelledby":"about-promptfoo-dialog-title",children:[(0,n.jsx)(m.Z,{id:"about-promptfoo-dialog-title",children:(0,n.jsxs)(u.Z,{children:[(0,n.jsx)(b.Z,{variant:"h6",children:"About Promptfoo"}),(0,n.jsx)(_.Z,{href:"https://github.com/promptfoo/promptfoo/releases",underline:"none",sx:{color:"inherit"},target:"_blank",children:(0,n.jsxs)(b.Z,{variant:"subtitle2",children:["Version ","0.87.
|
|
1
|
+
(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[185],{84173:function(e,t,r){Promise.resolve().then(r.bind(r,72403)),Promise.resolve().then(r.t.bind(r,5100,23)),Promise.resolve().then(r.t.bind(r,65246,23))},72403:function(e,t,r){"use strict";r.r(t),r.d(t,{PageShell:function(){return ee}});var n=r(24004),o=r(14978),a=r(52428),s=r(26647),i=r(14819),l=r(52653),c=r(78276),u=r(13457),h=r(38640),d=r.n(h),p=r(28891),f=r(82911),x=r(88270),g=r(89394),m=r(91797),j=r(26337),b=r(43226),v=r(21975),Z=r(42834),S=r(49050);function C(e){let{open:t,onClose:r}=e,{apiBaseUrl:a,setApiBaseUrl:s}=(0,f.Z)(),{apiShareBaseUrl:i,setApiShareBaseUrl:l,appShareBaseUrl:c,setAppShareBaseUrl:u}=(0,x.Z)(),[h,d]=(0,o.useState)(a||""),[p,C]=(0,o.useState)(i||""),[k,E]=(0,o.useState)(c||"");return(0,o.useEffect)(()=>{d(a||""),C(i||""),E(c||"")},[a,i,c]),(0,n.jsxs)(g.Z,{open:t,onClose:r,maxWidth:"xs",fullWidth:!0,"aria-labelledby":"api-settings-dialog-title",children:[(0,n.jsx)(m.Z,{id:"api-settings-dialog-title",children:"API and Sharing Settings"}),(0,n.jsxs)(j.Z,{children:[(0,n.jsx)(b.Z,{variant:"h6",children:"API"}),(0,n.jsx)(v.Z,{label:"API Base URL",helperText:"The promptfoo API the webview will connect to",value:h,onChange:e=>{d(e.target.value)},fullWidth:!0,margin:"normal"}),(0,n.jsx)(b.Z,{variant:"h6",children:"Sharing"}),(0,n.jsx)(v.Z,{label:"API Share Base URL",helperText:'Where to send the eval when you click "Share"',value:p,onChange:e=>{C(e.target.value)},fullWidth:!0,margin:"normal"}),(0,n.jsx)(v.Z,{label:"App Share Base URL",helperText:"Set this to the App URL for the promptfoo instance you send shared evals to",value:k,onChange:e=>{E(e.target.value)},fullWidth:!0,margin:"normal"})]}),(0,n.jsxs)(Z.Z,{children:[(0,n.jsx)(S.Z,{onClick:()=>{s(h),l(p),u(k),r()},children:"Save"}),(0,n.jsx)(S.Z,{onClick:r,children:"Close"})]})]})}var k=r(39864),E=r(47028);function P(e){let{darkMode:t,onToggleDarkMode:r}=e;return(0,n.jsx)("div",{className:"dark-mode-toggle",onClick:r,children:t?(0,n.jsx)(k.Z,{}):(0,n.jsx)(E.Z,{})})}r(32854);var w=r(58715),y=r(61443),O=r(14089),I=r(68452),U=r(91018),_=r(25210);let B=[{icon:(0,n.jsx)(U.Z,{fontSize:"small"}),text:"Documentation",href:"https://www.promptfoo.dev/docs/intro"},{icon:(0,n.jsx)(I.Z,{fontSize:"small"}),text:"GitHub Repository",href:"https://github.com/promptfoo/promptfoo"},{icon:(0,n.jsx)(w.Z,{fontSize:"small"}),text:"File an Issue",href:"https://github.com/promptfoo/promptfoo/issues"},{icon:(0,n.jsx)(O.Z,{fontSize:"small"}),text:"Join Our Discord Community",href:"https://discord.gg/gHPS9jjfbs"},{icon:(0,n.jsx)(y.Z,{fontSize:"small"}),text:"Book a Meeting",href:"https://cal.com/team/promptfoo/intro"}];function F(e){let{open:t,onClose:r}=e;return(0,n.jsxs)(g.Z,{open:t,onClose:r,maxWidth:"xs",fullWidth:!0,"aria-labelledby":"about-promptfoo-dialog-title",children:[(0,n.jsx)(m.Z,{id:"about-promptfoo-dialog-title",children:(0,n.jsxs)(u.Z,{children:[(0,n.jsx)(b.Z,{variant:"h6",children:"About Promptfoo"}),(0,n.jsx)(_.Z,{href:"https://github.com/promptfoo/promptfoo/releases",underline:"none",sx:{color:"inherit"},target:"_blank",children:(0,n.jsxs)(b.Z,{variant:"subtitle2",children:["Version ","0.87.1"]})})]})}),(0,n.jsxs)(j.Z,{children:[(0,n.jsx)(b.Z,{variant:"body2",gutterBottom:!0,children:"Promptfoo is a MIT licensed open-source tool for evaluating LLMs. We make it easy to track the performance of your models and prompts over time with automated support for dataset generation and grading."}),(0,n.jsx)(u.Z,{spacing:2,mt:2,children:B.map((e,t)=>(0,n.jsxs)(u.Z,{direction:"row",spacing:1,alignItems:"center",sx:{flexWrap:"wrap","& .MuiSvgIcon-root":{color:"text.primary"}},children:[e.icon,(0,n.jsx)(_.Z,{underline:"none",target:"_blank",href:e.href,sx:{color:"inherit"},children:(0,n.jsx)(b.Z,{variant:"body2",children:e.text})})]},t))})]}),(0,n.jsx)(Z.Z,{children:(0,n.jsx)(S.Z,{onClick:r,children:"Close"})})]})}var T=r(1445),A=r(3283),M=r(33932),N=r(74309);function W(){let{user:e,logout:t}=(0,T.aC)(),[r,a]=o.useState(null),s=()=>{a(null)},i=async()=>{null==t||t(),s()};return e?(0,n.jsxs)("div",{children:[(0,n.jsx)(l.Z,{edge:"end","aria-label":"account of current user","aria-controls":"menu-appbar","aria-haspopup":"true",onClick:e=>{a(e.currentTarget)},color:"inherit",children:(0,n.jsx)(A.Z,{sx:{width:"1em",height:"1em",bgcolor:"#1976d2"}})}),(0,n.jsxs)(M.Z,{id:"menu-appbar",anchorEl:r,anchorOrigin:{vertical:"top",horizontal:"right"},keepMounted:!0,transformOrigin:{vertical:"top",horizontal:"right"},open:!!r,onClose:s,children:[(0,n.jsxs)(N.Z,{disabled:!0,children:["Logged in as ",e.email]}),(0,n.jsx)(N.Z,{onClick:i,children:"Logout"})]})]}):(0,n.jsx)(d(),{href:"/auth/signup/",children:(0,n.jsx)(l.Z,{edge:"end","aria-label":"User not logged in","aria-controls":"menu-appbar","aria-haspopup":"true",color:"inherit",children:(0,n.jsx)(A.Z,{sx:{width:"1em",height:"1em"}})})})}var R=r(79245),L=r(47051),D=r.n(L);function z(){return(0,n.jsx)(d(),{href:"https://promptfoo.dev",passHref:!0,children:(0,n.jsxs)(R.Z,{className:"logo",component:"a",children:[(0,n.jsx)(D(),{width:25,height:25,src:"/logo-panda.svg",alt:"Promptfoo logo"})," ",(0,n.jsx)("span",{children:"promptfoo"})]})})}r(17328),r(5008);var H=r(77580);function G(e){let{href:t,label:r}=e,o=(0,p.usePathname)()||"";return(0,n.jsx)(d(),{href:t,className:o.startsWith(t)?"active":"",children:r})}function J(e){let{darkMode:t,onToggleDarkMode:r}=e,[h,d]=(0,o.useState)(!1),[p,f]=(0,o.useState)(!1),x=()=>d(e=>!e),g=()=>f(e=>!e),m=(0,n.jsxs)(n.Fragment,{children:[(0,n.jsx)(z,{}),!H.env.NEXT_PUBLIC_NO_BROWSING&&(0,n.jsxs)(n.Fragment,{children:[(0,n.jsx)(G,{href:"/setup",label:"New Eval"}),(0,n.jsx)(G,{href:"/eval",label:"Evals"}),(0,n.jsx)(G,{href:"/prompts",label:"Prompts"}),(0,n.jsx)(G,{href:"/datasets",label:"Datasets"}),(0,n.jsx)(G,{href:"/progress",label:"Progress"})]}),(0,n.jsxs)("div",{className:"right-aligned",children:[a.O?(0,n.jsx)(W,{}):null,(0,n.jsx)(l.Z,{onClick:x,sx:{color:"#f0f0f0"},children:(0,n.jsx)(i.Z,{})}),a.T&&(0,n.jsx)(c.Z,{title:"API and Sharing Settings",children:(0,n.jsx)(l.Z,{onClick:g,sx:{color:"#f0f0f0"},children:(0,n.jsx)(s.Z,{})})}),(0,n.jsx)(P,{darkMode:t,onToggleDarkMode:r})]})]});return(0,n.jsxs)(n.Fragment,{children:[(0,n.jsx)(F,{open:h,onClose:x}),(0,n.jsx)(C,{open:p,onClose:g}),(0,n.jsx)(u.Z,{direction:"row",spacing:2,className:"nav",children:m})]})}var X=r(30606),V=r(33948),Y=r(42714);r(70894);let Q=e=>(0,X.Z)({typography:{fontFamily:"inherit"},palette:{mode:e?"dark":"light",background:{default:"#ffffff"}},components:{MuiCard:{styleOverrides:{root:{backgroundColor:e?"#121212":"#fff",boxShadow:e?"none":"0 2px 3px rgba(0, 0, 0, 0.1)",borderRadius:"12px"}}},MuiTableContainer:{styleOverrides:{root:{backgroundColor:e?"#121212":"#fff",boxShadow:e?"none":"0 2px 3px rgba(0, 0, 0, 0.1)",borderRadius:"12px"}}},MuiTableHead:{styleOverrides:{root:{backgroundColor:e?"#1E1E1E":"#F5F5F5"}}},MuiTableCell:{styleOverrides:{head:{backgroundColor:"inherit",color:e?"#FFFFFF":"#000000",fontWeight:"bold"},stickyHeader:{backgroundColor:e?"#1E1E1E":"#F5F5F5"}}},MuiInputBase:{styleOverrides:{root:{backgroundColor:e?"#333":"#fff"}}}}}),q=Q(!1),K=Q(!0);function $(e){let{children:t}=e;return(0,n.jsx)("div",{children:t})}function ee(e){let{children:t}=e,r=(0,Y.Z)("(prefers-color-scheme: dark)"),[a,s]=(0,o.useState)(null);(0,o.useEffect)(()=>{let e=localStorage.getItem("darkMode");s(null===e?r:"true"===e)},[r]);let i=(0,o.useCallback)(()=>{s(e=>{let t=!e;return localStorage.setItem("darkMode",String(t)),t})},[]);return((0,o.useEffect)(()=>{null!==a&&(a?document.documentElement.setAttribute("data-theme","dark"):document.documentElement.removeAttribute("data-theme"))},[a]),null===a)?null:(0,n.jsx)(V.Z,{theme:a?K:q,children:(0,n.jsx)(T.Ho,{children:(0,n.jsxs)($,{children:[(0,n.jsx)(J,{darkMode:a,onToggleDarkMode:i}),(0,n.jsx)("div",{children:t})]})})})}},52428:function(e,t,r){"use strict";r.d(t,{O:function(){return a},T:function(){return o}});var n=r(77580);let o=!n.env.NEXT_PUBLIC_HOSTED,a=!!n.env.NEXT_PUBLIC_PROMPTFOO_USE_SUPABASE},82911:function(e,t,r){"use strict";var n=r(94660),o=r(74810);let a=(0,n.Ue)()((0,o.tJ)(e=>({apiBaseUrl:"",setApiBaseUrl:t=>e({apiBaseUrl:t}),fetchingPromise:null,setFetchingPromise:t=>e({fetchingPromise:t})}),{name:"api-config-storage",partialize:e=>({apiBaseUrl:e.apiBaseUrl})}));t.Z=a},88270:function(e,t,r){"use strict";r.d(t,{Y:function(){return s}});var n=r(94660),o=r(74810);let a=(0,n.Ue)()((0,o.tJ)(e=>({apiShareBaseUrl:"https://api.promptfoo.dev",setApiShareBaseUrl:t=>e({apiShareBaseUrl:t}),appShareBaseUrl:"https://app.promptfoo.dev",setAppShareBaseUrl:t=>e({appShareBaseUrl:t})}),{name:"share-config-storage"}));function s(){let{appShareBaseUrl:e}=a();return e||"".concat(window.location.protocol,"//").concat(window.location.host)}t.Z=a},1445:function(e,t,r){"use strict";r.d(t,{Ho:function(){return h},OQ:function(){return s},aC:function(){return l}});var n=r(24004),o=r(14978),a=r(12594);let s=(0,a.createClientComponentClient)(),i=(0,o.createContext)({}),l=()=>(0,o.useContext)(i),c=(e,t)=>s.auth.signInWithPassword({email:e,password:t}),u=()=>s.auth.signOut(),h=e=>{let{children:t}=e,[r,a]=(0,o.useState)(null),[l,h]=(0,o.useState)(!1),d=(0,o.useCallback)(async()=>{let{data:e}=await s.auth.refreshSession();e&&a(e.user)},[]);return(0,o.useEffect)(()=>{d();let{data:e}=s.auth.onAuthStateChange(async(e,t)=>{"PASSWORD_RECOVERY"==e?h(!1):"SIGNED_IN"===e&&t?(a(t.user),h(!0)):"SIGNED_OUT"===e&&(h(!1),a(null))});return()=>{e.subscription.unsubscribe()}},[d]),(0,n.jsx)(i.Provider,{value:{loggedIn:l,user:r,login:c,logout:u},children:t})}},32854:function(){},17328:function(){},5008:function(){},70894:function(){},5100:function(){}},function(e){e.O(0,[906,640,461,88,113,975,132,189,470,730,744],function(){return e(e.s=84173)}),_N_E=e.O()}]);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><link rel="preload" as="font" href="/_next/static/media/a34f9d1faa5f3315-s.p.woff2" crossorigin="" type="font/woff2"/><link rel="stylesheet" href="/_next/static/css/de0307797e31a3e6.css" data-precedence="next"/><link rel="preload" href="/_next/static/chunks/webpack-452ae8c28379ed4c.js" as="script"/><link rel="preload" href="/_next/static/chunks/b6261da7-e9d81a4364ddd0c0.js" as="script"/><link rel="preload" href="/_next/static/chunks/730-3eb7255cd813a727.js" as="script"/><link rel="preload" href="/_next/static/chunks/main-app-0dc90092cd7acaaf.js" as="script"/><title>promptfoo</title><meta name="description" content="LLM testing and evaluation"/><meta name="viewport" content="width=device-width, initial-scale=1"/><meta property="og:image" content="https://www.promptfoo.dev/img/thumbnail.png"/><meta name="twitter:card" content="summary"/><meta name="twitter:image" content="https://www.promptfoo.dev/img/thumbnail.png"/><meta name="next-size-adjust"/><script src="/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js" noModule=""></script></head><body class="__className_85e967"><script src="/_next/static/chunks/webpack-452ae8c28379ed4c.js" async=""></script><script src="/_next/static/chunks/b6261da7-e9d81a4364ddd0c0.js" async=""></script><script src="/_next/static/chunks/730-3eb7255cd813a727.js" async=""></script><script src="/_next/static/chunks/main-app-0dc90092cd7acaaf.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/media/a34f9d1faa5f3315-s.p.woff2\",{\"as\":\"font\",\"type\":\"font/woff2\"}]\n2:HL[\"/_next/static/css/de0307797e31a3e6.css\",{\"as\":\"style\"}]\n0:\"$L3\"\n"])</script><script>self.__next_f.push([1,"4:I{\"id\":83507,\"chunks\":[\"272:static/chunks/webpack-452ae8c28379ed4c.js\",\"470:static/chunks/b6261da7-e9d81a4364ddd0c0.js\",\"730:static/chunks/730-3eb7255cd813a727.js\"],\"name\":\"default\",\"async\":false}\n6:I{\"id\":6020,\"chunks\":[\"272:static/chunks/webpack-452ae8c28379ed4c.js\",\"470:static/chunks/b6261da7-e9d81a4364ddd0c0.js\",\"730:static/chunks/730-3eb7255cd813a727.js\"],\"name\":\"\",\"async\":false}\n7:I{\"id\":72403,\"chunks\":[\"906:static/chunks/906-70c43cd62b2efac1.js\",\"640:static/chunks/640-0f757e2fe135173d.js\",\"461:stat"])</script><script>self.__next_f.push([1,"ic/chunks/461-77257ab6b1bb209d.js\",\"88:static/chunks/88-f3a7a858d5f4e9a0.js\",\"113:static/chunks/113-c691bf7d3a37d865.js\",\"975:static/chunks/975-db84f98b8dd028ab.js\",\"132:static/chunks/132-d6bea93785831786.js\",\"189:static/chunks/189-f9d565af9a2b91cb.js\",\"185:static/chunks/app/layout-
|
|
1
|
+
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><link rel="preload" as="font" href="/_next/static/media/a34f9d1faa5f3315-s.p.woff2" crossorigin="" type="font/woff2"/><link rel="stylesheet" href="/_next/static/css/de0307797e31a3e6.css" data-precedence="next"/><link rel="preload" href="/_next/static/chunks/webpack-452ae8c28379ed4c.js" as="script"/><link rel="preload" href="/_next/static/chunks/b6261da7-e9d81a4364ddd0c0.js" as="script"/><link rel="preload" href="/_next/static/chunks/730-3eb7255cd813a727.js" as="script"/><link rel="preload" href="/_next/static/chunks/main-app-0dc90092cd7acaaf.js" as="script"/><title>promptfoo</title><meta name="description" content="LLM testing and evaluation"/><meta name="viewport" content="width=device-width, initial-scale=1"/><meta property="og:image" content="https://www.promptfoo.dev/img/thumbnail.png"/><meta name="twitter:card" content="summary"/><meta name="twitter:image" content="https://www.promptfoo.dev/img/thumbnail.png"/><meta name="next-size-adjust"/><script src="/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js" noModule=""></script></head><body class="__className_85e967"><script src="/_next/static/chunks/webpack-452ae8c28379ed4c.js" async=""></script><script src="/_next/static/chunks/b6261da7-e9d81a4364ddd0c0.js" async=""></script><script src="/_next/static/chunks/730-3eb7255cd813a727.js" async=""></script><script src="/_next/static/chunks/main-app-0dc90092cd7acaaf.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/media/a34f9d1faa5f3315-s.p.woff2\",{\"as\":\"font\",\"type\":\"font/woff2\"}]\n2:HL[\"/_next/static/css/de0307797e31a3e6.css\",{\"as\":\"style\"}]\n0:\"$L3\"\n"])</script><script>self.__next_f.push([1,"4:I{\"id\":83507,\"chunks\":[\"272:static/chunks/webpack-452ae8c28379ed4c.js\",\"470:static/chunks/b6261da7-e9d81a4364ddd0c0.js\",\"730:static/chunks/730-3eb7255cd813a727.js\"],\"name\":\"default\",\"async\":false}\n6:I{\"id\":6020,\"chunks\":[\"272:static/chunks/webpack-452ae8c28379ed4c.js\",\"470:static/chunks/b6261da7-e9d81a4364ddd0c0.js\",\"730:static/chunks/730-3eb7255cd813a727.js\"],\"name\":\"\",\"async\":false}\n7:I{\"id\":72403,\"chunks\":[\"906:static/chunks/906-70c43cd62b2efac1.js\",\"640:static/chunks/640-0f757e2fe135173d.js\",\"461:stat"])</script><script>self.__next_f.push([1,"ic/chunks/461-77257ab6b1bb209d.js\",\"88:static/chunks/88-f3a7a858d5f4e9a0.js\",\"113:static/chunks/113-c691bf7d3a37d865.js\",\"975:static/chunks/975-db84f98b8dd028ab.js\",\"132:static/chunks/132-d6bea93785831786.js\",\"189:static/chunks/189-f9d565af9a2b91cb.js\",\"185:static/chunks/app/layout-e465aaafbfe88e82.js\"],\"name\":\"PageShell\",\"async\":false}\n8:I{\"id\":27883,\"chunks\":[\"272:static/chunks/webpack-452ae8c28379ed4c.js\",\"470:static/chunks/b6261da7-e9d81a4364ddd0c0.js\",\"730:static/chunks/730-3eb7255cd813a727.js\"],\"name\""])</script><script>self.__next_f.push([1,":\"default\",\"async\":false}\n9:I{\"id\":46785,\"chunks\":[\"272:static/chunks/webpack-452ae8c28379ed4c.js\",\"470:static/chunks/b6261da7-e9d81a4364ddd0c0.js\",\"730:static/chunks/730-3eb7255cd813a727.js\"],\"name\":\"default\",\"async\":false}\nb:I{\"id\":92030,\"chunks\":[\"906:static/chunks/906-70c43cd62b2efac1.js\",\"640:static/chunks/640-0f757e2fe135173d.js\",\"461:static/chunks/461-77257ab6b1bb209d.js\",\"975:static/chunks/975-db84f98b8dd028ab.js\",\"132:static/chunks/132-d6bea93785831786.js\",\"716:static/chunks/app/auth/login/page-c1d"])</script><script>self.__next_f.push([1,"bf0abc580796f.js\"],\"name\":\"\",\"async\":false}\n"])</script><script>self.__next_f.push([1,"3:[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/de0307797e31a3e6.css\",\"precedence\":\"next\"}]],[\"$\",\"$L4\",null,{\"buildId\":\"gtTJhFvE95U20UjbnSnMr\",\"assetPrefix\":\"\",\"initialCanonicalUrl\":\"/auth/login/\",\"initialTree\":[\"\",{\"children\":[\"auth\",{\"children\":[\"login\",{\"children\":[\"__PAGE__\",{}]}]}]},\"$undefined\",\"$undefined\",true],\"initialHead\":\"$L5\",\"globalErrorComponent\":\"$6\",\"children\":[null,[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"className\":\"__className_85e967\",\"children\":[\"$\",\"$L7\",null,{\"children\":[\"$\",\"$L8\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"loading\":\"$undefined\",\"loadingStyles\":\"$undefined\",\"hasLoading\":false,\"template\":[\"$\",\"$L9\",null,{}],\"templateStyles\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":\"$undefined\",\"childProp\":{\"current\":[\"$\",\"$L8\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"auth\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"loading\":\"$undefined\",\"loadingStyles\":\"$undefined\",\"hasLoading\":false,\"template\":[\"$\",\"$L9\",null,{}],\"templateStyles\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\",\"childProp\":{\"current\":[\"$\",\"$L8\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"auth\",\"children\",\"login\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"loading\":\"$undefined\",\"loadingStyles\":\"$undefined\",\"hasLoading\":false,\"template\":[\"$\",\"$L9\",null,{}],\"templateStyles\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\",\"childProp\":{\"current\":[\"$La\",[\"$\",\"$Lb\",null,{}],null],\"segment\":\"__PAGE__\"},\"styles\":[]}],\"segment\":\"login\"},\"styles\":[]}],\"segment\":\"auth\"},\"styles\":[]}]}]}]}],null]}]]\n"])</script><script>self.__next_f.push([1,"5:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"title\",\"1\",{\"children\":\"promptfoo\"}],[\"$\",\"meta\",\"2\",{\"name\":\"description\",\"content\":\"LLM testing and evaluation\"}],[\"$\",\"meta\",\"3\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"4\",{\"property\":\"og:image\",\"content\":\"https://www.promptfoo.dev/img/thumbnail.png\"}],[\"$\",\"meta\",\"5\",{\"name\":\"twitter:card\",\"content\":\"summary\"}],[\"$\",\"meta\",\"6\",{\"name\":\"twitter:image\",\"content\":\"https://www.promptfoo.dev/img/thumbnail.png\"}],[\"$\",\"meta\",\"7\",{\"name\":\"next-size-adjust\"}]]\n"])</script><script>self.__next_f.push([1,"a:null\n"])</script></body></html>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
1:HL["/_next/static/media/a34f9d1faa5f3315-s.p.woff2",{"as":"font","type":"font/woff2"}]
|
|
2
2
|
2:HL["/_next/static/css/de0307797e31a3e6.css",{"as":"style"}]
|
|
3
|
-
0:["
|
|
4
|
-
5:I{"id":72403,"chunks":["906:static/chunks/906-70c43cd62b2efac1.js","640:static/chunks/640-0f757e2fe135173d.js","461:static/chunks/461-77257ab6b1bb209d.js","88:static/chunks/88-f3a7a858d5f4e9a0.js","113:static/chunks/113-c691bf7d3a37d865.js","975:static/chunks/975-db84f98b8dd028ab.js","132:static/chunks/132-d6bea93785831786.js","189:static/chunks/189-f9d565af9a2b91cb.js","185:static/chunks/app/layout-
|
|
3
|
+
0:["gtTJhFvE95U20UjbnSnMr",[[["",{"children":["auth",{"children":["login",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],"$L3",[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/de0307797e31a3e6.css","precedence":"next"}]],"$L4"]]]]
|
|
4
|
+
5:I{"id":72403,"chunks":["906:static/chunks/906-70c43cd62b2efac1.js","640:static/chunks/640-0f757e2fe135173d.js","461:static/chunks/461-77257ab6b1bb209d.js","88:static/chunks/88-f3a7a858d5f4e9a0.js","113:static/chunks/113-c691bf7d3a37d865.js","975:static/chunks/975-db84f98b8dd028ab.js","132:static/chunks/132-d6bea93785831786.js","189:static/chunks/189-f9d565af9a2b91cb.js","185:static/chunks/app/layout-e465aaafbfe88e82.js"],"name":"PageShell","async":false}
|
|
5
5
|
6:I{"id":27883,"chunks":["272:static/chunks/webpack-452ae8c28379ed4c.js","470:static/chunks/b6261da7-e9d81a4364ddd0c0.js","730:static/chunks/730-3eb7255cd813a727.js"],"name":"default","async":false}
|
|
6
6
|
7:I{"id":46785,"chunks":["272:static/chunks/webpack-452ae8c28379ed4c.js","470:static/chunks/b6261da7-e9d81a4364ddd0c0.js","730:static/chunks/730-3eb7255cd813a727.js"],"name":"default","async":false}
|
|
7
7
|
9:I{"id":92030,"chunks":["906:static/chunks/906-70c43cd62b2efac1.js","640:static/chunks/640-0f757e2fe135173d.js","461:static/chunks/461-77257ab6b1bb209d.js","975:static/chunks/975-db84f98b8dd028ab.js","132:static/chunks/132-d6bea93785831786.js","716:static/chunks/app/auth/login/page-c1dbf0abc580796f.js"],"name":"","async":false}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><link rel="preload" as="font" href="/_next/static/media/a34f9d1faa5f3315-s.p.woff2" crossorigin="" type="font/woff2"/><link rel="stylesheet" href="/_next/static/css/de0307797e31a3e6.css" data-precedence="next"/><link rel="preload" href="/_next/static/chunks/webpack-452ae8c28379ed4c.js" as="script"/><link rel="preload" href="/_next/static/chunks/b6261da7-e9d81a4364ddd0c0.js" as="script"/><link rel="preload" href="/_next/static/chunks/730-3eb7255cd813a727.js" as="script"/><link rel="preload" href="/_next/static/chunks/main-app-0dc90092cd7acaaf.js" as="script"/><title>promptfoo</title><meta name="description" content="LLM testing and evaluation"/><meta name="viewport" content="width=device-width, initial-scale=1"/><meta property="og:image" content="https://www.promptfoo.dev/img/thumbnail.png"/><meta name="twitter:card" content="summary"/><meta name="twitter:image" content="https://www.promptfoo.dev/img/thumbnail.png"/><meta name="next-size-adjust"/><script src="/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js" noModule=""></script></head><body class="__className_85e967"><script src="/_next/static/chunks/webpack-452ae8c28379ed4c.js" async=""></script><script src="/_next/static/chunks/b6261da7-e9d81a4364ddd0c0.js" async=""></script><script src="/_next/static/chunks/730-3eb7255cd813a727.js" async=""></script><script src="/_next/static/chunks/main-app-0dc90092cd7acaaf.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/media/a34f9d1faa5f3315-s.p.woff2\",{\"as\":\"font\",\"type\":\"font/woff2\"}]\n2:HL[\"/_next/static/css/de0307797e31a3e6.css\",{\"as\":\"style\"}]\n0:\"$L3\"\n"])</script><script>self.__next_f.push([1,"4:I{\"id\":83507,\"chunks\":[\"272:static/chunks/webpack-452ae8c28379ed4c.js\",\"470:static/chunks/b6261da7-e9d81a4364ddd0c0.js\",\"730:static/chunks/730-3eb7255cd813a727.js\"],\"name\":\"default\",\"async\":false}\n6:I{\"id\":6020,\"chunks\":[\"272:static/chunks/webpack-452ae8c28379ed4c.js\",\"470:static/chunks/b6261da7-e9d81a4364ddd0c0.js\",\"730:static/chunks/730-3eb7255cd813a727.js\"],\"name\":\"\",\"async\":false}\n7:I{\"id\":72403,\"chunks\":[\"906:static/chunks/906-70c43cd62b2efac1.js\",\"640:static/chunks/640-0f757e2fe135173d.js\",\"461:stat"])</script><script>self.__next_f.push([1,"ic/chunks/461-77257ab6b1bb209d.js\",\"88:static/chunks/88-f3a7a858d5f4e9a0.js\",\"113:static/chunks/113-c691bf7d3a37d865.js\",\"975:static/chunks/975-db84f98b8dd028ab.js\",\"132:static/chunks/132-d6bea93785831786.js\",\"189:static/chunks/189-f9d565af9a2b91cb.js\",\"185:static/chunks/app/layout-
|
|
1
|
+
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><link rel="preload" as="font" href="/_next/static/media/a34f9d1faa5f3315-s.p.woff2" crossorigin="" type="font/woff2"/><link rel="stylesheet" href="/_next/static/css/de0307797e31a3e6.css" data-precedence="next"/><link rel="preload" href="/_next/static/chunks/webpack-452ae8c28379ed4c.js" as="script"/><link rel="preload" href="/_next/static/chunks/b6261da7-e9d81a4364ddd0c0.js" as="script"/><link rel="preload" href="/_next/static/chunks/730-3eb7255cd813a727.js" as="script"/><link rel="preload" href="/_next/static/chunks/main-app-0dc90092cd7acaaf.js" as="script"/><title>promptfoo</title><meta name="description" content="LLM testing and evaluation"/><meta name="viewport" content="width=device-width, initial-scale=1"/><meta property="og:image" content="https://www.promptfoo.dev/img/thumbnail.png"/><meta name="twitter:card" content="summary"/><meta name="twitter:image" content="https://www.promptfoo.dev/img/thumbnail.png"/><meta name="next-size-adjust"/><script src="/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js" noModule=""></script></head><body class="__className_85e967"><script src="/_next/static/chunks/webpack-452ae8c28379ed4c.js" async=""></script><script src="/_next/static/chunks/b6261da7-e9d81a4364ddd0c0.js" async=""></script><script src="/_next/static/chunks/730-3eb7255cd813a727.js" async=""></script><script src="/_next/static/chunks/main-app-0dc90092cd7acaaf.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/media/a34f9d1faa5f3315-s.p.woff2\",{\"as\":\"font\",\"type\":\"font/woff2\"}]\n2:HL[\"/_next/static/css/de0307797e31a3e6.css\",{\"as\":\"style\"}]\n0:\"$L3\"\n"])</script><script>self.__next_f.push([1,"4:I{\"id\":83507,\"chunks\":[\"272:static/chunks/webpack-452ae8c28379ed4c.js\",\"470:static/chunks/b6261da7-e9d81a4364ddd0c0.js\",\"730:static/chunks/730-3eb7255cd813a727.js\"],\"name\":\"default\",\"async\":false}\n6:I{\"id\":6020,\"chunks\":[\"272:static/chunks/webpack-452ae8c28379ed4c.js\",\"470:static/chunks/b6261da7-e9d81a4364ddd0c0.js\",\"730:static/chunks/730-3eb7255cd813a727.js\"],\"name\":\"\",\"async\":false}\n7:I{\"id\":72403,\"chunks\":[\"906:static/chunks/906-70c43cd62b2efac1.js\",\"640:static/chunks/640-0f757e2fe135173d.js\",\"461:stat"])</script><script>self.__next_f.push([1,"ic/chunks/461-77257ab6b1bb209d.js\",\"88:static/chunks/88-f3a7a858d5f4e9a0.js\",\"113:static/chunks/113-c691bf7d3a37d865.js\",\"975:static/chunks/975-db84f98b8dd028ab.js\",\"132:static/chunks/132-d6bea93785831786.js\",\"189:static/chunks/189-f9d565af9a2b91cb.js\",\"185:static/chunks/app/layout-e465aaafbfe88e82.js\"],\"name\":\"PageShell\",\"async\":false}\n8:I{\"id\":27883,\"chunks\":[\"272:static/chunks/webpack-452ae8c28379ed4c.js\",\"470:static/chunks/b6261da7-e9d81a4364ddd0c0.js\",\"730:static/chunks/730-3eb7255cd813a727.js\"],\"name\""])</script><script>self.__next_f.push([1,":\"default\",\"async\":false}\n9:I{\"id\":46785,\"chunks\":[\"272:static/chunks/webpack-452ae8c28379ed4c.js\",\"470:static/chunks/b6261da7-e9d81a4364ddd0c0.js\",\"730:static/chunks/730-3eb7255cd813a727.js\"],\"name\":\"default\",\"async\":false}\nb:I{\"id\":78567,\"chunks\":[\"906:static/chunks/906-70c43cd62b2efac1.js\",\"640:static/chunks/640-0f757e2fe135173d.js\",\"461:static/chunks/461-77257ab6b1bb209d.js\",\"975:static/chunks/975-db84f98b8dd028ab.js\",\"132:static/chunks/132-d6bea93785831786.js\",\"271:static/chunks/app/auth/signup/page-93"])</script><script>self.__next_f.push([1,"b80ab19bdaf2cc.js\"],\"name\":\"\",\"async\":false}\n"])</script><script>self.__next_f.push([1,"3:[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/de0307797e31a3e6.css\",\"precedence\":\"next\"}]],[\"$\",\"$L4\",null,{\"buildId\":\"gtTJhFvE95U20UjbnSnMr\",\"assetPrefix\":\"\",\"initialCanonicalUrl\":\"/auth/signup/\",\"initialTree\":[\"\",{\"children\":[\"auth\",{\"children\":[\"signup\",{\"children\":[\"__PAGE__\",{}]}]}]},\"$undefined\",\"$undefined\",true],\"initialHead\":\"$L5\",\"globalErrorComponent\":\"$6\",\"children\":[null,[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"className\":\"__className_85e967\",\"children\":[\"$\",\"$L7\",null,{\"children\":[\"$\",\"$L8\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"loading\":\"$undefined\",\"loadingStyles\":\"$undefined\",\"hasLoading\":false,\"template\":[\"$\",\"$L9\",null,{}],\"templateStyles\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":\"$undefined\",\"childProp\":{\"current\":[\"$\",\"$L8\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"auth\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"loading\":\"$undefined\",\"loadingStyles\":\"$undefined\",\"hasLoading\":false,\"template\":[\"$\",\"$L9\",null,{}],\"templateStyles\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\",\"childProp\":{\"current\":[\"$\",\"$L8\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"auth\",\"children\",\"signup\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"loading\":\"$undefined\",\"loadingStyles\":\"$undefined\",\"hasLoading\":false,\"template\":[\"$\",\"$L9\",null,{}],\"templateStyles\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\",\"childProp\":{\"current\":[\"$La\",[\"$\",\"$Lb\",null,{}],null],\"segment\":\"__PAGE__\"},\"styles\":[]}],\"segment\":\"signup\"},\"styles\":[]}],\"segment\":\"auth\"},\"styles\":[]}]}]}]}],null]}]]\n"])</script><script>self.__next_f.push([1,"5:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"title\",\"1\",{\"children\":\"promptfoo\"}],[\"$\",\"meta\",\"2\",{\"name\":\"description\",\"content\":\"LLM testing and evaluation\"}],[\"$\",\"meta\",\"3\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"4\",{\"property\":\"og:image\",\"content\":\"https://www.promptfoo.dev/img/thumbnail.png\"}],[\"$\",\"meta\",\"5\",{\"name\":\"twitter:card\",\"content\":\"summary\"}],[\"$\",\"meta\",\"6\",{\"name\":\"twitter:image\",\"content\":\"https://www.promptfoo.dev/img/thumbnail.png\"}],[\"$\",\"meta\",\"7\",{\"name\":\"next-size-adjust\"}]]\n"])</script><script>self.__next_f.push([1,"a:null\n"])</script></body></html>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
1:HL["/_next/static/media/a34f9d1faa5f3315-s.p.woff2",{"as":"font","type":"font/woff2"}]
|
|
2
2
|
2:HL["/_next/static/css/de0307797e31a3e6.css",{"as":"style"}]
|
|
3
|
-
0:["
|
|
4
|
-
5:I{"id":72403,"chunks":["906:static/chunks/906-70c43cd62b2efac1.js","640:static/chunks/640-0f757e2fe135173d.js","461:static/chunks/461-77257ab6b1bb209d.js","88:static/chunks/88-f3a7a858d5f4e9a0.js","113:static/chunks/113-c691bf7d3a37d865.js","975:static/chunks/975-db84f98b8dd028ab.js","132:static/chunks/132-d6bea93785831786.js","189:static/chunks/189-f9d565af9a2b91cb.js","185:static/chunks/app/layout-
|
|
3
|
+
0:["gtTJhFvE95U20UjbnSnMr",[[["",{"children":["auth",{"children":["signup",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],"$L3",[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/de0307797e31a3e6.css","precedence":"next"}]],"$L4"]]]]
|
|
4
|
+
5:I{"id":72403,"chunks":["906:static/chunks/906-70c43cd62b2efac1.js","640:static/chunks/640-0f757e2fe135173d.js","461:static/chunks/461-77257ab6b1bb209d.js","88:static/chunks/88-f3a7a858d5f4e9a0.js","113:static/chunks/113-c691bf7d3a37d865.js","975:static/chunks/975-db84f98b8dd028ab.js","132:static/chunks/132-d6bea93785831786.js","189:static/chunks/189-f9d565af9a2b91cb.js","185:static/chunks/app/layout-e465aaafbfe88e82.js"],"name":"PageShell","async":false}
|
|
5
5
|
6:I{"id":27883,"chunks":["272:static/chunks/webpack-452ae8c28379ed4c.js","470:static/chunks/b6261da7-e9d81a4364ddd0c0.js","730:static/chunks/730-3eb7255cd813a727.js"],"name":"default","async":false}
|
|
6
6
|
7:I{"id":46785,"chunks":["272:static/chunks/webpack-452ae8c28379ed4c.js","470:static/chunks/b6261da7-e9d81a4364ddd0c0.js","730:static/chunks/730-3eb7255cd813a727.js"],"name":"default","async":false}
|
|
7
7
|
9:I{"id":78567,"chunks":["906:static/chunks/906-70c43cd62b2efac1.js","640:static/chunks/640-0f757e2fe135173d.js","461:static/chunks/461-77257ab6b1bb209d.js","975:static/chunks/975-db84f98b8dd028ab.js","132:static/chunks/132-d6bea93785831786.js","271:static/chunks/app/auth/signup/page-93b80ab19bdaf2cc.js"],"name":"","async":false}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><link rel="preload" as="font" href="/_next/static/media/a34f9d1faa5f3315-s.p.woff2" crossorigin="" type="font/woff2"/><link rel="stylesheet" href="/_next/static/css/de0307797e31a3e6.css" data-precedence="next"/><link rel="preload" href="/_next/static/chunks/webpack-452ae8c28379ed4c.js" as="script"/><link rel="preload" href="/_next/static/chunks/b6261da7-e9d81a4364ddd0c0.js" as="script"/><link rel="preload" href="/_next/static/chunks/730-3eb7255cd813a727.js" as="script"/><link rel="preload" href="/_next/static/chunks/main-app-0dc90092cd7acaaf.js" as="script"/><title>promptfoo</title><meta name="description" content="LLM testing and evaluation"/><meta name="viewport" content="width=device-width, initial-scale=1"/><meta property="og:image" content="https://www.promptfoo.dev/img/thumbnail.png"/><meta name="twitter:card" content="summary"/><meta name="twitter:image" content="https://www.promptfoo.dev/img/thumbnail.png"/><meta name="next-size-adjust"/><script src="/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js" noModule=""></script></head><body class="__className_85e967"><script src="/_next/static/chunks/webpack-452ae8c28379ed4c.js" async=""></script><script src="/_next/static/chunks/b6261da7-e9d81a4364ddd0c0.js" async=""></script><script src="/_next/static/chunks/730-3eb7255cd813a727.js" async=""></script><script src="/_next/static/chunks/main-app-0dc90092cd7acaaf.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/media/a34f9d1faa5f3315-s.p.woff2\",{\"as\":\"font\",\"type\":\"font/woff2\"}]\n2:HL[\"/_next/static/css/de0307797e31a3e6.css\",{\"as\":\"style\"}]\n0:\"$L3\"\n"])</script><script>self.__next_f.push([1,"4:I{\"id\":83507,\"chunks\":[\"272:static/chunks/webpack-452ae8c28379ed4c.js\",\"470:static/chunks/b6261da7-e9d81a4364ddd0c0.js\",\"730:static/chunks/730-3eb7255cd813a727.js\"],\"name\":\"default\",\"async\":false}\n6:I{\"id\":6020,\"chunks\":[\"272:static/chunks/webpack-452ae8c28379ed4c.js\",\"470:static/chunks/b6261da7-e9d81a4364ddd0c0.js\",\"730:static/chunks/730-3eb7255cd813a727.js\"],\"name\":\"\",\"async\":false}\n7:I{\"id\":72403,\"chunks\":[\"906:static/chunks/906-70c43cd62b2efac1.js\",\"640:static/chunks/640-0f757e2fe135173d.js\",\"461:stat"])</script><script>self.__next_f.push([1,"ic/chunks/461-77257ab6b1bb209d.js\",\"88:static/chunks/88-f3a7a858d5f4e9a0.js\",\"113:static/chunks/113-c691bf7d3a37d865.js\",\"975:static/chunks/975-db84f98b8dd028ab.js\",\"132:static/chunks/132-d6bea93785831786.js\",\"189:static/chunks/189-f9d565af9a2b91cb.js\",\"185:static/chunks/app/layout-
|
|
1
|
+
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><link rel="preload" as="font" href="/_next/static/media/a34f9d1faa5f3315-s.p.woff2" crossorigin="" type="font/woff2"/><link rel="stylesheet" href="/_next/static/css/de0307797e31a3e6.css" data-precedence="next"/><link rel="preload" href="/_next/static/chunks/webpack-452ae8c28379ed4c.js" as="script"/><link rel="preload" href="/_next/static/chunks/b6261da7-e9d81a4364ddd0c0.js" as="script"/><link rel="preload" href="/_next/static/chunks/730-3eb7255cd813a727.js" as="script"/><link rel="preload" href="/_next/static/chunks/main-app-0dc90092cd7acaaf.js" as="script"/><title>promptfoo</title><meta name="description" content="LLM testing and evaluation"/><meta name="viewport" content="width=device-width, initial-scale=1"/><meta property="og:image" content="https://www.promptfoo.dev/img/thumbnail.png"/><meta name="twitter:card" content="summary"/><meta name="twitter:image" content="https://www.promptfoo.dev/img/thumbnail.png"/><meta name="next-size-adjust"/><script src="/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js" noModule=""></script></head><body class="__className_85e967"><script src="/_next/static/chunks/webpack-452ae8c28379ed4c.js" async=""></script><script src="/_next/static/chunks/b6261da7-e9d81a4364ddd0c0.js" async=""></script><script src="/_next/static/chunks/730-3eb7255cd813a727.js" async=""></script><script src="/_next/static/chunks/main-app-0dc90092cd7acaaf.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/media/a34f9d1faa5f3315-s.p.woff2\",{\"as\":\"font\",\"type\":\"font/woff2\"}]\n2:HL[\"/_next/static/css/de0307797e31a3e6.css\",{\"as\":\"style\"}]\n0:\"$L3\"\n"])</script><script>self.__next_f.push([1,"4:I{\"id\":83507,\"chunks\":[\"272:static/chunks/webpack-452ae8c28379ed4c.js\",\"470:static/chunks/b6261da7-e9d81a4364ddd0c0.js\",\"730:static/chunks/730-3eb7255cd813a727.js\"],\"name\":\"default\",\"async\":false}\n6:I{\"id\":6020,\"chunks\":[\"272:static/chunks/webpack-452ae8c28379ed4c.js\",\"470:static/chunks/b6261da7-e9d81a4364ddd0c0.js\",\"730:static/chunks/730-3eb7255cd813a727.js\"],\"name\":\"\",\"async\":false}\n7:I{\"id\":72403,\"chunks\":[\"906:static/chunks/906-70c43cd62b2efac1.js\",\"640:static/chunks/640-0f757e2fe135173d.js\",\"461:stat"])</script><script>self.__next_f.push([1,"ic/chunks/461-77257ab6b1bb209d.js\",\"88:static/chunks/88-f3a7a858d5f4e9a0.js\",\"113:static/chunks/113-c691bf7d3a37d865.js\",\"975:static/chunks/975-db84f98b8dd028ab.js\",\"132:static/chunks/132-d6bea93785831786.js\",\"189:static/chunks/189-f9d565af9a2b91cb.js\",\"185:static/chunks/app/layout-e465aaafbfe88e82.js\"],\"name\":\"PageShell\",\"async\":false}\n8:I{\"id\":27883,\"chunks\":[\"272:static/chunks/webpack-452ae8c28379ed4c.js\",\"470:static/chunks/b6261da7-e9d81a4364ddd0c0.js\",\"730:static/chunks/730-3eb7255cd813a727.js\"],\"name\""])</script><script>self.__next_f.push([1,":\"default\",\"async\":false}\n9:I{\"id\":46785,\"chunks\":[\"272:static/chunks/webpack-452ae8c28379ed4c.js\",\"470:static/chunks/b6261da7-e9d81a4364ddd0c0.js\",\"730:static/chunks/730-3eb7255cd813a727.js\"],\"name\":\"default\",\"async\":false}\nb:I{\"id\":41400,\"chunks\":[\"906:static/chunks/906-70c43cd62b2efac1.js\",\"640:static/chunks/640-0f757e2fe135173d.js\",\"88:static/chunks/88-f3a7a858d5f4e9a0.js\",\"113:static/chunks/113-c691bf7d3a37d865.js\",\"417:static/chunks/417-cbf95fe2bc362650.js\",\"235:static/chunks/235-2bbcbc3cd37eef0f.js\","])</script><script>self.__next_f.push([1,"\"854:static/chunks/854-c18aaae33bccdc36.js\",\"958:static/chunks/app/datasets/page-17e6d3f57945f88a.js\"],\"name\":\"\",\"async\":false}\n"])</script><script>self.__next_f.push([1,"3:[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/de0307797e31a3e6.css\",\"precedence\":\"next\"}]],[\"$\",\"$L4\",null,{\"buildId\":\"gtTJhFvE95U20UjbnSnMr\",\"assetPrefix\":\"\",\"initialCanonicalUrl\":\"/datasets/\",\"initialTree\":[\"\",{\"children\":[\"datasets\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],\"initialHead\":\"$L5\",\"globalErrorComponent\":\"$6\",\"children\":[null,[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"className\":\"__className_85e967\",\"children\":[\"$\",\"$L7\",null,{\"children\":[\"$\",\"$L8\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"loading\":\"$undefined\",\"loadingStyles\":\"$undefined\",\"hasLoading\":false,\"template\":[\"$\",\"$L9\",null,{}],\"templateStyles\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":\"$undefined\",\"childProp\":{\"current\":[\"$\",\"$L8\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"datasets\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"loading\":\"$undefined\",\"loadingStyles\":\"$undefined\",\"hasLoading\":false,\"template\":[\"$\",\"$L9\",null,{}],\"templateStyles\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\",\"childProp\":{\"current\":[\"$La\",[\"$\",\"div\",null,{\"children\":[\"$\",\"$Lb\",null,{}]}],null],\"segment\":\"__PAGE__\"},\"styles\":[]}],\"segment\":\"datasets\"},\"styles\":[]}]}]}]}],null]}]]\n"])</script><script>self.__next_f.push([1,"5:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"title\",\"1\",{\"children\":\"promptfoo\"}],[\"$\",\"meta\",\"2\",{\"name\":\"description\",\"content\":\"LLM testing and evaluation\"}],[\"$\",\"meta\",\"3\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"4\",{\"property\":\"og:image\",\"content\":\"https://www.promptfoo.dev/img/thumbnail.png\"}],[\"$\",\"meta\",\"5\",{\"name\":\"twitter:card\",\"content\":\"summary\"}],[\"$\",\"meta\",\"6\",{\"name\":\"twitter:image\",\"content\":\"https://www.promptfoo.dev/img/thumbnail.png\"}],[\"$\",\"meta\",\"7\",{\"name\":\"next-size-adjust\"}]]\n"])</script><script>self.__next_f.push([1,"a:null\n"])</script></body></html>
|