Skip to main content

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.

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
from ibm_watsonx_orchestrate_sdk import Client

client = Client(
    instance_url="http://localhost:4321",
    local=True
)
  • Local mode is intended for development use.
  • Authentication requirements are reduced.
  • Configuration depends on the local environment setup.

References