@exulu/backend 0.2.4 → 0.2.5
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/dist/index.cjs +2 -1
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +3 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -4046,7 +4046,8 @@ var ExuluJobs = {
|
|
|
4046
4046
|
};
|
|
4047
4047
|
var ExuluChunkers = {
|
|
4048
4048
|
chonkie: {
|
|
4049
|
-
sentence: import_chonkie.SentenceChunker
|
|
4049
|
+
sentence: import_chonkie.SentenceChunker,
|
|
4050
|
+
recursive: import_chonkie.RecursiveChunker
|
|
4050
4051
|
}
|
|
4051
4052
|
};
|
|
4052
4053
|
var ExuluDatabase = {
|
package/dist/index.d.cts
CHANGED
|
@@ -6,7 +6,7 @@ import { ToolAction, Agent } from '@mastra/core';
|
|
|
6
6
|
import { LanguageModelV1 } from 'ai';
|
|
7
7
|
import { Express } from 'express';
|
|
8
8
|
import { Knex } from 'knex';
|
|
9
|
-
import { SentenceChunker } from 'chonkie';
|
|
9
|
+
import { SentenceChunker, RecursiveChunker } from 'chonkie';
|
|
10
10
|
|
|
11
11
|
declare function redisClient(): Promise<{
|
|
12
12
|
client: RedisClientType | null;
|
|
@@ -497,6 +497,7 @@ declare const ExuluJobs: {
|
|
|
497
497
|
declare const ExuluChunkers: {
|
|
498
498
|
chonkie: {
|
|
499
499
|
sentence: typeof SentenceChunker;
|
|
500
|
+
recursive: typeof RecursiveChunker;
|
|
500
501
|
};
|
|
501
502
|
};
|
|
502
503
|
declare const ExuluDatabase: {
|
package/dist/index.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import { ToolAction, Agent } from '@mastra/core';
|
|
|
6
6
|
import { LanguageModelV1 } from 'ai';
|
|
7
7
|
import { Express } from 'express';
|
|
8
8
|
import { Knex } from 'knex';
|
|
9
|
-
import { SentenceChunker } from 'chonkie';
|
|
9
|
+
import { SentenceChunker, RecursiveChunker } from 'chonkie';
|
|
10
10
|
|
|
11
11
|
declare function redisClient(): Promise<{
|
|
12
12
|
client: RedisClientType | null;
|
|
@@ -497,6 +497,7 @@ declare const ExuluJobs: {
|
|
|
497
497
|
declare const ExuluChunkers: {
|
|
498
498
|
chonkie: {
|
|
499
499
|
sentence: typeof SentenceChunker;
|
|
500
|
+
recursive: typeof RecursiveChunker;
|
|
500
501
|
};
|
|
501
502
|
};
|
|
502
503
|
declare const ExuluDatabase: {
|
package/dist/index.js
CHANGED
|
@@ -3995,7 +3995,7 @@ var ExuluApp = class {
|
|
|
3995
3995
|
};
|
|
3996
3996
|
|
|
3997
3997
|
// src/index.ts
|
|
3998
|
-
import { SentenceChunker } from "chonkie";
|
|
3998
|
+
import { RecursiveChunker, SentenceChunker } from "chonkie";
|
|
3999
3999
|
var ExuluJobs = {
|
|
4000
4000
|
redis: redisClient,
|
|
4001
4001
|
jobs: {
|
|
@@ -4004,7 +4004,8 @@ var ExuluJobs = {
|
|
|
4004
4004
|
};
|
|
4005
4005
|
var ExuluChunkers = {
|
|
4006
4006
|
chonkie: {
|
|
4007
|
-
sentence: SentenceChunker
|
|
4007
|
+
sentence: SentenceChunker,
|
|
4008
|
+
recursive: RecursiveChunker
|
|
4008
4009
|
}
|
|
4009
4010
|
};
|
|
4010
4011
|
var ExuluDatabase = {
|