@exulu/backend 1.17.0 → 1.18.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.
@@ -23,7 +23,7 @@ const createLogger = ({ enableOtel }: { enableOtel: boolean }) => {
23
23
  winston.format.json()
24
24
  ),
25
25
  defaultMeta: {
26
- service: 'Test-Exulu',
26
+ service: 'Exulu',
27
27
  environment: process.env.NODE_ENV || 'development',
28
28
  },
29
29
  transports: [
@@ -80,7 +80,7 @@ if (config?.telemetry?.enabled) {
80
80
 
81
81
  The current implementation is specifically designed for SigNoz integration (supports both SigNoz Cloud and self-hosted deployments):
82
82
 
83
- - **Service Name**: `Test-Exulu`
83
+ - **Service Name**: `Exulu`
84
84
  - **Traces**: Exported to `SIGNOZ_TRACES_URL`
85
85
  - **Logs**: Exported to `SIGNOZ_LOGS_URL`
86
86
  - **Authentication**: Uses `signoz-access-token` header
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@exulu/backend",
3
3
  "author": "Qventu Bv.",
4
- "version": "1.17.0",
4
+ "version": "1.18.0",
5
5
  "main": "./dist/index.js",
6
6
  "private": false,
7
7
  "publishConfig": {
@@ -2,7 +2,6 @@ export interface Agent {
2
2
  id: string;
3
3
  backend: string;
4
4
  type: "chat" | "flow";
5
- extensions: string[];
6
5
  name: string;
7
6
  active?: boolean;
8
7
  public?: boolean;
@@ -1,5 +1,4 @@
1
1
  import type { ExuluFieldTypes } from "../enums/field-types"
2
- import type { Agent } from "./agent"
3
2
 
4
3
  export interface Context {
5
4
  id: string
@@ -11,25 +10,6 @@ export interface Context {
11
10
  fields: {
12
11
  name: string
13
12
  type: ExuluFieldTypes
13
+ label: string
14
14
  }[]
15
- sources: ContextSource[]
16
- agents: Agent[]
17
- }
18
-
19
- export interface ContextSource {
20
- id: string
21
- name: string
22
- description: string
23
- updaters: Updater[]
24
- }
25
-
26
- export interface Updater {
27
- id: string
28
- type: string
29
- configuration: Configuration
30
- }
31
-
32
- export interface Configuration {
33
- query: string
34
- }
35
-
15
+ }
@@ -7,7 +7,7 @@ export interface Item {
7
7
  external_id?: string;
8
8
  source?: string;
9
9
  tags?: string[];
10
- textLength?: number;
10
+ textlength?: number;
11
11
  chunks?: {
12
12
  id: string;
13
13
  index: number;
@@ -0,0 +1,8 @@
1
+ export interface Variable {
2
+ id: string;
3
+ name: string;
4
+ value: string;
5
+ encrypted: boolean;
6
+ createdAt: string;
7
+ updatedAt: string;
8
+ }