From 18271321d3f63389a1a759eb53127b55c11f86fc Mon Sep 17 00:00:00 2001 From: Abdellah derfoufi <16905576+geekloper@users.noreply.github.com> Date: Fri, 4 Oct 2024 20:27:21 +0200 Subject: [PATCH] Docs : Add missing import in documentation example (#1016) Co-authored-by: Jason Liu --- docs/examples/planning-tasks.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/examples/planning-tasks.md b/docs/examples/planning-tasks.md index 6960c30c5..65d6e71c0 100644 --- a/docs/examples/planning-tasks.md +++ b/docs/examples/planning-tasks.md @@ -20,7 +20,8 @@ With the OpenAI Function Call model, you can customize the planning process and Let's define the necessary Pydantic models to represent the query plan and the queries. ```python -from typing import List +import enum +from typing import List, Literal from pydantic import Field, BaseModel