mirror of
https://github.com/mindverse/Second-Me.git
synced 2026-07-25 00:53:29 +00:00
12 lines
No EOL
282 B
Python
12 lines
No EOL
282 B
Python
from typing import List, Dict, Optional, Union, Any
|
|
import json
|
|
from dataclasses import dataclass, field
|
|
from enum import Enum
|
|
|
|
|
|
class Status(Enum):
|
|
PENDING = "pending"
|
|
IN_PROGRESS = "in_progress"
|
|
COMPLETED = "completed"
|
|
FAILED = "failed"
|
|
SUSPENDED = "suspended" |