export declare const DELETE_KNOWLEDGE_BASE_TIMEOUT = 15000; export declare const DELETE_FILE_TIMEOUT = 5000; export declare const FILE_ERROR_TIMEOUT = 5000; export declare const CREDIT_TIMEOUT = 5000; export declare const MAX_FILE_NAME_LENGTH = 128; export declare const MAX_FILE_SIZE: number; export declare const MAX_FILE_SIZE_FREE: number; export declare const MAX_FILE_SIZE_PAID: number; export declare const STORAGE_LIMIT_FREE: number; export declare const STORAGE_LIMIT_PRO: number; export declare const STORAGE_LIMIT_TEAM: number; export declare const MAX_DESCRIPTION_LENGTH = 150; export declare const STORAGE_WARNING_THRESHOLD = 5; export declare const SearchChunksTabInputSchema = "{\n \"type\": \"object\",\n \"properties\": {\n \"textPrompt\": {\n \"type\": \"string\",\n \"title\": \"text prompt\"\n },\n \"topK\": {\n \"type\": \"integer\",\n \"format\": \"int64\",\n \"title\": \"topK\"\n }\n },\n \"title\": \"Similar chunk search request\"\n}"; export declare const SearchChunksTabOutputSchema = "{\n \"type\": \"object\",\n \"properties\": {\n \"similarChunks\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"chunkUid\": {\n \"type\": \"string\",\n \"title\": \"chunk uid\"\n },\n \"similarityScore\": {\n \"type\": \"number\",\n \"format\": \"float\",\n \"title\": \"similarity score\"\n },\n \"textContent\": {\n \"type\": \"string\",\n \"title\": \"chunk\"\n },\n \"sourceFile\": {\n \"type\": \"string\",\n \"title\": \"source file\"\n }\n },\n \"title\": \"similarity chunks\"\n },\n \"title\": \"chunks\"\n }\n },\n \"title\": \"Similar chunk search response\"\n}"; //# sourceMappingURL=constant.d.ts.map