Skip to content

Commit d747cc0

Browse files
committed
Merge branch 'main' of github.com:langflow-ai/openrag into feat-docling-frontier-vlm
2 parents 5e5bd0b + d4f82e0 commit d747cc0

217 files changed

Lines changed: 14307 additions & 2531 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ README.md
4141
# Logs
4242
*.log
4343
logs/
44+
frontend/tests/logs/
4445

4546
# OS files
4647
.DS_Store

.env.example

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,26 @@ MICROSOFT_GRAPH_OAUTH_CLIENT_SECRET=
173173
AWS_ACCESS_KEY_ID=
174174
AWS_SECRET_ACCESS_KEY=
175175

176+
# --- IBM Cloud Object Storage connector (Enterprise/SaaS) ------------------
177+
# Enterprise/SaaS-only bucket connector, gated by IBM_AUTH_ENABLED (like the
178+
# AWS S3 / Azure Blob connectors). Credentials are normally entered per-connection
179+
# in the UI; these env vars are OPTIONAL fallbacks / defaults. Two auth modes are
180+
# supported: IAM (api_key + service_instance_id, default) or HMAC (access key +
181+
# secret, S3-compatible -- works against MinIO for local testing).
182+
IBM_COS_ENDPOINT=
183+
IBM_COS_API_KEY=
184+
IBM_COS_SERVICE_INSTANCE_ID=
185+
IBM_COS_HMAC_ACCESS_KEY_ID=
186+
IBM_COS_HMAC_SECRET_ACCESS_KEY=
187+
#
188+
# Local dev / MinIO testing: set OPENRAG_DEV_IBM_COS=true to enable the
189+
# connector without IBM_AUTH_ENABLED. NEVER use in production.
190+
# OPENRAG_DEV_IBM_COS=false
191+
# Frontend counterpart: also set NEXT_PUBLIC_DEV_IBM_COS=true so the Connectors
192+
# tab and admin Connectors Permission page show IBM COS locally (requires a
193+
# frontend restart to take effect -- Next.js reads NEXT_PUBLIC_* at startup).
194+
# NEXT_PUBLIC_DEV_IBM_COS=false
195+
176196
# --- Azure Blob Storage connector (Enterprise/SaaS) ------------------------
177197
# Enterprise/SaaS-only bucket connector, gated by IBM_AUTH_ENABLED (like the
178198
# AWS S3 / IBM COS connectors). Credentials are normally entered per-connection
@@ -391,6 +411,12 @@ SESSION_SECRET=
391411
# - "on_prem": Private Cloud
392412
OPENRAG_RUN_MODE=oss
393413

414+
# Feature flag for the preview-mode ingest backend (default: false = disabled).
415+
# When true, the frontend can request preview ingests that show progress and a
416+
# live index proof without persisting Docling layout JSON. AND-ed with the run
417+
# mode: preview is only ever available in the "oss" and "saas" run modes above.
418+
# OPENRAG_INGEST_PREVIEW_ENABLED=false
419+
394420
# Permission/identity cache backend. Only "memory" is currently wired.
395421
# When CACHE_BACKEND=memory the RBAC permission cache and OAuth-subject
396422
# cache are per-process, so OpenRAG must run with UVICORN_WORKERS=1 (and

0 commit comments

Comments
 (0)