Webinar: Build Full Stack Agents

  1 <CopilotKit publicApiKey="yourPublicKey">
  2   <CopilotSidebar>
  3     <YourApp />
  4   </CopilotSidebar>
  5 </CopilotKit>


  1 useCopilotReadable({
  2   description: "The current spreadsheet",
  3   value: spreadsheetData,
  4 });


  1 useCopilotAction({
  2   name: "sortHouseListings",
  3   description: "Sort the displayed house listings",
  4   parameters: [
  5     {
  6       name: "columnId",
  7       type: "string",
  8       description: "The ID of the column to sort on",
  9      },
  10    ],
  11   handler: async ({columnId, sortDirection}) => {
  12     sortColumn(columnId, sortDirection);
  13    },
  14  });


  1 <CopilotKit coAgent="taxFilingAgent">
  2   <YourTaxFilingApp />
  3 </CopilotKit>

More features will be available soon:

CoAgents,
Chat Histories,
Realtime RAG,
Memory,
Knowledge Bases,
And more...