viveka-env / models.py
gowtham-sai-yadav's picture
feat(submission): HF Space deployed + Blog.md + final shims + URLs wired
42a7f3f
Raw
History Blame Contribute Delete
691 Bytes
"""Top-level `models` shim for OpenEnv canonical layout.
Real implementation lives at `viveka.models`. This module re-exports the
core Pydantic schemas so that:
* `openenv push --validate` finds `models.py` at repo root
* `pip install git+https://huggingface.co/spaces/...` followed by
`from models import VivekaAction, VivekaObservation, VivekaState`
works without knowing the package name.
Do not add behaviour here. Edit `viveka/models.py` instead.
"""
from viveka.models import (
PendingConfirmation,
VivekaAction,
VivekaObservation,
VivekaState,
)
__all__ = [
"PendingConfirmation",
"VivekaAction",
"VivekaObservation",
"VivekaState",
]