mirror of
https://github.com/openai/codex.git
synced 2026-04-28 18:32:04 +03:00
13 lines
261 B
Python
13 lines
261 B
Python
from __future__ import annotations
|
|
|
|
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass(slots=True)
|
|
class CodexOptions:
|
|
"""Configuration for creating a ``Codex`` client."""
|
|
|
|
executable_path: str
|
|
base_url: str | None = None
|
|
api_key: str | None = None
|