Spaces:
Sleeping
Sleeping
File size: 691 Bytes
42a7f3f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | """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",
]
|