{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://catalog.lintel.tools/schemas/schemastore/eidolon-resource/_shared/latest--DocumentManager.json",
  "title": "DocumentManager",
  "description": "Manages a collection of documents and provides search functionality. Automatically embeds and syncs documents (\nprovided by loader) into similarity memory where they can be searched.",
  "x-lintel": {
    "source": "https://www.eidolonai.com/json_schema/v1/schemas/DocumentManager/DocumentManager.json",
    "sourceSha256": "6d9c8b455fb49a1813ed2eb249934a3937ab1c544a031319116cc0001e11d684"
  },
  "type": "object",
  "properties": {
    "implementation": {
      "const": "DocumentManager",
      "title": "Implementation"
    },
    "name": {
      "description": "The name of the document manager (used to name database collections).",
      "title": "Name",
      "type": "string"
    },
    "recheck_frequency": {
      "default": 60,
      "description": "The number of seconds between checks.",
      "title": "Recheck Frequency",
      "type": "integer"
    },
    "loader": {
      "$ref": "https://catalog.lintel.tools/schemas/schemastore/eidolon-resource/_shared/latest--overview.json"
    },
    "concurrency": {
      "default": 8,
      "description": "The number of concurrent tasks to run.",
      "title": "Concurrency",
      "type": "integer"
    },
    "doc_processor": {
      "$ref": "https://catalog.lintel.tools/schemas/schemastore/eidolon-resource/_shared/latest--overview.json"
    }
  },
  "additionalProperties": false,
  "required": [
    "name",
    "implementation"
  ],
  "reference_details": {
    "clz": "eidolon_ai_sdk.agent.doc_manager.document_manager.DocumentManager",
    "groups": [
      "DocumentManager"
    ],
    "name": "DocumentManager",
    "overrides": {}
  }
}
