mirror of
https://github.com/documenso/documenso.git
synced 2026-06-22 04:12:06 +10:00
feat: add ai detection for recipients and fields (#2271)
Use Gemini to handle detection of recipients and fields within documents. Opt in using organisation or team settings. Replaces #2128 since the branch was cursed and would include dependencies that weren't even in the lock file. https://github.com/user-attachments/assets/e6cbb58f-62b9-4079-a9ae-7af5c4f2e4ec
This commit is contained in:
+24
-7
@@ -2,12 +2,20 @@
|
||||
"$schema": "https://turbo.build/schema.json",
|
||||
"pipeline": {
|
||||
"build": {
|
||||
"dependsOn": ["prebuild", "^build"],
|
||||
"outputs": [".next/**", "!.next/cache/**"]
|
||||
"dependsOn": [
|
||||
"prebuild",
|
||||
"^build"
|
||||
],
|
||||
"outputs": [
|
||||
".next/**",
|
||||
"!.next/cache/**"
|
||||
]
|
||||
},
|
||||
"prebuild": {
|
||||
"cache": false,
|
||||
"dependsOn": ["^prebuild"]
|
||||
"dependsOn": [
|
||||
"^prebuild"
|
||||
]
|
||||
},
|
||||
"lint": {
|
||||
"cache": false
|
||||
@@ -23,7 +31,9 @@
|
||||
"persistent": true
|
||||
},
|
||||
"start": {
|
||||
"dependsOn": ["^build"],
|
||||
"dependsOn": [
|
||||
"^build"
|
||||
],
|
||||
"cache": false,
|
||||
"persistent": true
|
||||
},
|
||||
@@ -31,11 +41,15 @@
|
||||
"cache": false
|
||||
},
|
||||
"test:e2e": {
|
||||
"dependsOn": ["^build"],
|
||||
"dependsOn": [
|
||||
"^build"
|
||||
],
|
||||
"cache": false
|
||||
}
|
||||
},
|
||||
"globalDependencies": ["**/.env.*local"],
|
||||
"globalDependencies": [
|
||||
"**/.env.*local"
|
||||
],
|
||||
"globalEnv": [
|
||||
"APP_VERSION",
|
||||
"PORT",
|
||||
@@ -112,6 +126,9 @@
|
||||
"NEXT_PRIVATE_TELEMETRY_KEY",
|
||||
"NEXT_PRIVATE_TELEMETRY_HOST",
|
||||
"DOCUMENSO_DISABLE_TELEMETRY",
|
||||
"GOOGLE_VERTEX_PROJECT_ID",
|
||||
"GOOGLE_VERTEX_LOCATION",
|
||||
"GOOGLE_VERTEX_API_KEY",
|
||||
"CI",
|
||||
"NODE_ENV",
|
||||
"POSTGRES_URL",
|
||||
@@ -126,4 +143,4 @@
|
||||
"NEXT_PUBLIC_USE_INTERNAL_URL_BROWSERLESS",
|
||||
"NEXT_PRIVATE_OIDC_PROMPT"
|
||||
]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user