{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://catalog.lintel.tools/schemas/schemastore/eidolon-resource/_shared/latest--ChromaVectorStore.json",
  "title": "ChromaVectorStore",
  "x-lintel": {
    "source": "https://www.eidolonai.com/json_schema/v1/schemas/VectorStore/ChromaVectorStore.json",
    "sourceSha256": "c3c4bad1fd9410616c6001ba67131c2b37621082322d31386c21fbb5a9483ee8"
  },
  "type": "object",
  "properties": {
    "implementation": {
      "const": "ChromaVectorStore",
      "title": "Implementation"
    },
    "root_document_directory": {
      "default": "vector_memory",
      "description": "The root directory where the vector memory will store documents.",
      "title": "Root Document Directory",
      "type": "string"
    },
    "url": {
      "default": "file://${EIDOLON_DATA_DIR}/doc_producer",
      "description": "The url of the chroma database. Use http(s)://$HOST:$PORT?header1=value1&header2=value2 to pass headers to the database.Use file://$PATH to use a local file database.",
      "title": "Url",
      "type": "string"
    }
  },
  "additionalProperties": false,
  "required": [
    "implementation"
  ],
  "reference_details": {
    "clz": "eidolon_ai_sdk.memory.chroma_vector_store.ChromaVectorStore",
    "groups": [
      "VectorStore"
    ],
    "name": "ChromaVectorStore",
    "overrides": {}
  }
}
