@exulu/backend 1.42.2 → 1.43.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 +3 -3
- package/dist/index.cjs +328 -219
- package/dist/index.d.cts +4 -7
- package/dist/index.d.ts +4 -7
- package/dist/index.js +328 -218
- package/package.json +1 -1
- package/types/models/agent.ts +1 -0
package/dist/index.d.cts
CHANGED
|
@@ -3,7 +3,7 @@ import * as bullmq from 'bullmq';
|
|
|
3
3
|
import { Queue } from 'bullmq';
|
|
4
4
|
import { RedisClientType } from 'redis';
|
|
5
5
|
import * as ai from 'ai';
|
|
6
|
-
import { UIMessage,
|
|
6
|
+
import { UIMessage, LanguageModel, Tool } from 'ai';
|
|
7
7
|
import { z } from 'zod';
|
|
8
8
|
import { Express, Request } from 'express';
|
|
9
9
|
import { transport } from 'winston';
|
|
@@ -224,6 +224,7 @@ interface Agent {
|
|
|
224
224
|
}[];
|
|
225
225
|
maxContextLength?: number;
|
|
226
226
|
authenticationInformation?: string;
|
|
227
|
+
systemInstructions?: string;
|
|
227
228
|
capabilities?: {
|
|
228
229
|
text: boolean;
|
|
229
230
|
images: imageTypes$1[];
|
|
@@ -790,7 +791,7 @@ declare class ExuluContext {
|
|
|
790
791
|
job?: string;
|
|
791
792
|
chunks?: number;
|
|
792
793
|
}>;
|
|
793
|
-
all: (config: ExuluConfig, userId?: number, roleId?: string) => Promise<{
|
|
794
|
+
all: (config: ExuluConfig, userId?: number, roleId?: string, limit?: number) => Promise<{
|
|
794
795
|
jobs: string[];
|
|
795
796
|
items: number;
|
|
796
797
|
}>;
|
|
@@ -1755,10 +1756,6 @@ declare const ExuluJobs: {
|
|
|
1755
1756
|
validate: (job: bullmq.Job) => bullmq.Job<any, any, string>;
|
|
1756
1757
|
};
|
|
1757
1758
|
};
|
|
1758
|
-
declare const ExuluDefaultContexts: {
|
|
1759
|
-
codeStandards: ExuluContext;
|
|
1760
|
-
outputs: ExuluContext;
|
|
1761
|
-
};
|
|
1762
1759
|
declare const ExuluDefaultAgents: {
|
|
1763
1760
|
anthropic: {
|
|
1764
1761
|
opus4: ExuluAgent;
|
|
@@ -1829,4 +1826,4 @@ declare const ExuluChunkers: {
|
|
|
1829
1826
|
};
|
|
1830
1827
|
};
|
|
1831
1828
|
|
|
1832
|
-
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, ExuluDefaultAgents,
|
|
1829
|
+
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, ExuluDefaultAgents, ExuluEmbedder, ExuluEval, type ExuluEvalMetadata, type ExuluEvalTokenMetadata, type Item as ExuluItem, ExuluJobs, ExuluOtel, type ExuluQueueConfig, queues as ExuluQueues, ExuluStorage, ExuluTool, ExuluUtils, ExuluVariables, db, logMetadata };
|
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import * as bullmq from 'bullmq';
|
|
|
3
3
|
import { Queue } from 'bullmq';
|
|
4
4
|
import { RedisClientType } from 'redis';
|
|
5
5
|
import * as ai from 'ai';
|
|
6
|
-
import { UIMessage,
|
|
6
|
+
import { UIMessage, LanguageModel, Tool } from 'ai';
|
|
7
7
|
import { z } from 'zod';
|
|
8
8
|
import { Express, Request } from 'express';
|
|
9
9
|
import { transport } from 'winston';
|
|
@@ -224,6 +224,7 @@ interface Agent {
|
|
|
224
224
|
}[];
|
|
225
225
|
maxContextLength?: number;
|
|
226
226
|
authenticationInformation?: string;
|
|
227
|
+
systemInstructions?: string;
|
|
227
228
|
capabilities?: {
|
|
228
229
|
text: boolean;
|
|
229
230
|
images: imageTypes$1[];
|
|
@@ -790,7 +791,7 @@ declare class ExuluContext {
|
|
|
790
791
|
job?: string;
|
|
791
792
|
chunks?: number;
|
|
792
793
|
}>;
|
|
793
|
-
all: (config: ExuluConfig, userId?: number, roleId?: string) => Promise<{
|
|
794
|
+
all: (config: ExuluConfig, userId?: number, roleId?: string, limit?: number) => Promise<{
|
|
794
795
|
jobs: string[];
|
|
795
796
|
items: number;
|
|
796
797
|
}>;
|
|
@@ -1755,10 +1756,6 @@ declare const ExuluJobs: {
|
|
|
1755
1756
|
validate: (job: bullmq.Job) => bullmq.Job<any, any, string>;
|
|
1756
1757
|
};
|
|
1757
1758
|
};
|
|
1758
|
-
declare const ExuluDefaultContexts: {
|
|
1759
|
-
codeStandards: ExuluContext;
|
|
1760
|
-
outputs: ExuluContext;
|
|
1761
|
-
};
|
|
1762
1759
|
declare const ExuluDefaultAgents: {
|
|
1763
1760
|
anthropic: {
|
|
1764
1761
|
opus4: ExuluAgent;
|
|
@@ -1829,4 +1826,4 @@ declare const ExuluChunkers: {
|
|
|
1829
1826
|
};
|
|
1830
1827
|
};
|
|
1831
1828
|
|
|
1832
|
-
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, ExuluDefaultAgents,
|
|
1829
|
+
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, ExuluDefaultAgents, ExuluEmbedder, ExuluEval, type ExuluEvalMetadata, type ExuluEvalTokenMetadata, type Item as ExuluItem, ExuluJobs, ExuluOtel, type ExuluQueueConfig, queues as ExuluQueues, ExuluStorage, ExuluTool, ExuluUtils, ExuluVariables, db, logMetadata };
|