Spaces:
Sleeping
Sleeping
| """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", | |
| ] | |