From d2df7e523cc234419b1999774bb26a49d26157c3 Mon Sep 17 00:00:00 2001 From: Catherine Jue Date: Mon, 6 Oct 2025 17:34:07 -0700 Subject: [PATCH] add protocol snippet to code --- proxies/custom.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/proxies/custom.mdx b/proxies/custom.mdx index 41afc97..179fd87 100644 --- a/proxies/custom.mdx +++ b/proxies/custom.mdx @@ -21,6 +21,7 @@ const kernel = new Kernel(); const proxy = await kernel.proxies.create({ type: 'custom', name: 'my-private-proxy', + protocol: 'https', config: { host: 'proxy.example.com', port: 443, @@ -41,6 +42,7 @@ client = kernel.Kernel() proxy = client.proxies.create( type='custom', name='my-private-proxy', + protocol='https', config={ 'host': 'proxy.example.com', 'port': 443,