diff --git a/404.html b/404.html index 36b8632b..b9c8ee74 100644 --- a/404.html +++ b/404.html @@ -4,7 +4,7 @@
Reset state by rebuilding all of your containers.
Your OpenSearch and Langflow databases will be lost.
-Documents stored in the ./documents directory will persist, since the directory is mounted as a volume in the OpenRAG backend container.
./openrag-documents directory will persist, since the directory is mounted as a volume in the OpenRAG backend container.
docker compose up --build --force-recreate --remove-orphans
Completely remove your OpenRAG installation and delete all data. diff --git a/index.html b/index.html index a3990e30..5b2a6342 100644 --- a/index.html +++ b/index.html @@ -4,7 +4,7 @@
The Knowledge Ingest flow uses Langflow's File component to split and embed files loaded from your local machine into the OpenSearch database.
-The default path to your local folder is mounted from the ./documents folder in your OpenRAG project directory to the /app/documents/ directory inside the Docker container. Files added to the host or the container will be visible in both locations. To configure this location, modify the Documents Paths variable in either the TUI's Advanced Setup menu or in the .env used by Docker Compose.
The default path to your local folder is mounted from the ./openrag-documents folder in your OpenRAG project directory to the /app/documents/ directory inside the Docker container. Files added to the host or the container will be visible in both locations. To configure this location, modify the Documents Paths variable in either the TUI's Advanced Setup menu or in the .env used by Docker Compose.
To load and process a single file from the mapped location, click Add Knowledge, and then click File. The file is loaded into your OpenSearch database, and appears in the Knowledge page.
To load and process a directory from the mapped location, click Add Knowledge, and then click Folder. diff --git a/quickstart/index.html b/quickstart/index.html index ed6186db..b7ad1c87 100644 --- a/quickstart/index.html +++ b/quickstart/index.html @@ -4,7 +4,7 @@
Click Add Knowledge to add your own documents to your OpenRAG knowledge base.
For this quickstart, use either the File or Folder upload options to load documents from your local machine.
Folder uploads an entire directory.
-The default directory is the /documents subdirectory in your OpenRAG installation directory.
/openrag-documents subdirectory in your OpenRAG installation directory.
For information about the cloud storage provider options, see Ingest files through OAuth connectors.
Control how OpenRAG processes and ingests documents into your knowledge base. For more information, see Ingestion.
-| Variable | Default | Description |
|---|---|---|
CHUNK_OVERLAP | 200 | Overlap between chunks. |
CHUNK_SIZE | 1000 | Text chunk size for document processing. |
DISABLE_INGEST_WITH_LANGFLOW | false | Disable Langflow ingestion pipeline. |
DOCLING_OCR_ENGINE | - | OCR engine for document processing. |
OCR_ENABLED | false | Enable OCR for image processing. |
OPENRAG_DOCUMENTS_PATHS | ./documents | Document paths for ingestion. |
PICTURE_DESCRIPTIONS_ENABLED | false | Enable picture descriptions. |
| Variable | Default | Description |
|---|---|---|
CHUNK_OVERLAP | 200 | Overlap between chunks. |
CHUNK_SIZE | 1000 | Text chunk size for document processing. |
DISABLE_INGEST_WITH_LANGFLOW | false | Disable Langflow ingestion pipeline. |
DOCLING_OCR_ENGINE | - | OCR engine for document processing. |
OCR_ENABLED | false | Enable OCR for image processing. |
OPENRAG_DOCUMENTS_PATHS | ./openrag-documents | Document paths for ingestion. |
PICTURE_DESCRIPTIONS_ENABLED | false | Enable picture descriptions. |
Configure Langflow authentication.
| Variable | Default | Description |
|---|---|---|
LANGFLOW_AUTO_LOGIN | False | Enable auto-login for Langflow. |
LANGFLOW_CHAT_FLOW_ID | pre-filled | This value is pre-filled. The default value is found in .env.example. |
LANGFLOW_ENABLE_SUPERUSER_CLI | False | Enable superuser CLI. |
LANGFLOW_INGEST_FLOW_ID | pre-filled | This value is pre-filled. The default value is found in .env.example. |
LANGFLOW_KEY | auto-generated | Explicit Langflow API key. |
LANGFLOW_NEW_USER_IS_ACTIVE | False | New users are active by default. |
LANGFLOW_PUBLIC_URL | http://localhost:7860 | Public URL for Langflow. |
LANGFLOW_SECRET_KEY | - | Secret key for Langflow internal operations. |
LANGFLOW_SUPERUSER | - | Langflow admin username. Required. |
LANGFLOW_SUPERUSER_PASSWORD | - | Langflow admin password. Required. |
LANGFLOW_URL | http://localhost:7860 | Langflow URL. |
NUDGES_FLOW_ID | pre-filled | This value is pre-filled. The default value is found in .env.example. |
SYSTEM_PROMPT | "You are a helpful AI assistant with access to a knowledge base. Answer questions based on the provided context." | System prompt for the Langflow agent. |