@exulu/backend 1.4.1 → 1.6.0
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/CHANGELOG.md +4 -3
- package/dist/index.cjs +2553 -2561
- package/dist/index.d.cts +4 -7
- package/dist/index.d.ts +4 -7
- package/dist/index.js +2551 -2559
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1411,6 +1411,9 @@ declare const ExuluJobs: {
|
|
|
1411
1411
|
};
|
|
1412
1412
|
};
|
|
1413
1413
|
|
|
1414
|
+
declare const db: {
|
|
1415
|
+
init: () => Promise<void>;
|
|
1416
|
+
};
|
|
1414
1417
|
declare const ExuluChunkers: {
|
|
1415
1418
|
sentence: typeof SentenceChunker;
|
|
1416
1419
|
recursive: {
|
|
@@ -1418,11 +1421,5 @@ declare const ExuluChunkers: {
|
|
|
1418
1421
|
rules: typeof RecursiveRules;
|
|
1419
1422
|
};
|
|
1420
1423
|
};
|
|
1421
|
-
declare const ExuluDatabase: {
|
|
1422
|
-
init: () => Promise<void>;
|
|
1423
|
-
generateApiKey: (name: string, email: string) => Promise<{
|
|
1424
|
-
key: string;
|
|
1425
|
-
}>;
|
|
1426
|
-
};
|
|
1427
1424
|
|
|
1428
|
-
export { type JOB_STATUS as EXULU_JOB_STATUS, JOB_STATUS_ENUM as EXULU_JOB_STATUS_ENUM, type STATISTICS_TYPE as EXULU_STATISTICS_TYPE, STATISTICS_TYPE_ENUM as EXULU_STATISTICS_TYPE_ENUM, ExuluAgent, ExuluApp, authentication as ExuluAuthentication, ExuluChunkers, ExuluContext,
|
|
1425
|
+
export { type JOB_STATUS as EXULU_JOB_STATUS, JOB_STATUS_ENUM as EXULU_JOB_STATUS_ENUM, type STATISTICS_TYPE as EXULU_STATISTICS_TYPE, STATISTICS_TYPE_ENUM as EXULU_STATISTICS_TYPE_ENUM, ExuluAgent, ExuluApp, authentication as ExuluAuthentication, ExuluChunkers, ExuluContext, ExuluEmbedder, ExuluEval, type Job as ExuluJob, ExuluJobs, ExuluLogger, queues as ExuluQueues, ExuluSource, ExuluTool, ExuluWorkflow, type ExuluWorkflowStep, ExuluZodFileType, db };
|
package/dist/index.d.ts
CHANGED
|
@@ -1411,6 +1411,9 @@ declare const ExuluJobs: {
|
|
|
1411
1411
|
};
|
|
1412
1412
|
};
|
|
1413
1413
|
|
|
1414
|
+
declare const db: {
|
|
1415
|
+
init: () => Promise<void>;
|
|
1416
|
+
};
|
|
1414
1417
|
declare const ExuluChunkers: {
|
|
1415
1418
|
sentence: typeof SentenceChunker;
|
|
1416
1419
|
recursive: {
|
|
@@ -1418,11 +1421,5 @@ declare const ExuluChunkers: {
|
|
|
1418
1421
|
rules: typeof RecursiveRules;
|
|
1419
1422
|
};
|
|
1420
1423
|
};
|
|
1421
|
-
declare const ExuluDatabase: {
|
|
1422
|
-
init: () => Promise<void>;
|
|
1423
|
-
generateApiKey: (name: string, email: string) => Promise<{
|
|
1424
|
-
key: string;
|
|
1425
|
-
}>;
|
|
1426
|
-
};
|
|
1427
1424
|
|
|
1428
|
-
export { type JOB_STATUS as EXULU_JOB_STATUS, JOB_STATUS_ENUM as EXULU_JOB_STATUS_ENUM, type STATISTICS_TYPE as EXULU_STATISTICS_TYPE, STATISTICS_TYPE_ENUM as EXULU_STATISTICS_TYPE_ENUM, ExuluAgent, ExuluApp, authentication as ExuluAuthentication, ExuluChunkers, ExuluContext,
|
|
1425
|
+
export { type JOB_STATUS as EXULU_JOB_STATUS, JOB_STATUS_ENUM as EXULU_JOB_STATUS_ENUM, type STATISTICS_TYPE as EXULU_STATISTICS_TYPE, STATISTICS_TYPE_ENUM as EXULU_STATISTICS_TYPE_ENUM, ExuluAgent, ExuluApp, authentication as ExuluAuthentication, ExuluChunkers, ExuluContext, ExuluEmbedder, ExuluEval, type Job as ExuluJob, ExuluJobs, ExuluLogger, queues as ExuluQueues, ExuluSource, ExuluTool, ExuluWorkflow, type ExuluWorkflowStep, ExuluZodFileType, db };
|