hydra-zen icon indicating copy to clipboard operation
hydra-zen copied to clipboard

Add Hydra + Pydantic How-To

Open rsokl opened this issue 1 year ago • 0 comments

Using the store decorator pattern makes this simple/trivial

from hydra_zen import store
from pydantic import BaseModel

@store(name="zoom", y="hi")
class Foo(BaseModel):
    x: int
    y: str

rsokl avatar Mar 25 '23 14:03 rsokl