Skip to main content

Foil Serve 🏄‍♂️

Document → Markdown conversion server, built on PaddleOCR — with meaningful extras.

Foil Serve is a FastAPI server that converts common document formats to structured Markdown. It uses PaddleOCR-VL-1.5 as its OCR backbone, served via vLLM, and adds several practical improvements for LLM/RAG workflows.


✨ What's on top of PaddleOCR

🖼️ External VLM image description

Extracted figures can be described by any OpenAI-compatible VLM of your choice. The description is injected directly into the Markdown inside a proper <figcaption> tag, keeping the output clean and semantically structured.

📊 HTML table simplification and Markdown conversion

PaddleOCR outputs verbose HTML tables. foil-serve post-processes each table in two steps:

  1. Clean — strip redundant formatting attributes and normalize whitespace (3–5× token reduction).
  2. Convert to Markdown — if the table structure is simple enough (no merged cells, no nested tables, no multi-level header, consistent column count), it is rendered as a plain Markdown pipe table. Complex tables that cannot be represented without semantic loss stay as cleaned HTML.

The output format for Markdown tables is controlled by table_output_format in server_config.toml ("llm" compact or "human" aligned — same setting as for spreadsheet tables).

📁 Extended input format support

Format Conversion Post-processing
.txt, .json, .csv, .xml, .md Pass-through (smart encoding detection)
.pdf, .png, .jpg, .bmp PaddleOCR-VL natively HTML tables → Markdown or simplified HTML, optional VLM image description
.tiff (incl. multi-page), .webp Pillow → PDF → PaddleOCR-VL HTML tables → Markdown or simplified HTML, optional VLM image description
.xls, .xlsx, .ods Pandas → Markdown tables (optional fallback: LibreOffice → PDF → PaddleOCR-VL) Cell error masking, output size guard
.docx, .doc, .pptx, .ppt, .odt, .odp LibreOffice → PDF → PaddleOCR-VL HTML tables → Markdown or simplified HTML, optional VLM image description

PDF conversion: when converting .docx and .doc files to PDF via LibreOffice, tracked changes (revisions) are automatically accepted, so the output reflects the final state of the document. Inline comments are not captured in the conversion.

Spreadsheet processing: cell errors (#REF!, #N/A, nan, etc.) are detected and masked by default. Legacy-encrypted .xls files (empty password) are automatically converted to .xlsx via LibreOffice before processing. When a spreadsheet produces very little cell data (e.g. content is mostly text boxes or images), foil-serve can fall back to PDF+OCR conversion via LibreOffice (configurable paper format and orientation, default A3 landscape, fit-to-width). This fallback is enabled by default but can be disabled via excel_pdf_fallback_enabled. Output size is capped relative to input size (HTTP 413 if exceeded). Empty spreadsheets (no cell data at all) return HTTP 422 when the fallback is disabled. The Markdown table format (table_output_format: "llm" compact or "human" aligned) applies to both spreadsheet tables and HTML tables converted from the OCR pipeline.

Markdown files with HTML tables: some Markdown files (e.g. outputs from other conversion tools) contain embedded HTML tables and are misdetected as text/html by libmagic. foil-serve applies a heuristic (_detect_md) to distinguish these from real HTML pages: if no HTML document root markers (<!DOCTYPE html>, <html>, <head>, <body>) are found but Markdown structural elements are present (headings, lists, links), the file is treated as Markdown and passed through unchanged. Real HTML pages remain unsupported and are rejected with HTTP 422.

OOXML detection fallback: some .docx, .xlsx, and .pptx files are misidentified as application/octet-stream by libmagic. foil-serve inspects the ZIP structure ([Content_Types].xml) to resolve the actual OOXML type automatically.

Only MIME types listed in utils.mime_def are accepted.

Support for additional formats is welcome — contributions are open 🙌


🔌 API Endpoints

Endpoint Method Description
/docs GET Interactive Swagger documentation (offline-enabled)
/v1/process POST Convert document to Markdown + extract images (JSON response)
/v1/process/download POST Same as above but returns a tar.zst archive
/v1/vlm_models GET List available VLM models for image description
/health GET Server health check, optionally validates VLM endpoints

POST /v1/process

Request: raw file bytes (application/octet-stream) + optional query params:

  • image_description_model_name: name of the VLM model to use for image description (see /v1/vlm_models)

Response (ProcessedDocument):

{
  "page_content": "# Markdown content ...",
  "images": {
    "page_1_figure_1.jpg": "<base64 JPEG>"
  },
  "metadata": {
    "active_conversion_time_no_img_desc": 12,
    "img_desc_time": 20,
    "wall_clock_time": 18
  }
}

Response metadata fields

Field Type Description
active_conversion_time_no_img_desc int (seconds) Accumulated active CPU/GPU time for document→Markdown conversion. Excludes semaphore wait times and VLM image description time.
img_desc_time int (seconds) Accumulated active time for VLM image description calls. Sum of individual call durations (does not account for concurrency).
wall_clock_time int (seconds) Total wall-clock latency as seen by the client (includes all waits).

🚀 Installation & running

Requirements

  • NVIDIA GPU with CUDA 13.0 (may work on other devices but untested)

  • PaddleOCR-VL-1.5 served via an OpenAI-compatible endpoint (vLLM recommended — see ./docker)

Option 1 — Native (tested on Ubuntu)

Install system dependancies:

  • Python 3.13 (can be automatically installed by uv )
  • uv for python dependency management
  • System packages (for Ubuntu 24.04):
    apt install -y --no-install-recommends \
        libgl1 \
        libreoffice \
        libmagic1t64 \
        fontconfig \
        fonts-dejavu-core \
        fonts-liberation \
        fonts-noto-cjk \
        fonts-wqy-microhei \
        fonts-freefont-ttf
    # On Ubuntu <= 22.04 use 'libmagic1' instead of 'libmagic1t64'
    # Not tested on non-Debian based linux.
    

Install and run the app:

uv sync --no-dev

# Make sure the user running the app can write to the log/artifact files (defaults are /var/log/foil/)
# sudo mkdir -p /var/log/foil && sudo chown <user> /var/log/foil

uv run --no-sync src/foil_serve/main.py  # default listening on 0.0.0.0:8081
# or
cd src/foil_serve && uv run --no-sync uvicorn main:app --host 0.0.0.0 --port 8081

uvicorn is included in the project dependencies — no separate installation needed.

Option 2 — Docker (air-gapped)

A ready-to-use stack (foil-serve + 2× vLLM services) is available in ./docker.
Paddle native models are included in the foil-serve -offline image, but you will still need to download the models for the vllm servers (PaddleOCR-VL-1.5 and any model used for image description).

Run the docker stack

cd docker/
docker compose up -d

⚙️ Configuration

  • pipeline_config.yaml — PaddleOCR-VL-1.5 pipeline settings. Update the vLLM URL to point to your model endpoint. Other pipeline settings can be changed at your own risk 😉.
  • server_config.toml — API keys, VLM model definitions, prompts, resource limits, spreadsheet processing options, and OCR output control.

VLM model config (server_config.toml)

[[vlm_models]]
enabled = true
name = "my-model"               # used as `image_description_model_name` query param
url = "http://host:port/v1"
endpoint_name = "org/model-id"  # exact model name for the OpenAI endpoint
endpoint_api_key = "sk-..."
temperature = 0.0
max_output_tokens = 4000
max_input_ocr_length = 700      # max chars of OCR text injected into the VLM prompt
min_size = [64, 64]             # minimum image dimensions to process (pixels)
max_concurrent_requests = 10
prompt = "default"              # key from [prompts] section or a direct prompt string
extra_body = {chat_template_kwargs = {enable_thinking = false}} # optional extra body parameter (e.g. disable thinking on vllm)

OCR output control (server_config.toml)

Controls whether <ocr> tags (Paddle OCR text on images) appear in the final Markdown:

Setting Default Description
output_paddle_ocr false When VLM image description is requested: keep <ocr> tags alongside <figcaption>.
output_paddle_ocr_no_img_desc true When no VLM is requested: keep <ocr> tags. If false, the OCR-on-images pipeline step is skipped entirely (performance optimization).

When both OCR output and VLM are disabled, <figcaption> tags are omitted, and the image-block OCR step is skipped, reducing processing time.


⚠️ Known limitations

Images without text

If an image-only document contains no text, the Paddle pipeline may produce sparse Markdown (without even referencing the image), causing the VLM description step to be skipped. This server is not recommended for pure image description use cases.

Embedded objects in spreadsheets

Only cell content is extracted from spreadsheet files. Embedded images, charts, and text boxes are ignored. When the extracted cell content is too sparse, foil-serve falls back to PDF+OCR, which may capture some visual elements but with lower fidelity.

Upside-down images

Extracted images may be rotated relative to the original document.

PDF conversion

Office documents (excluding spreadsheets) are converted to PDF before OCR. This can occasionally cause rendering issues (e.g., overlapping text).


🛠️ Developer notes

Memory management & worker recycling

PaddleOCR is not thread-safe and leaks GPU/CPU memory over time. The current workaround uses a spawn-based multiprocessing pool (processes=1) that recycles the worker process every N documents (max_tasks_between_pipeline_reload in server_config.toml, default 5). Each recycle takes a few seconds while the pipeline reloads.

The root cause of the memory leak has not been fully identified — feel free to investigate 🔍

Why vLLM for PaddleOCR-VL-1.5

Running PaddleOCR-VL-1.5 natively proved problematic (Exception from the 'vlm' worker: only 0-dimensional arrays can be converted to Python scalars). The model is instead served via vLLM through an OpenAI-compatible endpoint. This also benefits from faster inference compared to the native Paddle runtime, and greatly reduces wasted time during worker recycling.

Debug artifact saving

When save_failed_artifacts = true in server_config.toml, any processing failure creates a timestamped subdirectory under failed_artifacts_dir (default /foil-log/failed):

<yy-mm-dd_hh-mm>_<mime-type>/
  input_file.<ext>     — copy of the input file
  converted.pdf        — intermediate PDF (if conversion happened before the error)
  partial_output.md    — last markdown state (if the pipeline ran before the error)
  meta.txt             — app version, mime, timing, sha256, RAM/VRAM/CPU state
  trace.txt            — full exception traceback

This directory is not automatically cleaned up — manage disk space manually.

Additional artifact types can be enabled independently:

  • save_table_conversion_artifacts: saves input spreadsheet + generated PDF when sparse fallback triggers.
  • save_cell_error_artifacts: saves Markdown before/after error masking when cell errors are detected.

LibreOffice UNO transport (Unix domain socket)

The persistent LibreOffice server is reached over a UNO pipe, which on Linux is a Unix domain socket — no TCP port is exposed. The pipe name is unique per start and namespaced with foil_soffice_; the osl library creates the socket under /tmp (OSL_PIPE_<euid>_foil_soffice_<pid>_<rnd>). foil-serve does not hard-code that location: the real socket path is resolved from the kernel via /proc/net/unix, matched by the unique pipe name (see _resolve_socket_path() in libreoffice.py).

Deployment notes (relevant for non-root containers):

  • The app must be able to write to /tmp (the default 1777 permissions are fine) — that's where osl places the socket, and it ignores $TMPDIR.
  • The soffice server and the UNO client run under the same UID (same process tree), so the socket's owner-only write bit is sufficient — no cross-user access is involved.
  • Residual sockets left by a hard crash are cleaned up automatically at startup: within the resolved socket directory, any foil_soffice_* socket with no live listener is unlinked (a socket still accepting connections — e.g. another instance — is left untouched). See _sweep_dead_pipes() in libreoffice.py.

Single uvicorn worker

Foil Serve is not compatible with multiple uvicorn worker (because of the way we spawn and kill the LibreOffice server). This should not be too hard to solve, but I don't expect uvicorn worker to be the bottleneck.

The UNO pipe name is already unique per process. Making it multi-worker-safe would additionally require namespacing each worker:

  • a per-worker LibreOffice profile (-env:UserInstallation=file://<per-worker dir>) — otherwise LibreOffice's SingleOfficeIPC mechanism routes every worker to a single soffice instance;
  • a per-worker PID file (the current soffice.pid path is shared).

If extra ressources are available and scaling is required, it would probably be better to try increasing the number of paddle pipeline.


🙏 Acknowledgements

foil-serve would not exist without:

  • PaddleOCR / PaddlePaddle — the OCR backbone powering document understanding.
  • LibreOffice — handling Office format conversion. Running headless, doing its job without complaint.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

foil_serve-0.1.4.tar.gz (230.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

foil_serve-0.1.4-py3-none-any.whl (92.9 kB view details)

Uploaded Python 3

File details

Details for the file foil_serve-0.1.4.tar.gz.

File metadata

  • Download URL: foil_serve-0.1.4.tar.gz
  • Upload date:
  • Size: 230.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for foil_serve-0.1.4.tar.gz
Algorithm Hash digest
SHA256 540bc44091d2e858babf4a309f357881091402547d176c0b46221e4483b05606
MD5 8f7e4455580a0a50fc73f4fb6aacfd58
BLAKE2b-256 720aa70f8db4e126c6ea1abcdf72a72d874cb280704730d6ee356f97670406eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for foil_serve-0.1.4.tar.gz:

Publisher: pypi-publish.yaml on runyournode/Foil-Serve

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file foil_serve-0.1.4-py3-none-any.whl.

File metadata

  • Download URL: foil_serve-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 92.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for foil_serve-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 b2c8d6be6cbe9877625cd26f87aa7854d442cf857d202cf61c900313ee8f7e74
MD5 ee7670f49dadaee5fca8ecd33911a5b1
BLAKE2b-256 810faab5ce295efc8c865fdb8466c9aa861a3299adb11db499e6a3a42397ca8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for foil_serve-0.1.4-py3-none-any.whl:

Publisher: pypi-publish.yaml on runyournode/Foil-Serve

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.1.5

2 files

This release

0.1.4 This release

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page