From 5b3e4b34afc6bc06a89d68e6525993dc7ada8ae0 Mon Sep 17 00:00:00 2001 From: Jacob Arnould Date: Sat, 6 Jan 2024 22:31:25 +0100 Subject: [PATCH] Update fields.md - fix typo, missing comma (#329) --- docs/concepts/fields.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts/fields.md b/docs/concepts/fields.md index 73d8805..4f9523d 100644 --- a/docs/concepts/fields.md +++ b/docs/concepts/fields.md @@ -68,7 +68,7 @@ from datetime import date class DateRange(BaseModel): chain_of_thought: str = Field( - description="Reasoning behind the date range." + description="Reasoning behind the date range.", exclude=True) start_date: date end_date: date