This commit is contained in:
João Moura
2024-07-06 00:34:50 -04:00
parent 42708d60bc
commit b65eee45a8

View File

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