@exulu/backend 0.3.12 → 1.2.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/.github/workflows/release.yml +38 -0
- package/.husky/commit-msg +1 -0
- package/CHANGELOG.md +45 -0
- package/README.md +152 -47
- package/commitlint.config.js +4 -0
- package/dist/index.cjs +805 -504
- package/dist/index.d.cts +46 -44
- package/dist/index.d.ts +46 -44
- package/dist/index.js +805 -503
- package/package.json +98 -88
- package/release.config.cjs +9 -0
- package/types/models/user.ts +1 -0
- package/git-conventional-commits.yaml +0 -43
- package/types/models/embedder-backend.ts +0 -15
package/package.json
CHANGED
|
@@ -1,90 +1,100 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
"
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
"
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
"
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
"
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
2
|
+
"name": "@exulu/backend",
|
|
3
|
+
"author": "Qventu Bv.",
|
|
4
|
+
"version": "1.2.0",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"private": false,
|
|
7
|
+
"publishConfig": {
|
|
8
|
+
"access": "restricted"
|
|
9
|
+
},
|
|
10
|
+
"module": "./dist/index.mjs",
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"homepage": "https://exulu.com",
|
|
13
|
+
"engines": {
|
|
14
|
+
"node": "20.10.0"
|
|
15
|
+
},
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "https://github.com/Qventu/exulu-backend"
|
|
19
|
+
},
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "tsup",
|
|
22
|
+
"dev": "npm link && tsup --watch",
|
|
23
|
+
"prepare": "husky",
|
|
24
|
+
"semantic-release": "semantic-release"
|
|
25
|
+
},
|
|
26
|
+
"keywords": [
|
|
27
|
+
"exulu"
|
|
28
|
+
],
|
|
29
|
+
"type": "module",
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@commitlint/cli": "^19.8.1",
|
|
32
|
+
"@commitlint/config-conventional": "^19.8.1",
|
|
33
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
34
|
+
"semantic-release": "^24.2.7",
|
|
35
|
+
"@types/bun": "latest",
|
|
36
|
+
"@types/node": "^22.14.0",
|
|
37
|
+
"@types/pg": "^8.15.1",
|
|
38
|
+
"conventional-changelog-atom": "^5.0.0",
|
|
39
|
+
"husky": "^9.1.7",
|
|
40
|
+
"tsup": "^8.5.0",
|
|
41
|
+
"tsx": "^4.19.3"
|
|
42
|
+
},
|
|
43
|
+
"peerDependencies": {
|
|
44
|
+
"typescript": "^5.8.3"
|
|
45
|
+
},
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"@ai-sdk/anthropic": "^1.2.12",
|
|
48
|
+
"@anthropic-ai/sdk": "^0.56.0",
|
|
49
|
+
"@as-integrations/express5": "^1.0.0",
|
|
50
|
+
"@aws-sdk/client-s3": "^3.338.0",
|
|
51
|
+
"@aws-sdk/client-sts": "^3.338.0",
|
|
52
|
+
"@aws-sdk/s3-request-presigner": "^3.338.0",
|
|
53
|
+
"@browserbasehq/sdk": "^2.6.0",
|
|
54
|
+
"@browserbasehq/stagehand": "^2.4.1",
|
|
55
|
+
"@inkjs/ui": "^2.0.0",
|
|
56
|
+
"@modelcontextprotocol/sdk": "^1.14.0",
|
|
57
|
+
"@types/bcrypt": "^5.0.2",
|
|
58
|
+
"@types/cors": "^2.8.18",
|
|
59
|
+
"@types/express": "^5.0.1",
|
|
60
|
+
"@types/graphql-type-json": "^0.3.5",
|
|
61
|
+
"@types/multer": "^1.4.12",
|
|
62
|
+
"ai": "^4.3.9",
|
|
63
|
+
"apollo-server": "^3.13.0",
|
|
64
|
+
"bcryptjs": "^3.0.2",
|
|
65
|
+
"body-parser": "^2.2.0",
|
|
66
|
+
"bullmq": "^5.48.1",
|
|
67
|
+
"class-validator": "^0.14.2",
|
|
68
|
+
"cors": "^2.8.5",
|
|
69
|
+
"crypto-js": "^4.2.0",
|
|
70
|
+
"csv-parse": "^5.6.0",
|
|
71
|
+
"dotenv": "^16.5.0",
|
|
72
|
+
"express": "^5.1.0",
|
|
73
|
+
"fullscreen-ink": "^0.0.2",
|
|
74
|
+
"graphql": "^16.11.0",
|
|
75
|
+
"graphql-tools": "^9.0.18",
|
|
76
|
+
"graphql-type-json": "^0.3.2",
|
|
77
|
+
"http-proxy-middleware": "^3.0.5",
|
|
78
|
+
"ink": "^6.0.0",
|
|
79
|
+
"ink-big-text": "^2.0.0",
|
|
80
|
+
"ink-gradient": "^3.0.0",
|
|
81
|
+
"ink-select-input": "^6.2.0",
|
|
82
|
+
"ink-table": "^3.1.0",
|
|
83
|
+
"jose": "^6.0.10",
|
|
84
|
+
"jsonwebtoken": "^9.0.2",
|
|
85
|
+
"knex": "^3.1.0",
|
|
86
|
+
"multer": "^1.4.5-lts.2",
|
|
87
|
+
"openai": "^4.94.0",
|
|
88
|
+
"papaparse": "^5.5.2",
|
|
89
|
+
"pg": "^8.16.3",
|
|
90
|
+
"pgvector": "^0.2.0",
|
|
91
|
+
"redis": "^4.7.0",
|
|
92
|
+
"reflect-metadata": "^0.2.2",
|
|
93
|
+
"tiktoken": "^1.0.21",
|
|
94
|
+
"type-graphql": "^2.0.0-rc.2",
|
|
95
|
+
"uninstall": "^0.0.0",
|
|
96
|
+
"uuid": "^11.1.0",
|
|
97
|
+
"zod": "^3.24.2",
|
|
98
|
+
"zodex": "^0.18.2"
|
|
99
|
+
}
|
|
90
100
|
}
|
package/types/models/user.ts
CHANGED
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
convention:
|
|
3
|
-
commitTypes:
|
|
4
|
-
- feat
|
|
5
|
-
- fix
|
|
6
|
-
- perf
|
|
7
|
-
- refactor
|
|
8
|
-
- style
|
|
9
|
-
- test
|
|
10
|
-
- build
|
|
11
|
-
- ops
|
|
12
|
-
- docs
|
|
13
|
-
- chore
|
|
14
|
-
- merge
|
|
15
|
-
- revert
|
|
16
|
-
commitScopes: []
|
|
17
|
-
releaseTagGlobPattern: v[0-9]*.[0-9]*.[0-9]*
|
|
18
|
-
changelog:
|
|
19
|
-
commitTypes:
|
|
20
|
-
- feat
|
|
21
|
-
- fix
|
|
22
|
-
- perf
|
|
23
|
-
- merge
|
|
24
|
-
includeInvalidCommits: true
|
|
25
|
-
commitIgnoreRegexPattern: "^WIP "
|
|
26
|
-
headlines:
|
|
27
|
-
feat: Features
|
|
28
|
-
fix: Bug Fixes
|
|
29
|
-
perf: Performance Improvements
|
|
30
|
-
merge: Merges
|
|
31
|
-
breakingChange: BREAKING CHANGES
|
|
32
|
-
|
|
33
|
-
## GitHub
|
|
34
|
-
# commitUrl: https://github.com/ACCOUNT/REPOSITORY/commit/%commit%
|
|
35
|
-
# commitRangeUrl: https://github.com/ACCOUNT/REPOSITORY/compare/%from%...%to%?diff=split
|
|
36
|
-
|
|
37
|
-
## GitHub Issues
|
|
38
|
-
# issueRegexPattern: "#[0-9]+"
|
|
39
|
-
# issueUrl: https://github.com/ACCOUNT/REPOSITORY/issues/%issue%
|
|
40
|
-
|
|
41
|
-
## Jira Issues
|
|
42
|
-
# issueRegexPattern: "[A-Z][A-Z0-9]+-[0-9]+"
|
|
43
|
-
# issueUrl: https://WORKSPACE.atlassian.net/browse/%issue%
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
// Represents an embedder backend
|
|
3
|
-
// which is created and run in
|
|
4
|
-
// the agents service. Embedders
|
|
5
|
-
// registered in Exulu must have
|
|
6
|
-
// a connected backend that
|
|
7
|
-
// does the actual work.
|
|
8
|
-
|
|
9
|
-
export interface EmbedderBackend {
|
|
10
|
-
id: string
|
|
11
|
-
name: string
|
|
12
|
-
slug: string
|
|
13
|
-
supported: string
|
|
14
|
-
description: string
|
|
15
|
-
}
|