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
Copy file name to clipboardExpand all lines: dendrite_sdk/async_api/_core/dendrite_browser.py
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -92,23 +92,23 @@ def __init__(
92
92
remote_config: Optional[Providers] =None,
93
93
):
94
94
"""
95
-
Initializes the AsyncDendrite with API keys and Playwright options.
95
+
Initializes AsyncDendrite with API keys and Playwright options.
96
96
97
97
Args:
98
-
auth (Optional[Union[str, List[str]]]): The domains on which the browser should try and authenticate on.
99
-
openai_api_key (Optional[str], optional): The OpenAI API key. If not provided, it's fetched from the environment variables.
100
-
dendrite_api_key (Optional[str], optional): The Dendrite API key. If not provided, it's fetched from the environment variables.
101
-
anthropic_api_key (Optional[str], optional): The Anthropic API key. If not provided, it's fetched from the environment variables.
102
-
playwright_options (Any, optional): Options for configuring Playwright. Defaults to running in non-headless mode with stealth arguments.
98
+
auth (Optional[Union[str, List[str]]]): The domains on which the browser should try and authenticate.
99
+
dendrite_api_key (Optional[str]): The Dendrite API key. If not provided, it's fetched from the environment variables.
100
+
openai_api_key (Optional[str]): Your own OpenAI API key, provide it, along with other custom API keys, if you wish to use Dendrite without paying for a license.
101
+
anthropic_api_key (Optional[str]): The own Anthropic API key, provide it, along with other custom API keys, if you wish to use Dendrite without paying for a license.
102
+
playwright_options (Any): Options for configuring Playwright. Defaults to running in non-headless mode with stealth arguments.
103
103
104
104
Raises:
105
-
MissingApiKeyError: If any of the required API keys (Dendrite, OpenAI, Anthropic) are not provided or found in the environment variables.
105
+
MissingApiKeyError: If the Dendrite API key is not provided or found in the environment variables.
Copy file name to clipboardExpand all lines: dendrite_sdk/sync_api/_core/dendrite_browser.py
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -82,22 +82,22 @@ def __init__(
82
82
remote_config: Optional[Providers] =None,
83
83
):
84
84
"""
85
-
Initializes the Dendrite with API keys and Playwright options.
85
+
Initializes Dendrite with API keys and Playwright options.
86
86
87
87
Args:
88
-
auth (Optional[Union[str, List[str]]]): The domains on which the browser should try and authenticate on.
89
-
openai_api_key (Optional[str], optional): The OpenAI API key. If not provided, it's fetched from the environment variables.
90
-
dendrite_api_key (Optional[str], optional): The Dendrite API key. If not provided, it's fetched from the environment variables.
91
-
anthropic_api_key (Optional[str], optional): The Anthropic API key. If not provided, it's fetched from the environment variables.
92
-
playwright_options (Any, optional): Options for configuring Playwright. Defaults to running in non-headless mode with stealth arguments.
88
+
auth (Optional[Union[str, List[str]]]): The domains on which the browser should try and authenticate.
89
+
dendrite_api_key (Optional[str]): The Dendrite API key. If not provided, it's fetched from the environment variables.
90
+
openai_api_key (Optional[str]): Your own OpenAI API key, provide it, along with other custom API keys, if you wish to use Dendrite without paying for a license.
91
+
anthropic_api_key (Optional[str]): The own Anthropic API key, provide it, along with other custom API keys, if you wish to use Dendrite without paying for a license.
92
+
playwright_options (Any): Options for configuring Playwright. Defaults to running in non-headless mode with stealth arguments.
93
93
94
94
Raises:
95
-
MissingApiKeyError: If any of the required API keys (Dendrite, OpenAI, Anthropic) are not provided or found in the environment variables.
95
+
MissingApiKeyError: If the Dendrite API key is not provided or found in the environment variables.
0 commit comments