mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-10-20 03:06:10 -05:00
11 lines
245 B
Python
11 lines
245 B
Python
from llama_index.core.bridge.pydantic import BaseModel
|
|
|
|
|
|
class DocumentClassifierSchema(BaseModel):
|
|
title: str
|
|
tags: list[str]
|
|
correspondents: list[str]
|
|
document_types: list[str]
|
|
storage_paths: list[str]
|
|
dates: list[str]
|