Python sdk

This commit is contained in:
pakrym-oai
2025-09-30 14:35:22 -07:00
parent c89b0e1235
commit e05f333e55
19 changed files with 1213 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
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