From bc423ed90f996224ef790ef3e844617535ccff04 Mon Sep 17 00:00:00 2001 From: Mendon Kissling <59585235+mendonk@users.noreply.github.com> Date: Thu, 9 Oct 2025 18:58:13 -0400 Subject: [PATCH] docling-serve-hyphen --- docs/docs/core-components/ingestion.mdx | 6 +++--- docs/docs/get-started/docker.mdx | 3 +-- docs/docs/get-started/tui.mdx | 4 ++-- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/docs/docs/core-components/ingestion.mdx b/docs/docs/core-components/ingestion.mdx index 0a9df0bc..f7b2cfb0 100644 --- a/docs/docs/core-components/ingestion.mdx +++ b/docs/docs/core-components/ingestion.mdx @@ -9,7 +9,7 @@ import TabItem from '@theme/TabItem'; import PartialModifyFlows from '@site/docs/_partial-modify-flows.mdx'; OpenRAG uses [Docling](https://docling-project.github.io/docling/) for its document ingestion pipeline. -More specifically, OpenRAG uses [Docling Serve](https://github.com/docling-project/docling-serve), which starts a `docling-serve` process on your local machine and runs Docling ingestion through an API service. +More specifically, OpenRAG uses [Docling Serve](https://github.com/docling-project/docling-serve), which starts a `docling serve` process on your local machine and runs Docling ingestion through an API service. Docling ingests documents from your local machine or OAuth connectors, splits them into chunks, and stores them as separate, structured documents in the OpenSearch `documents` index. @@ -19,8 +19,8 @@ OpenRAG chose Docling for its support for a wide variety of file formats, high p These settings configure the Docling ingestion parameters. -OpenRAG will warn you if `docling-serve` is not running. -To start or stop `docling-serve` or any other native services, in the TUI main menu, click **Start Native Services** or **Stop Native Services**. +OpenRAG will warn you if `docling serve` is not running. +To start or stop `docling serve` or any other native services, in the TUI main menu, click **Start Native Services** or **Stop Native Services**. **Embedding model** determines which AI model is used to create vector embeddings. The default is `text-embedding-3-small`. diff --git a/docs/docs/get-started/docker.mdx b/docs/docs/get-started/docker.mdx index 5de13fcb..366d71de 100644 --- a/docs/docs/get-started/docker.mdx +++ b/docs/docs/get-started/docker.mdx @@ -90,9 +90,8 @@ The following values are **required** to be set: docker compose up -d ``` - For CPU-only systems, run the following commands: + For environments without GPU support, run: ```bash - docker compose -f docker-compose-cpu.yml build docker compose -f docker-compose-cpu.yml up -d ``` diff --git a/docs/docs/get-started/tui.mdx b/docs/docs/get-started/tui.mdx index 0a27a1e8..7691430b 100644 --- a/docs/docs/get-started/tui.mdx +++ b/docs/docs/get-started/tui.mdx @@ -51,9 +51,9 @@ If images are missing, the TUI runs `docker compose pull`, then runs `docker com ### Start native services A "native" service in OpenRAG refers to a service run natively on your machine, and not within a container. -The `docling-serve` process is a native service in OpenRAG, because it's a document processing service that is run on your local machine, and controlled separately from the containers. +The `docling serve` process is a native service in OpenRAG, because it's a document processing service that is run on your local machine, and controlled separately from the containers. -To start or stop `docling-serve` or any other native services, in the TUI main menu, click **Start Native Services** or **Stop Native Services**. +To start or stop `docling serve` or any other native services, in the TUI main menu, click **Start Native Services** or **Stop Native Services**. To view the status, port, or PID of a native service, in the TUI main menu, click [Status](#status).