Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tikendraw
/
open-o1
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
e4bde4c
open-o1
/
ten.py
tikendraw
second initial commit
22507c4
4 months ago
raw
Copy download link
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)