Skip to content

Commit

Permalink
update structure
Browse files Browse the repository at this point in the history
  • Loading branch information
luyaxi committed Aug 21, 2024
1 parent 357bc2a commit 612fd05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions codelinker/models/structuredRet.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from pydantic import BaseModel,Field

from typing import Any

class StructureSchema(BaseModel):
name: str
Expand All @@ -8,4 +8,4 @@ class StructureSchema(BaseModel):

class StructuredRet(BaseModel):
name: str = Field(description="Name of the structured return")
content: dict = Field(description="Content of the structured return")
content: Any = Field(description="Content of the structured return")

0 comments on commit 612fd05

Please sign in to comment.