diff --git a/docs/examples/example.ipynb b/docs/examples/example.ipynb index 6369249b8..7e502d0d7 100644 --- a/docs/examples/example.ipynb +++ b/docs/examples/example.ipynb @@ -51,7 +51,7 @@ "\n", "async def connect() -> RobotClient:\n", " options = RobotClient.Options(dial_options=DialOptions(insecure=True, disable_webrtc=True), log_level=logging.FATAL)\n", - " return await RobotClient.at_address(\"localhost:9091\", options)" + " return await RobotClient.at_address(\"mymachine-main.0a1bcdefgi.local.viam.cloud\", options)" ] }, { @@ -133,7 +133,7 @@ "\n", "\n", "async def connect_with_channel() -> RobotClient:\n", - " async with await dial(\"localhost:9091\", DialOptions(insecure=True, disable_webrtc=True)) as channel:\n", + " async with await dial(\"mymachine-main.0a1bcdefgi.local.viam.cloud\", DialOptions(insecure=True, disable_webrtc=True)) as channel:\n", " return await RobotClient.with_channel(channel, RobotClient.Options(refresh_interval=10, log_level=logging.FATAL))\n", "\n", "\n",