This commit is contained in:
João Moura
2024-07-03 18:40:19 -04:00
parent 58bbff124b
commit 62e662a690

View File

@@ -27,7 +27,7 @@ class OutputConverter(BaseModel, ABC):
llm: Any = Field(description="The language model to be used to convert the text.")
model: Any = Field(description="The model to be used to convert the text.")
instructions: str = Field(description="Conversion instructions to the LLM.")
max_attemps: Optional[int] = Field(
max_attempts: Optional[int] = Field(
description="Max number of attemps to try to get the output formated.",
default=3,
)