@exulu/backend 1.60.0 → 1.61.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/dist/{catalog-EOKGOHTY.js → catalog-BWE6SLE2.js} +1 -1
- package/dist/chunk-IDHS2BZO.js +210 -0
- package/dist/{chunk-YS27XOXI.js → chunk-ILAHW4UT.js} +5 -1
- package/dist/{chunk-23YNGK3V.js → chunk-MPV7HBV6.js} +63 -2
- package/dist/cli/start-whisper.cjs +240 -0
- package/dist/cli/start-whisper.d.cts +1 -0
- package/dist/cli/start-whisper.d.ts +1 -0
- package/dist/cli/start-whisper.js +204 -0
- package/dist/{convert-exulu-tools-to-ai-sdk-tools-PLLM2CJL.js → convert-exulu-tools-to-ai-sdk-tools-CULC37U6.js} +1 -1
- package/dist/index.cjs +1827 -346
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +1447 -249
- package/ee/python/requirements.txt +18 -0
- package/ee/python/setup.sh +44 -0
- package/ee/python/transcription/__init__.py +0 -0
- package/ee/python/transcription/pipeline.py +232 -0
- package/ee/python/transcription/server.py +151 -0
- package/ee/python/transcription/tests/__init__.py +0 -0
- package/ee/python/transcription/tests/test_server.py +111 -0
- package/ee/python/transcription/worker.py +135 -0
- package/package.json +4 -2
package/dist/index.d.cts
CHANGED
|
@@ -19,6 +19,7 @@ type User = {
|
|
|
19
19
|
emailVerified?: string;
|
|
20
20
|
type?: "api" | "user";
|
|
21
21
|
anthropic_token?: string;
|
|
22
|
+
personal_system_prompt?: string;
|
|
22
23
|
super_admin?: boolean;
|
|
23
24
|
favourite_agents?: string[];
|
|
24
25
|
scope_mode?: ApiKeyScopeMode;
|
|
@@ -211,7 +212,7 @@ declare class ExuluTool {
|
|
|
211
212
|
default?: string | boolean | number;
|
|
212
213
|
}[];
|
|
213
214
|
needsApproval?: boolean;
|
|
214
|
-
execute: (inputs: any) => Promise<{
|
|
215
|
+
execute: (inputs: any, options?: any) => Promise<{
|
|
215
216
|
result?: string;
|
|
216
217
|
job?: string;
|
|
217
218
|
items?: Item[];
|
package/dist/index.d.ts
CHANGED
|
@@ -19,6 +19,7 @@ type User = {
|
|
|
19
19
|
emailVerified?: string;
|
|
20
20
|
type?: "api" | "user";
|
|
21
21
|
anthropic_token?: string;
|
|
22
|
+
personal_system_prompt?: string;
|
|
22
23
|
super_admin?: boolean;
|
|
23
24
|
favourite_agents?: string[];
|
|
24
25
|
scope_mode?: ApiKeyScopeMode;
|
|
@@ -211,7 +212,7 @@ declare class ExuluTool {
|
|
|
211
212
|
default?: string | boolean | number;
|
|
212
213
|
}[];
|
|
213
214
|
needsApproval?: boolean;
|
|
214
|
-
execute: (inputs: any) => Promise<{
|
|
215
|
+
execute: (inputs: any, options?: any) => Promise<{
|
|
215
216
|
result?: string;
|
|
216
217
|
job?: string;
|
|
217
218
|
items?: Item[];
|