Hi, thanks for this great library.
I'm trying to generate a fragment with descriptions but it gives the code like:
class UserFragment(BaseModel):
username: str
"A login ID"
Is there an option to generate a description rather than docstring?
class UserFragment(BaseModel):
username: str = Field(description="A login ID")
Hi, thanks for this great library.
I'm trying to generate a fragment with descriptions but it gives the code like:
Is there an option to generate a description rather than docstring?