pro migration (#4388) (#4433)

* pro migration

* reuse customPdfParseType

Co-authored-by: gggaaallleee <91131304+gggaaallleee@users.noreply.github.com>
This commit is contained in:
Archer 2025-04-02 17:12:34 +08:00 committed by archer
parent d171b2d3d8
commit 9fe95da126
No known key found for this signature in database
GPG Key ID: 4446499B846D4A9E

View File

@ -118,11 +118,12 @@ export type SystemEnvType = {
oneapiUrl?: string; oneapiUrl?: string;
chatApiKey?: string; chatApiKey?: string;
customPdfParse?: { customPdfParse?: customPdfParseType;
url?: string; };
key?: string;
export type customPdfParseType = {
doc2xKey?: string; url?: string;
price?: number; // n points/1 page key?: string;
}; doc2xKey?: string;
price?: number;
}; };