Spaces:
Running
Running
File size: 129 Bytes
b8cdbfb |
1 2 3 4 5 6 7 8 9 |
from dataclasses import dataclass
from typing import Optional
@dataclass
class OpenAICred:
key: str
org: Optional[str]
|