{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://catalog.lintel.tools/schemas/schemastore/eidolon-resource/_shared/latest--LocalFileMemory.json",
  "title": "LocalFileMemory",
  "description": "Retrieve documents from a local file system. Note that this is the file system where the Eidolon application is\nrunning. This means building the files onto the runtime image, or mounting a volume to the container.\n\n[Docker volume](https://docs.docker.com/engine/storage/volumes/#use-a-volume-with-docker-compose)\n[Build the files into the runtime image](https://docs.docker.com/reference/dockerfile/#copy)\n[Kubernetes volumes](https://kubernetes.io/docs/concepts/storage/volumes/)",
  "x-lintel": {
    "source": "https://www.eidolonai.com/json_schema/v1/schemas/FileMemory/LocalFileMemory.json",
    "sourceSha256": "190d89c1510c8ed114ad639ebf5d3451c77b59718205c631c35e0a5bbf2467c3"
  },
  "type": "object",
  "properties": {
    "implementation": {
      "const": "LocalFileMemory",
      "title": "Implementation"
    },
    "root_dir": {
      "default": "/tmp/eidolon/file_memory",
      "description": "The root directory to store files in.",
      "title": "Root Dir",
      "type": "string"
    }
  },
  "additionalProperties": false,
  "required": [
    "implementation"
  ],
  "reference_details": {
    "clz": "eidolon_ai_sdk.memory.local_file_memory.LocalFileMemory",
    "groups": [
      "FileMemory"
    ],
    "name": "LocalFileMemory",
    "overrides": {}
  }
}
