CoolFace
Apppublic

Jaswin-27/MetaXSCALER_Hackathon

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
test_models.py7 linesDownload Raw Back to root
1from models import State, Action, StepResult
2
3s = State(energy=100, money=0, happiness=50, day=1)
4a = Action(type="work")
5
6print(s)
7print(a)