Skip to content

Latest commit

 

History

History
43 lines (26 loc) · 1.4 KB

File metadata and controls

43 lines (26 loc) · 1.4 KB
title Quickstart: Copilot Cloud
description Using Copilot Cloud

Cloud Setup

  1. Sign up for Copilot Cloud, and then sign in.

  2. After signup, follow the on-screen Copilot Cloud onboarding to configure your cloud, e.g. by providing the OpenAI API Key to be used by Copilot Cloud.

  3. Lastly, copy your Copilot Cloud Public API Key.

Use the cloud-hosted Copilot Runtime

Copilot Cloud offers a hosted version of the Copilot Runtime.

Simply point your CopilotKit wrapper at your Copilot Cloud instance using your Copilot Cloud public API key:

(for more detail about the CopilotKit wrapper, see Quickstart-Chatbot or Quickstart-Textarea)

<CopilotKit publicApiKey="Your Copilot Cloud API key">
  <YourApp/>
</CopilotKit>

Use cloud-native features

You can now make use of any feature whose name in the SDK is prefixed by cloud.

You don't need any extra setup, those features just work when Copilot Cloud is used.

e.g. see cloudRestrictToTopic - to keep the chatbot narrowly focused on a specific purpose (or disallow certain topics) (see CopilotKit props).