Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/claude_agent_sdk/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,8 +324,8 @@ async def set_permission_mode(self, mode: PermissionMode) -> None:
- 'acceptEdits': Auto-accept file edits
- 'plan': Plan-only mode (no tool execution)
- 'bypassPermissions': Allow all tools (use with caution)
- 'dontAsk': Allow all tools without prompting
- 'auto': Automatically determine permission mode
- 'dontAsk': Deny anything not pre-approved by allow rules
- 'auto': A model classifier approves or denies each tool call
Example:
```python
Expand Down
4 changes: 2 additions & 2 deletions src/claude_agent_sdk/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ async def query(
- 'acceptEdits': Auto-accept file edits
- 'plan': Plan-only mode (no tool execution)
- 'bypassPermissions': Allow all tools (use with caution)
- 'dontAsk': Allow all tools without prompting
- 'auto': Automatically determine permission mode
- 'dontAsk': Deny anything not pre-approved by allow rules
- 'auto': A model classifier approves or denies each tool call
Set options.cwd for working directory.
transport: Optional transport implementation. If provided, this will be used
instead of the default transport selection based on options.
Expand Down
Loading