You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[`Client.create_project()`](/codex/api/python/client#method-create_project), or [`Project.from_access_key()`](/codex/api/python/project#classmethod-from_access_key) methods.
53
53
54
54
Args:
55
-
sdk_client (_Codex): The Codex SDK client to use to interact with the project.
55
+
sdk_client (Codex): The Codex SDK client to use to interact with the project.
56
56
project_id (str): The ID of the project.
57
57
verify_existence (bool, optional): Whether to verify that the project exists.
"""Create a new Codex project. This method is not meant to be used directly. Instead, use the [`create_project`](/codex/api/python/client#method-create_project) method on the `Client` class.
93
93
94
94
Args:
95
-
sdk_client (_Codex): The Codex SDK client to use to create the project. This client must be authenticated with a user-level API key.
95
+
sdk_client (Codex): The Codex SDK client to use to create the project. This client must be authenticated with a user-level API key.
96
96
organization_id (str): The ID of the organization to create the project in.
97
97
name (str): The name of the project.
98
-
description (:obj:`str`, optional): The description of the project.
98
+
description (str, optional): The description of the project.
0 commit comments