WebsitePlatform Login

Local Files

Configure local file system access

In meinGPT (UI)

Für die meisten Teams erfolgt die Einrichtung direkt in meinGPT, ohne lokale Config-Dateien.

  1. Öffne die Admin-Einstellungen in meinGPT
  2. Gehe zu Data Pools / Data Sources
  3. Klicke Add Source und wähle diesen Source-Typ
  4. Hinterlege Zugangsdaten und Scope im UI
  5. Speichere und starte den ersten Sync

Wenn Du keinen eigenen DataVault betreibst, ist das in der Regel ausreichend.

On-Prem Runtime Configuration (Advanced)

data_pools:
  - id: local
    type: local
    base_path: ./data

Configuration Options

FieldTypeDefaultRequiredDescription
idstring-Unique identifier for the data pool
typestring-Must be "local"
base_pathstring"./"Directory path to sync from

Synchronization

  • Vault scans base_path and syncs files into local ingest storage.
  • Changes are picked up in later sync runs (new/updated/deleted files).
  • Use read-only mounts when possible to reduce operational risk.

Docker Setup

docker-compose.yml
services:
  vault:
    volumes:
      - ./data:/data/vault              # Local directory
      - /mnt/network:/data/network:ro   # Network drive (read-only)

Basic Operations

# Add files to sync
mkdir -p data
cp your-documents.pdf data/

# Check processing
docker compose logs vault | grep -i local

Local File System Documentation

On-prem only: this source page is relevant when you operate your own DataVault runtime and configure data_pools yourself.

Auf dieser Seite