@exulu/backend 0.1.6
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/README.md +71 -0
- package/dist/index.cjs +3763 -0
- package/dist/index.d.cts +450 -0
- package/dist/index.d.ts +450 -0
- package/dist/index.js +3721 -0
- package/git-conventional-commits.yaml +43 -0
- package/license.md +81 -0
- package/package.json +82 -0
- package/types/enums/field-types.ts +1 -0
- package/types/enums/statistics.ts +13 -0
- package/types/models/agent-backend.ts +15 -0
- package/types/models/agent-session.ts +17 -0
- package/types/models/agent.ts +23 -0
- package/types/models/context.ts +35 -0
- package/types/models/embedder-backend.ts +15 -0
- package/types/models/embedding.ts +17 -0
- package/types/models/item.ts +21 -0
- package/types/models/job.ts +8 -0
- package/types/models/tool.ts +8 -0
- package/types/models/user-role.ts +6 -0
- package/types/models/user.ts +10 -0
- package/types/models/vector-methods.ts +10 -0
package/README.md
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
# Exulu
|
|
2
|
+
|
|
3
|
+
A comprehensive TypeScript package providing integrations and utilities for modern web applications.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- 🔐 Authentication and Authorization
|
|
8
|
+
- 🗄️ Database Integrations (PostgreSQL with pgvector support)
|
|
9
|
+
- 🔄 Redis Integration
|
|
10
|
+
- 📊 BullMQ Queue Management
|
|
11
|
+
- 🤖 AI and RAG (Retrieval-Augmented Generation) Capabilities
|
|
12
|
+
- 📝 GraphQL Support with Apollo Server
|
|
13
|
+
- 🔄 Express Integration
|
|
14
|
+
- 📦 AWS S3 Integration
|
|
15
|
+
- 🔒 JWT and NextAuth Support
|
|
16
|
+
|
|
17
|
+
## Installation
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
npm install exulu
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Quick Start
|
|
24
|
+
|
|
25
|
+
```typescript
|
|
26
|
+
import { /* your imports */ } from 'exulu';
|
|
27
|
+
|
|
28
|
+
// Your implementation here
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Dependencies
|
|
32
|
+
|
|
33
|
+
This package requires the following peer dependencies:
|
|
34
|
+
- TypeScript ^5.8.3
|
|
35
|
+
|
|
36
|
+
## Development
|
|
37
|
+
|
|
38
|
+
1. Clone the repository
|
|
39
|
+
2. Install dependencies:
|
|
40
|
+
```bash
|
|
41
|
+
npm install
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
3. Build the package:
|
|
45
|
+
```bash
|
|
46
|
+
npm run build
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
## Project Structure
|
|
50
|
+
|
|
51
|
+
```
|
|
52
|
+
src/
|
|
53
|
+
├── auth.ts # Authentication utilities
|
|
54
|
+
├── core-schema.ts # Core GraphQL schema definitions
|
|
55
|
+
├── types/ # TypeScript type definitions
|
|
56
|
+
├── registry/ # Registry related functionality
|
|
57
|
+
├── postgres/ # PostgreSQL database integrations
|
|
58
|
+
├── redis/ # Redis client and utilities
|
|
59
|
+
├── bullmq/ # Queue management
|
|
60
|
+
├── mcp/ # MCP related functionality
|
|
61
|
+
├── chunking/ # Data chunking utilities
|
|
62
|
+
└── evals/ # Evaluation utilities
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
## License
|
|
66
|
+
|
|
67
|
+
Private - Qventu Bv.
|
|
68
|
+
|
|
69
|
+
## Author
|
|
70
|
+
|
|
71
|
+
Qventu Bv.
|