> ## Documentation Index
> Fetch the complete documentation index at: https://developer.watson-orchestrate.ibm.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Local

## Overview

Local mode is used for development and testing. It allows agents to run with local configuration without requiring full runtime integration.

### Configuration

Local mode uses a local instance URL and simplified authentication settings. It is intended for development workflows and testing scenarios.

#### Example

```python PYTHON [expandable] theme={null}
from ibm_watsonx_orchestrate_sdk import Client

client = Client(
    instance_url="http://localhost:4321",
    local=True
)
```

<Note>
  * Local mode is intended for development use.
  * Authentication requirements are reduced.
  * Configuration depends on the local environment setup.
</Note>

### References

* [Client](/sdk/client)
* [Chat models](/sdk/chat_wxo)
