Pydantic Field Description #719
-
Hi, I'm using hydra-zen (which is great btw) and defining my config classes as Pydantic BaseModels. Is there any way to make it so that the e.g. class Config(BaseModel):
batch_size: Annotated[
int, Field(description="The number of samples per model training step")
] = 256 currently produces the help message
Is there any way to make is so that something like
is produced? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
At this point hydra-zen does not control anything about what gets displayed at the CLI. This is all Hydra. hydra-zen may start to take charge here as Hydra is no longer actively maintained, but I have not been planning on taking on this feature in the near term. |
Beta Was this translation helpful? Give feedback.
At this point hydra-zen does not control anything about what gets displayed at the CLI. This is all Hydra. hydra-zen may start to take charge here as Hydra is no longer actively maintained, but I have not been planning on taking on this feature in the near term.