open-o1 / ten.py
tikendraw's picture
second initial commit
22507c4
raw
history blame
246 Bytes
from dataclasses import dataclass
@dataclass
class ThoughtSteps:
step_title:str
thought:str
answer:str
critic:str
t = ThoughtSteps(step_title="test", thought="thought", answer="answer", critic="critic")
print(t)