Fix: add docstring to DocumentClassifierSchema for cleaner LLM tool description (#13315)

This commit is contained in:
Trenton H
2026-07-26 22:00:06 +00:00
committed by GitHub
parent ea1f3653a9
commit 318520a0f1
+2
View File
@@ -2,6 +2,8 @@ from pydantic import BaseModel
class DocumentClassifierSchema(BaseModel):
"""Schema for document classification suggestions."""
title: str
tags: list[str]
correspondents: list[str]