mirror of
https://github.com/openai/codex.git
synced 2026-04-30 11:21:34 +03:00
Python sdk
This commit is contained in:
12
sdk/python/src/openai_codex_sdk/codex_options.py
Normal file
12
sdk/python/src/openai_codex_sdk/codex_options.py
Normal 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
|
||||
Reference in New Issue
Block a user