From fb5679c1fc11d884da4f1d053b27bbe0c3afa748 Mon Sep 17 00:00:00 2001 From: "tembo-io[bot]" <208362400+tembo-io[bot]@users.noreply.github.com> Date: Wed, 1 Oct 2025 17:45:09 +0000 Subject: [PATCH 1/5] docs: add Computer Use (OpenAI) integration guide --- integrations/computer-use-openai.mdx | 32 ++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 integrations/computer-use-openai.mdx diff --git a/integrations/computer-use-openai.mdx b/integrations/computer-use-openai.mdx new file mode 100644 index 0000000..0a7f355 --- /dev/null +++ b/integrations/computer-use-openai.mdx @@ -0,0 +1,32 @@ +--- +title: "Computer Use (OpenAI)" +--- + +[Computer Use](https://platform.openai.com/docs/guides/computer-use) is OpenAI's feature that enables AI models to interact with computers like humans do - through screen observation, cursor movement, and keyboard input. By integrating with Kernel, you can run Computer Use automations with cloud-hosted browsers, allowing your AI agents to navigate websites, fill forms, and interact with web applications autonomously. + +## Quick setup with our Computer Use example app + +Get started quickly with our Kernel app template that includes a pre-configured Computer Use integration: + +```bash +npx @onkernel/create-kernel-app my-computer-use-app +``` + +Choose `TypeScript` as the programming language and then select `Computer Use (OpenAI)` as the template. + +Then follow the [Quickstart guide](/quickstart/) to deploy and run your Computer Use automation on Kernel's infrastructure. + +## Benefits of using Kernel with Computer Use + +- **No local browser management**: Run Computer Use automations without installing or maintaining browsers locally +- **Scalability**: Launch multiple browser sessions in parallel for concurrent automations +- **Stealth mode**: Built-in anti-detection features for web interactions +- **Session persistence**: Maintain browser state across automation runs +- **Live view**: Debug your automations with real-time browser viewing + +## Next steps + +- Check out [live view](/browsers/live-view) for debugging your automations +- Learn about [stealth mode](/browsers/stealth) for avoiding detection +- Learn how to properly [terminate browser sessions](/browsers/termination) +- Learn how to [deploy](/apps/deploy) your Computer Use app to Kernel From 07179de6eb47821b4b45aa50d2734a492e2c5c2d Mon Sep 17 00:00:00 2001 From: "tembo-io[bot]" <208362400+tembo-io[bot]@users.noreply.github.com> Date: Wed, 1 Oct 2025 20:08:38 +0000 Subject: [PATCH 2/5] docs(integrations): add computer-use-openai to docs navigation structure --- docs.json | 1 + 1 file changed, 1 insertion(+) diff --git a/docs.json b/docs.json index b7c0b19..b883a97 100644 --- a/docs.json +++ b/docs.json @@ -98,6 +98,7 @@ "group": "Integrations", "pages": [ "integrations/browser-use", + "integrations/computer-use-openai", "integrations/magnitude", "integrations/stagehand", "integrations/valtown", From a17993d251a0adb739004b5158ef7fa8bfcae720 Mon Sep 17 00:00:00 2001 From: Daniel Prevoznik Date: Wed, 1 Oct 2025 13:18:55 -0700 Subject: [PATCH 3/5] Moved openai computer use page Moved OpenAI computer use integration to solve merge conflict. --- docs.json | 3 ++- .../{computer-use-openai.mdx => computer-use/openai.mdx} | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) rename integrations/{computer-use-openai.mdx => computer-use/openai.mdx} (98%) diff --git a/docs.json b/docs.json index 20e0000..a89271b 100644 --- a/docs.json +++ b/docs.json @@ -101,7 +101,8 @@ { "group": "Computer Use", "pages": [ - "integrations/computer-use/anthropic" + "integrations/computer-use/anthropic", + "integrations/computer-use/openai" ] }, "integrations/magnitude", diff --git a/integrations/computer-use-openai.mdx b/integrations/computer-use/openai.mdx similarity index 98% rename from integrations/computer-use-openai.mdx rename to integrations/computer-use/openai.mdx index 0a7f355..b475203 100644 --- a/integrations/computer-use-openai.mdx +++ b/integrations/computer-use/openai.mdx @@ -1,5 +1,5 @@ --- -title: "Computer Use (OpenAI)" +title: "OpenAI" --- [Computer Use](https://platform.openai.com/docs/guides/computer-use) is OpenAI's feature that enables AI models to interact with computers like humans do - through screen observation, cursor movement, and keyboard input. By integrating with Kernel, you can run Computer Use automations with cloud-hosted browsers, allowing your AI agents to navigate websites, fill forms, and interact with web applications autonomously. From a3a25075f733c47737e6b101eb13722950e04064 Mon Sep 17 00:00:00 2001 From: "tembo-io[bot]" <208362400+tembo-io[bot]@users.noreply.github.com> Date: Wed, 1 Oct 2025 20:27:17 +0000 Subject: [PATCH 4/5] docs(computer-use): update OpenAI URLs and template instructions --- integrations/computer-use/openai.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integrations/computer-use/openai.mdx b/integrations/computer-use/openai.mdx index b475203..e8d7ebe 100644 --- a/integrations/computer-use/openai.mdx +++ b/integrations/computer-use/openai.mdx @@ -2,7 +2,7 @@ title: "OpenAI" --- -[Computer Use](https://platform.openai.com/docs/guides/computer-use) is OpenAI's feature that enables AI models to interact with computers like humans do - through screen observation, cursor movement, and keyboard input. By integrating with Kernel, you can run Computer Use automations with cloud-hosted browsers, allowing your AI agents to navigate websites, fill forms, and interact with web applications autonomously. +[Computer Use](https://platform.openai.com/docs/guides/tools-computer-use) is OpenAI's feature that enables AI models to interact with computers like humans do - through screen observation, cursor movement, and keyboard input. By integrating with Kernel, you can run Computer Use automations with cloud-hosted browsers, allowing your AI agents to navigate websites, fill forms, and interact with web applications autonomously. ## Quick setup with our Computer Use example app @@ -12,7 +12,7 @@ Get started quickly with our Kernel app template that includes a pre-configured npx @onkernel/create-kernel-app my-computer-use-app ``` -Choose `TypeScript` as the programming language and then select `Computer Use (OpenAI)` as the template. +Choose `TypeScript` or `Python` as the programming language and then select `CUA Sample` as the template. Then follow the [Quickstart guide](/quickstart/) to deploy and run your Computer Use automation on Kernel's infrastructure. From 6f43859f9f98a80dcd63aead3408a9b2caf276c7 Mon Sep 17 00:00:00 2001 From: "tembo-io[bot]" <208362400+tembo-io[bot]@users.noreply.github.com> Date: Wed, 1 Oct 2025 20:43:20 +0000 Subject: [PATCH 5/5] docs(computer-use): update documentation link for Computer Use feature --- integrations/computer-use/openai.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrations/computer-use/openai.mdx b/integrations/computer-use/openai.mdx index e8d7ebe..37d3d2a 100644 --- a/integrations/computer-use/openai.mdx +++ b/integrations/computer-use/openai.mdx @@ -2,7 +2,7 @@ title: "OpenAI" --- -[Computer Use](https://platform.openai.com/docs/guides/tools-computer-use) is OpenAI's feature that enables AI models to interact with computers like humans do - through screen observation, cursor movement, and keyboard input. By integrating with Kernel, you can run Computer Use automations with cloud-hosted browsers, allowing your AI agents to navigate websites, fill forms, and interact with web applications autonomously. +[Computer Use](https://openai.com/index/computer-using-agent/) is OpenAI's feature that enables AI models to interact with computers like humans do - through screen observation, cursor movement, and keyboard input. By integrating with Kernel, you can run Computer Use automations with cloud-hosted browsers, allowing your AI agents to navigate websites, fill forms, and interact with web applications autonomously. ## Quick setup with our Computer Use example app