File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ type Config = {
78
78
maxPagesToCrawl: number ;
79
79
/** File name for the finished data */
80
80
outputFileName: string ;
81
- /** Optional maximum file size in bytes to include in the output file */
81
+ /** Optional maximum file size in megabytes to include in the output file */
82
82
maxFileSize? : number ().,
83
83
/** Optional maximum number tokens to include in the output file */
84
84
maxTokens? : number ().,
Original file line number Diff line number Diff line change @@ -53,8 +53,8 @@ export const configSchema = z.object({
53
53
waitForSelectorTimeout : z . number ( ) . int ( ) . nonnegative ( ) . optional ( ) ,
54
54
55
55
56
- /** Optional maximum file size in bytes to include in the output file
57
- * @example 1000
56
+ /** Optional maximum file size in megabytes to include in the output file
57
+ * @example 1
58
58
*/
59
59
maxFileSize : z . number ( ) . int ( ) . positive ( ) . optional ( ) ,
60
60
/** Optional maximum number tokens to include in the output file
You can’t perform that action at this time.
0 commit comments