Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@copilotkit/react-ui

CopilotKit151.4kMIT1.10.6TypeScript support: included

banner

copilotkit, copilot, react, nextjs, nodejs, ai, assistant, javascript, automation, textarea

readme

CopilotKit - React UI

banner

✨ Why CopilotKit?

  • Minutes to integrate - Get started quickly with our CLI
  • Framework agnostic - Works with React, Next.js, AGUI and more
  • Production-ready UI - Use customizable components or build with headless UI
  • Built-in security - Prompt injection protection
  • Open source - Full transparency and community-driven
class-support-ecosystem

🧑‍💻 Real life use cases

Deploy deeply-integrated AI assistants & agents that work alongside your users inside your applications.

headless-ui

🖥️ Code Samples

Drop in these building blocks and tailor them to your needs.

Build with Headless APIs and Pre-Built Components

// Headless UI with full control
const { visibleMessages, appendMessage, setMessages, ... } = useCopilotChat();

// Pre-built components with deep customization options (CSS + pass custom sub-components)
<CopilotPopup 
  instructions={"You are assisting the user as best as you can. Answer in the best way possible given the data you have."} 
  labels={{ title: "Popup Assistant", initial: "Need any help?" }} 
/>
// Frontend actions + generative UI, with full streaming support
useCopilotAction({
  name: "appendToSpreadsheet",
  description: "Append rows to the current spreadsheet",
  parameters: [
    { name: "rows", type: "object[]", attributes: [{ name: "cells", type: "object[]", attributes: [{ name: "value", type: "string" }] }] }
  ],
  render: ({ status, args }) => <Spreadsheet data={canonicalSpreadsheetData(args.rows)} />,
  handler: ({ rows }) => setSpreadsheet({ ...spreadsheet, rows: [...spreadsheet.rows, ...canonicalSpreadsheetData(rows)] }),
});

Integrate In-App CoAgents with LangGraph

// Share state between app and agent
const { agentState } = useCoAgent({ 
  name: "basic_agent", 
  initialState: { input: "NYC" } 
});

// agentic generative UI
useCoAgentStateRender({
  name: "basic_agent",
  render: ({ state }) => <WeatherDisplay {...state.final_response} />,
});

// Human in the Loop (Approval)
useCopilotAction({
  name: "email_tool",
  parameters: [
    {
      name: "email_draft",
      type: "string",
      description: "The email content",
      required: true,
    },
  ],
  renderAndWaitForResponse: ({ args, status, respond }) => {
    return (
      <EmailConfirmation
        emailContent={args.email_draft || ""}
        isExecuting={status === "executing"}
        onCancel={() => respond?.({ approved: false })}
        onSend={() =>
          respond?.({
            approved: true,
            metadata: { sentAt: new Date().toISOString() },
          })
        }
      />
    );
  },
});
// intermediate agent state streaming (supports both LangGraph.js + LangGraph python)
const modifiedConfig = copilotKitCustomizeConfig(config, {
  emitIntermediateState: [{ 
    stateKey: "outline", 
    tool: "set_outline", 
    toolArgument: "outline" 
  }],
});
const response = await ChatOpenAI({ model: "gpt-4o" }).invoke(messages, modifiedConfig);

Documentation

To get started with CopilotKit, please check out the documentation.

changelog

ui

1.10.6

Patch Changes

1.10.6-next.6

Patch Changes

1.10.6-next.5

Patch Changes

1.10.6-next.4

Patch Changes

1.10.6-next.3

Patch Changes

1.10.6-next.2

Patch Changes

1.10.6-next.1

Patch Changes

1.10.6-next.0

Patch Changes

1.10.5

Patch Changes

1.10.5-next.10

Patch Changes

1.10.5-next.9

Patch Changes

1.10.5-next.8

Patch Changes

1.10.5-next.7

Patch Changes

1.10.5-next.6

Patch Changes

1.10.5-next.5

Patch Changes

1.10.5-next.4

Patch Changes

1.10.5-next.3

Patch Changes

1.10.5-next.2

Patch Changes

1.10.5-next.1

Patch Changes

1.10.5-next.0

Patch Changes

1.10.4

Patch Changes

1.10.4-next.3

Patch Changes

1.10.4-next.2

Patch Changes

1.10.4-next.1

Patch Changes

1.10.4-next.0

Patch Changes

1.10.3

Patch Changes

1.10.3-next.3

Patch Changes

1.10.3-next.2

Patch Changes

1.10.3-next.1

Patch Changes

1.10.3-next.0

Patch Changes

1.10.2

Patch Changes

1.10.2-next.0

Patch Changes

1.10.1

Patch Changes

  • edb87b3: - fix: address issue where two

1.10.1-next.2

Patch Changes

  • edb87b3: - fix: address issue where two

1.10.1-next.1

Patch Changes

1.10.1-next.0

Patch Changes

1.10.0

Minor Changes

  • 8674da1: - refactor(headless): completely overhaul headless ui to better support agentic features

    Headless UI has been in a bad state for a bit now. When we added support for different agentic runtimes we acquired tech-debt that, with this PR, is being alleviated.

    As such, the following features have been updated to be completely functional with Headless UI.

    • Generative UI
    • Suggestions
    • Agentic Generative UI
    • Interrupts

    In addition, a variety of QOL changes have been made.

    • New AG-UI based message types
    • Inline code rendering is fixed

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

Patch Changes

  • 967d0ab: - refactor(chat): separate useCopilotChat into internal implementation and public API
  • 2354be4: - feat(chat): implement custom error handling in CopilotChat and Modal components

    • Added renderError prop to CopilotChat for inline error rendering.
    • Introduced triggerChatError function to manage chat-specific errors and observability hooks.
    • Updated Modal to handle observability hooks with public API key checks.
    • Enhanced CopilotObservabilityHooks interface to include onError for error event handling.
  • a8c0263: - feat: add event hooks system for chat components

  • 6d1de58: - fix: address issues that would cause headless UI breaking changes in the next release

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

    • fix: more fixes addressing breaking changes in new Headless UI

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

    • chore: address linting issues

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

    • chore: fixing branding and docs

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

    • chore: more docs fixing

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

  • Updated dependencies [967d0ab]

  • Updated dependencies [a8c0263]
  • Updated dependencies [8674da1]
  • Updated dependencies [6d1de58]
  • Updated dependencies [6de24ce]
  • Updated dependencies [b64555d]

1.10.0-next.13

Patch Changes

1.10.0-next.12

Patch Changes

1.10.0-next.11

Patch Changes

1.10.0-next.10

Patch Changes

1.10.0-next.9

Patch Changes

1.10.0-next.8

Patch Changes

1.10.0-next.7

Patch Changes

1.10.0-next.6

Patch Changes

1.10.0-next.5

Patch Changes

1.10.0-next.4

Patch Changes

1.10.0-next.3

Patch Changes

1.10.0-next.2

Patch Changes

1.10.0-next.1

Patch Changes

1.10.0-next.0

Minor Changes

  • 8674da1: - refactor(headless): completely overhaul headless ui to better support agentic features

    Headless UI has been in a bad state for a bit now. When we added support for different agentic runtimes we acquired tech-debt that, with this PR, is being alleviated.

    As such, the following features have been updated to be completely functional with Headless UI.

    • Generative UI
    • Suggestions
    • Agentic Generative UI
    • Interrupts

    In addition, a variety of QOL changes have been made.

    • New AG-UI based message types
    • Inline code rendering is fixed

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

Patch Changes

1.9.3

Patch Changes

1.9.3-next.4

Patch Changes

1.9.3-next.3

Patch Changes

1.9.3-next.2

Patch Changes

1.9.3-next.1

Patch Changes

1.9.3-next.0

Patch Changes

1.9.2

Patch Changes

  • e1de032: - fix: synchronously execute renderAndWaitForResponse

    Previously, it was impossible to execute multiple human-in-the-loop (renderAndWaitForResponse) calls in a row. Ultimately this was due to an issue with how CopilotKit was rendering the updates when multiple renderAndWaitForResponse actions appeared on screen due to a reference based approach.

    With this change, actions will be executed in a synchronous way appearing almost queue like. This works with any combination of action given much more freedom when asking for user input.

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

  • 10345a5: - feat: structured error visibility system for streaming errors

  • abe23c3: - feat: enable hiding stop button
  • 35537f1: - fix: memoize nested components to not rerender when content changes
  • Updated dependencies [cbeccb5]
  • Updated dependencies [3f8c575]
  • Updated dependencies [fac89c2]
  • Updated dependencies [e1de032]
  • Updated dependencies [92e8d1c]
  • Updated dependencies [9169ad7]
  • Updated dependencies [c75a04f]
  • Updated dependencies [c75a04f]
  • Updated dependencies [fe9009c]
  • Updated dependencies [1d1c51d]
  • Updated dependencies [10345a5]
  • Updated dependencies [9169ad7]
  • Updated dependencies [35537f1]

1.9.2-next.26

Patch Changes

1.9.2-next.25

Patch Changes

1.9.2-next.24

Patch Changes

1.9.2-next.23

Patch Changes

1.9.2-next.22

Patch Changes

1.9.2-next.21

Patch Changes

1.9.2-next.20

Patch Changes

  • e1de032: - fix: synchronously execute renderAndWaitForResponse

    Previously, it was impossible to execute multiple human-in-the-loop (renderAndWaitForResponse) calls in a row. Ultimately this was due to an issue with how CopilotKit was rendering the updates when multiple renderAndWaitForResponse actions appeared on screen due to a reference based approach.

    With this change, actions will be executed in a synchronous way appearing almost queue like. This works with any combination of action given much more freedom when asking for user input.

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

  • Updated dependencies [e1de032]

1.9.2-next.19

Patch Changes

1.9.2-next.18

Patch Changes

1.9.2-next.17

Patch Changes

1.9.2-next.16

Patch Changes

1.9.2-next.15

Patch Changes

1.9.2-next.14

Patch Changes

1.9.2-next.13

Patch Changes

1.9.2-next.12

Patch Changes

1.9.2-next.11

Patch Changes

1.9.2-next.10

Patch Changes

1.9.2-next.9

Patch Changes

1.9.2-next.8

Patch Changes

1.9.2-next.7

Patch Changes

1.9.2-next.6

Patch Changes

1.9.2-next.5

Patch Changes

1.9.2-next.4

Patch Changes

1.9.2-next.3

Patch Changes

1.9.2-next.2

Patch Changes

1.9.2-next.1

Patch Changes

1.9.2-next.0

Patch Changes

1.9.1

Patch Changes

1.9.1-next.0

Patch Changes

1.9.0

Patch Changes

1.9.0-next.2

Patch Changes

1.8.15-next.1

Patch Changes

1.8.15-next.0

Patch Changes

1.8.14

Patch Changes

1.8.14-next.5

Patch Changes

1.8.14-next.4

Patch Changes

1.8.14-next.3

Patch Changes

1.8.14-next.2

Patch Changes

1.8.14-next.1

Patch Changes

1.8.14-next.0

Patch Changes

1.8.13

Patch Changes

1.8.13-next.3

Patch Changes

1.8.13-next.2

Patch Changes

1.8.13-next.1

Patch Changes

1.8.13-next.0

Patch Changes

1.8.12

Patch Changes

1.8.12-next.6

Patch Changes

1.8.12-next.5

Patch Changes

1.8.12-next.4

Patch Changes

1.8.12-next.3

Patch Changes

1.8.12-next.2

Patch Changes

1.8.12-next.1

Patch Changes

1.8.12-next.0

Patch Changes

1.8.11

Patch Changes

1.8.11-next.1

Patch Changes

1.8.11-next.0

Patch Changes

1.8.10

Patch Changes

1.8.10-next.3

Patch Changes

1.8.10-next.2

Patch Changes

1.8.10-next.1

Patch Changes

1.8.10-next.0

Patch Changes

1.8.9

Patch Changes

1.8.9-next.0

Patch Changes

1.8.8

Patch Changes

1.8.8-next.1

Patch Changes

1.8.8-next.0

Patch Changes

1.8.7

Patch Changes

1.8.7-next.0

Patch Changes

1.8.6

Patch Changes

1.8.6-next.0

Patch Changes

1.8.5

Patch Changes

1.8.5-next.5

Patch Changes

1.8.5-next.4

Patch Changes

1.8.5-next.3

Patch Changes

1.8.5-next.2

Patch Changes

1.8.5-next.1

Patch Changes

1.8.5-next.0

Patch Changes

1.8.4

Patch Changes

1.8.4-next.4

Patch Changes

1.8.4-next.3

Patch Changes

1.8.4-next.2

Patch Changes

1.8.4-next.1

Patch Changes

1.8.4-next.0

Patch Changes

1.8.3

Patch Changes

1.8.3-next.0

Patch Changes

1.8.2-next.3

Patch Changes

1.8.2-next.2

Patch Changes

1.8.2-next.1

Patch Changes

1.8.2-next.0

Patch Changes

1.8.1

Patch Changes

1.8.1-next.1

Patch Changes

1.8.1-next.0

Patch Changes

1.8.0

Minor Changes

  • 20f0727: - feat(chat): redesign chat

Patch Changes

  • 099807a: - fix: adjust dev console menus to dark theme
  • c11fab9: - chore(react-ui): Add DefaultResponseRenderer and DefaultStateRenderer components
  • a50f4c1: - move default components out of ui
  • 5f184b7: - fix: remove response button
    • fix: use customizable assistant message icons
  • d8e354b: - fix: re-align customization variable names and usage
  • Updated dependencies [73f5eaa]
  • Updated dependencies [a50f4c1]

1.8.0-next.8

Patch Changes

1.8.0-next.7

Patch Changes

1.8.0-next.6

Patch Changes

1.8.0-next.5

Patch Changes

1.8.0-next.4

Patch Changes

1.8.0-next.3

Minor Changes

  • 20f0727: - feat(chat): redesign chat

Patch Changes

1.7.2-next.2

Patch Changes

1.7.2-next.1

Patch Changes

1.7.2-next.0

Patch Changes

1.7.1

Patch Changes

1.7.1-next.0

Patch Changes

1.7.0

Patch Changes

1.7.0-next.1

Patch Changes

1.7.0-next.0

Patch Changes

1.6.0

Patch Changes

1.6.0-next.12

Patch Changes

1.6.0-next.11

Patch Changes

1.6.0-next.10

Patch Changes

1.6.0-next.9

Patch Changes

1.6.0-next.8

Patch Changes

1.6.0-next.7

Patch Changes

1.6.0-next.6

Patch Changes

1.6.0-next.5

Patch Changes

1.6.0-next.4

Patch Changes

1.6.0-next.3

Patch Changes

1.6.0-next.2

Patch Changes

1.6.0-next.1

Patch Changes

1.6.0-next.0

Patch Changes

1.5.20

Patch Changes

1.5.20-next.0

Patch Changes

1.5.19

Patch Changes

1.5.19-next.1

Patch Changes

1.5.19-next.0

Patch Changes

1.5.18

Patch Changes

1.5.18-next.3

Patch Changes

1.5.18-next.2

Patch Changes

1.5.18-next.1

Patch Changes

1.5.18-next.0

Patch Changes

1.5.17

Patch Changes

1.5.17-next.0

Patch Changes

1.5.16

Patch Changes

1.5.16-next.2

Patch Changes

1.5.16-next.1

Patch Changes

1.5.16-next.0

Patch Changes

1.5.15

Patch Changes

  • 7b3141d: - feat(interrupt): support LG interrupt with useLangGraphInterrupt hook
    • chore(interrupt): add e2e test to interrupt functionality
    • feat(interrupt): add support for multiple interrupts and conditions
  • 66bd0f7: - fix(react-ui): check for updates endpoint to point to production
  • Updated dependencies [0dc0f43]
  • Updated dependencies [06f9f35]
  • Updated dependencies [7b3141d]
  • Updated dependencies [c9ae305]
  • Updated dependencies [0bbb4ab]

1.5.15-next.8

Patch Changes

1.5.15-next.7

Patch Changes

1.5.15-next.6

Patch Changes

1.5.15-next.5

Patch Changes

1.5.15-next.4

Patch Changes

1.5.15-next.3

Patch Changes

1.5.15-next.2

Patch Changes

1.5.15-next.1

Patch Changes

1.5.15-next.0

Patch Changes

1.5.14

Patch Changes

1.5.14-next.0

Patch Changes

1.5.13

Patch Changes

1.5.13-next.0

Patch Changes

1.5.12

Patch Changes

1.5.12-next.7

Patch Changes

1.5.12-next.6

Patch Changes

1.5.12-next.5

Patch Changes

1.5.12-next.4

Patch Changes

1.5.12-next.3

Patch Changes

1.5.12-next.2

Patch Changes

1.5.12-next.1

Patch Changes

1.5.12-next.0

Patch Changes

1.5.11

Patch Changes

  • 1fc7fa5: test changelog
  • c4a6aa5: test release notes
  • 716bd5c: test changelog
  • a35d447: test changelog
  • 4ae197e: Test release notes
  • 4211318: test changelog
  • 8166ac6: Test release notes
  • d431537: Test release notes
  • Updated dependencies [72f9e58]
  • Updated dependencies [db3d539]
  • Updated dependencies [aecb6f4]
  • Updated dependencies [e5d588d]
  • Updated dependencies [0a2e07e]
  • Updated dependencies [4211318]
  • Updated dependencies [9b3bdc2]
  • Updated dependencies [d431537]

1.5.11-next.0

Patch Changes

  • 1fc7fa5: test changelog
  • c4a6aa5: test release notes
  • 716bd5c: test changelog
  • a35d447: test changelog
  • 4ae197e: Test release notes
  • 4211318: test changelog
  • 8166ac6: Test release notes
  • d431537: Test release notes
  • Updated dependencies [72f9e58]
  • Updated dependencies [db3d539]
  • Updated dependencies [aecb6f4]
  • Updated dependencies [e5d588d]
  • Updated dependencies [0a2e07e]
  • Updated dependencies [4211318]
  • Updated dependencies [9b3bdc2]
  • Updated dependencies [d431537]

1.5.10

Patch Changes

  • 1fc7fa5: test changelog
  • c4a6aa5: test release notes
  • 716bd5c: test changelog
  • a35d447: test changelog
  • 4ae197e: Test release notes
  • 4211318: test changelog
  • 8166ac6: Test release notes
  • d431537: Test release notes
  • Updated dependencies [72f9e58]
  • Updated dependencies [db3d539]
  • Updated dependencies [aecb6f4]
  • Updated dependencies [e5d588d]
  • Updated dependencies [4211318]
  • Updated dependencies [9b3bdc2]
  • Updated dependencies [d431537]

1.5.10-next.0

Patch Changes

1.5.9

Patch Changes

  • 1fc7fa5: test changelog
  • c4a6aa5: test release notes
  • 716bd5c: test changelog
  • a35d447: test changelog
  • 4ae197e: Test release notes
  • 4211318: test changelog
  • 8166ac6: Test release notes
  • d431537: Test release notes
  • Updated dependencies [72f9e58]
  • Updated dependencies [db3d539]
  • Updated dependencies [e5d588d]
  • Updated dependencies [4211318]
  • Updated dependencies [9b3bdc2]
  • Updated dependencies [d431537]

1.5.8

Patch Changes

  • 1fc7fa5: test changelog
  • c4a6aa5: test release notes
  • a35d447: test changelog
  • 4ae197e: Test release notes
  • 4211318: test changelog
  • 8166ac6: Test release notes
  • d431537: Test release notes
  • Updated dependencies [72f9e58]
  • Updated dependencies [db3d539]
  • Updated dependencies [e5d588d]
  • Updated dependencies [4211318]
  • Updated dependencies [9b3bdc2]
  • Updated dependencies [d431537]

1.5.6-next.0

Patch Changes

1.5.5-next.5

Patch Changes

1.5.5-next.3

Patch Changes

1.5.5-next.2

Patch Changes

1.5.4

Patch Changes

1.5.3

Patch Changes

1.5.2

Patch Changes

1.5.1

Patch Changes

  • 5c01e9e: test prerelease #4
  • da280ed: Test prerelease script
  • 27e42d7: testing a prerelease
  • 05240a9: test pre #2
  • 33218fe: test prerelease #3
  • 03f3d6f: Test next prerelease
  • Updated dependencies [5c01e9e]
  • Updated dependencies [ed39d40]
  • Updated dependencies [da280ed]
  • Updated dependencies [27e42d7]
  • Updated dependencies [05240a9]
  • Updated dependencies [33218fe]
  • Updated dependencies [03f3d6f]
  • Updated dependencies [649ebcc]
  • Updated dependencies [6dfa0d2]

1.5.1-next.3

Patch Changes

1.5.1-next.2

Patch Changes

1.5.1-next.1

Patch Changes

1.5.1-next.0

Patch Changes

1.5.0

Minor Changes

  • 1b47092: Synchronize LangGraph messages with CopilotKit

Patch Changes

1.5.0-coagents-v0-3.0

Minor Changes

  • Synchronize LangGraph messages with CopilotKit

Patch Changes

1.4.8

Patch Changes

  • ea0c5d5: - fix: prevent sending empty messages via Enter key

    When the input field was empty, pressing Enter would still trigger the send() function despite the send button being correctly disabled. Added the sendDisabled check to the onKeyDown handler to ensure consistent validation between button and keyboard triggers.

    • Added validation check to Enter key handler
    • Ensures empty messages can't be sent via keyboard shortcut
    • Makes behavior consistent with disabled send button state

    Resolves #1129

    • Better error handling
    • Introduce new "EmptyLLMAdapter" for when using CoAgents
    • Improve dev console help options
    • Allow CopilotKit remote endpoint without agents
  • Updated dependencies

1.4.8-next.0

Patch Changes

  • ea0c5d5: - fix: prevent sending empty messages via Enter key

    When the input field was empty, pressing Enter would still trigger the send() function despite the send button being correctly disabled. Added the sendDisabled check to the onKeyDown handler to ensure consistent validation between button and keyboard triggers.

    • Added validation check to Enter key handler
    • Ensures empty messages can't be sent via keyboard shortcut
    • Makes behavior consistent with disabled send button state

    Resolves #1129

1.4.7

Patch Changes

1.4.6

Patch Changes

  • .

1.4.5

Patch Changes

1.4.5-next.0

Patch Changes

1.4.4

Patch Changes

1.4.4-next.4

Patch Changes

1.4.4-next.3

Patch Changes

1.4.4-next.2

Patch Changes

1.4.4-next.1

Patch Changes

1.4.4-next.0

Patch Changes

1.4.3

Patch Changes

1.4.3-pre.0

Patch Changes

1.4.2

Patch Changes

1.4.1

Patch Changes

  • 1721cbd: lower case copilotkit property
  • 1721cbd: add zod conversion
  • 8d0144f: bump
  • 8d0144f: bump
  • 8d0144f: bump
  • e16d95e: New prerelease
  • 1721cbd: Add convertActionsToDynamicStructuredTools to sdk-js
  • CopilotKit Core:

    • Improved error messages and overall logs
    • useCopilotAction.renderAndAwait renamed to .renderAndAwaitForResponse (backwards compatible, will be deprecated in the future)
    • Improved scrolling behavior. It is now possible to scroll up during LLM response generation
    • Added Azure OpenAI integration
    • Updated interfaces for better developer ergonomics

    CoAgents:

    • Renamed remoteActions to remoteEndpoints (backwards compatible, will be deprecated in the future)
    • Support for LangGraph Platform in Remote Endpoints
    • LangGraph JS Support for CoAgents (locally via langgraph dev, langgraph up or deployed to LangGraph Platform)
    • Improved LangSmith integration - requests made through CoAgents will now surface in LangSmith
    • Enhanced state management and message handling

    CopilotKid Back-end SDK:

    • Released a whole-new @copilotkit/sdk-js for building agents with LangGraph JS Support
  • 8d0144f: bump

  • 8d0144f: bump
  • fef1b74: fix assistant message CSS and propagate actions to LG JS
  • Updated dependencies [1721cbd]
  • Updated dependencies [1721cbd]
  • Updated dependencies [8d0144f]
  • Updated dependencies [8d0144f]
  • Updated dependencies [8d0144f]
  • Updated dependencies [e16d95e]
  • Updated dependencies [1721cbd]
  • Updated dependencies
  • Updated dependencies [8d0144f]
  • Updated dependencies [8d0144f]
  • Updated dependencies [fef1b74]

1.4.1-pre.6

Patch Changes

1.4.1-pre.5

Patch Changes

1.4.1-pre.4

Patch Changes

1.4.1-pre.3

Patch Changes

1.4.1-pre.2

Patch Changes

1.4.1-pre.1

Patch Changes

1.4.1-pre.0

Patch Changes

1.4.0

Minor Changes

CopilotKit Core:

  • Improved error messages and overall logs
  • useCopilotAction.renderAndAwait renamed to .renderAndAwaitForResponse (backwards compatible, will be deprecated in the future)
  • Improved scrolling behavior. It is now possible to scroll up during LLM response generation
  • Added Azure OpenAI integration
  • Updated interfaces for better developer ergonomics

CoAgents:

  • Renamed remoteActions to remoteEndpoints (backwards compatible, will be deprecated in the future)
  • Support for LangGraph Platform in Remote Endpoints
  • LangGraph JS Support for CoAgents (locally via langgraph dev, langgraph up or deployed to LangGraph Platform)
  • Improved LangSmith integration - requests made through CoAgents will now surface in LangSmith
  • Enhanced state management and message handling

CopilotKid Back-end SDK:

  • Released a whole-new @copilotkit/sdk-js for building agents with LangGraph JS Support

Patch Changes

  • f6fab28: update tsup config
  • f6fab28: update entry
  • f6fab28: export langchain module
  • 8a77944: Improve LangSmith support
  • f6fab28: Ensure intermediate state config is sent as snake case
  • f6fab28: update entry in tsup config
  • 8a77944: Ensure the last message is sent to LangSmith
  • a5efccd: Revert rxjs changes
  • f6fab28: update entry
  • f6fab28: Update exports
  • f6fab28: Update exports
  • 332d744: Add support for Azure OpenAI
  • f6fab28: Export LangGraph functions
  • f6fab28: Update lockfile
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies
  • Updated dependencies [f6fab28]
  • Updated dependencies [8a77944]
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies [8a77944]
  • Updated dependencies [a5efccd]
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies [332d744]
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]

1.3.16-mme-revert-rxjs-changes.10

Patch Changes

  • f6fab28: update tsup config
  • f6fab28: update entry
  • f6fab28: export langchain module
  • 8a77944: Improve LangSmith support
  • f6fab28: Ensure intermediate state config is sent as snake case
  • f6fab28: update entry in tsup config
  • 8a77944: Ensure the last message is sent to LangSmith
  • Revert rxjs changes
  • f6fab28: update entry
  • f6fab28: Update exports
  • f6fab28: Update exports
  • 332d744: Add support for Azure OpenAI
  • f6fab28: Export LangGraph functions
  • f6fab28: Update lockfile
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies [8a77944]
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies [8a77944]
  • Updated dependencies
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies [332d744]
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]

1.3.15

Patch Changes

1.3.14

Patch Changes

1.3.13

Patch Changes

1.3.12

Patch Changes

1.3.11

Patch Changes

1.3.11-mme-fix-duplicate-messages.0

Patch Changes

1.3.10

Patch Changes

1.3.9

Patch Changes

1.3.8

Patch Changes

1.3.7

Patch Changes

1.3.6

Patch Changes

1.3.5

Patch Changes

1.3.4

Patch Changes

1.3.3

Patch Changes

1.3.2

Patch Changes

1.3.2-mme-discover-actions.0

Patch Changes

1.3.1

Patch Changes

1.3.0

Minor Changes

  • CoAgents and remote actions

Patch Changes

  • 5b63f55: stream intermediate state
  • b6fd3d8: Better message grouping
  • 89420c6: Rename hooks and bugfixes
  • b6e8824: useCoAgent/useCoAgentAction
  • 91c35b9: useAgentState
  • 00be203: Remote actions preview
  • fb15f72: Reduce request size by skipping intermediate state
  • 8ecc3e4: Fix useCoAgent start/stop bug
  • Updated dependencies
  • Updated dependencies [5b63f55]
  • Updated dependencies [b6fd3d8]
  • Updated dependencies [89420c6]
  • Updated dependencies [b6e8824]
  • Updated dependencies [91c35b9]
  • Updated dependencies [00be203]
  • Updated dependencies [fb15f72]
  • Updated dependencies [8ecc3e4]

1.2.1

Patch Changes

  • inject minified css in bundle

    • removes the need to import styles.css manually
    • empty styles.css included in the build for backwards compatibility
    • uses tsup's injectStyles with postcss to bundle and minify the CSS, then inject it as a style tag
    • currently uses my fork of tsup where I added support for async function in injectStyles (must-have for postcss), a PR from my fork to the main library will follow shortly
    • remove material-ui, and use react-icons for icons (same icons as before)
    • remove unused IncludedFilesPreview component
    • updated docs
  • Updated dependencies

1.2.0

Minor Changes

  • Fix errors related to crypto not being found, and other bug fixes

Patch Changes

1.1.2

Patch Changes

1.1.1

Patch Changes

1.1.0

Minor Changes

  • Official support for Groq (GroqAdapter)

Patch Changes

1.0.9

Patch Changes

1.0.8

Patch Changes

1.0.7

Patch Changes

1.0.6

Patch Changes

1.0.5

Patch Changes

1.0.4

Patch Changes

1.0.3

Patch Changes

1.0.2

Patch Changes

1.0.1

Patch Changes

1.0.0

Major Changes

  • b6a4b6eb: V1.0 Release Candidate

    • A robust new protocol between the frontend and the Copilot Runtime
    • Support for Copilot Cloud
    • Generative UI
    • Support for LangChain universal tool calling
    • OpenAI assistant API streaming
  • V1.0 Release

    • A robust new protocol between the frontend and the Copilot Runtime
    • Support for Copilot Cloud
    • Generative UI
    • Support for LangChain universal tool calling
    • OpenAI assistant API streaming

Patch Changes

1.0.0-beta.2

Patch Changes

1.0.0-beta.1

Patch Changes

1.0.0-beta.0

Major Changes

  • V1.0 Release Candidate

    • A robust new protocol between the frontend and the Copilot Runtime
    • Support for Copilot Cloud
    • Generative UI
    • Support for LangChain universal tool calling
    • OpenAI assistant API streaming

Patch Changes

0.37.0

Minor Changes

  • f771353: Fix: Stale CopilotReadable
  • 9df8d43: Remove unneeded tailwind components
  • CSS improvements, useCopilotChat, invisible messages

Patch Changes

0.37.0-mme-fix-textarea-css.1

Minor Changes

  • Remove unneeded tailwind components

Patch Changes

0.37.0-mme-fix-feedback-readable.0

Minor Changes

  • Fix: Stale CopilotReadable

Patch Changes

0.36.0

Minor Changes

  • 8baa862: Add push to talk prototype
  • chat suggestions, standalone chat component, gemini adapter, push to talk

Patch Changes

0.36.0-mme-push-to-talk.0

Minor Changes

  • Add push to talk prototype

Patch Changes

0.22.0

Minor Changes

  • 718520b: gpt-4-turbo-april-2024 function calling fixes
  • 95bcbd8: streamline cloud configuration
  • 95bcbd8: Rename
  • 95bcbd8: Upgrade langchain
  • 95bcbd8: Support input guardrails (cloud)
  • 95bcbd8: Unify api key handling
  • CopilotCloud V1, useCopilotReadable and more...
  • 95bcbd8: Get api key from headers dict
  • 95bcbd8: Update comments
  • 95bcbd8: Include reason in guardrails response
  • 718520b: gpt-4-turbo-april-2024
  • 95bcbd8: Update comments
  • 5f6f57a: fix backend function calling return values
  • 95bcbd8: Retrieve public API key

Patch Changes

  • Updated dependencies [718520b]
  • Updated dependencies [95bcbd8]
  • Updated dependencies [95bcbd8]
  • Updated dependencies [95bcbd8]
  • Updated dependencies [95bcbd8]
  • Updated dependencies [95bcbd8]
  • Updated dependencies
  • Updated dependencies [95bcbd8]
  • Updated dependencies [95bcbd8]
  • Updated dependencies [95bcbd8]
  • Updated dependencies [718520b]
  • Updated dependencies [95bcbd8]
  • Updated dependencies [5f6f57a]
  • Updated dependencies [95bcbd8]

0.22.0-mme-cloud.7

Minor Changes

  • Get api key from headers dict

Patch Changes

0.22.0-mme-cloud.6

Minor Changes

  • Upgrade langchain

Patch Changes

0.22.0-mme-cloud.5

Minor Changes

  • Update comments

Patch Changes

0.22.0-mme-cloud.4

Minor Changes

  • Update comments

Patch Changes

0.22.0-mme-cloud.3

Minor Changes

  • 85c029b: streamline cloud configuration
  • Rename
  • a5ade3b: Support input guardrails (cloud)
  • 12ff590: Unify api key handling
  • f0c4745: Include reason in guardrails response
  • 17f4b1b: Retrieve public API key

Patch Changes

0.22.0-function-calling-fixes.2

Minor Changes

  • fix backend function calling return values

Patch Changes

0.22.0-function-calling-fixes.1

Minor Changes

  • gpt-4-turbo-april-2024 function calling fixes

Patch Changes

0.22.0-alpha.0

Minor Changes

  • gpt-4-turbo-april-2024

Patch Changes

0.21.0

Minor Changes

  • 1f06d29: declare esm/cjs/types in export
  • fix esm error
  • 5a0b2cf: Inline codeblock style to avoid ESM error
  • e12b921: ESM by default

Patch Changes

0.21.0-mme-esm-error.2

Minor Changes

  • Inline codeblock style to avoid ESM error

Patch Changes

0.21.0-mme-esm-error.1

Minor Changes

  • declare esm/cjs/types in export

Patch Changes

0.21.0-mme-esm-error.0

Minor Changes

  • ESM by default

Patch Changes

0.20.0

Minor Changes

  • 899aa6e: Backend improvements for running on GCP
  • Improve streamHttpServerResponse for express and firebase apps

Patch Changes

0.20.0-mme-firebase-fixes.0

Minor Changes

  • Backend improvements for running on GCP

Patch Changes

0.19.0

Minor Changes

  • Improve Next.js support and action rendering

Patch Changes

0.18.0

Minor Changes

  • c4010e7: Pre Release
  • be00d61: Alpha
  • ec8481c: Alpha
  • 3fbee5d: OpenAIAdapter-getter
  • e09dc44: Test backward compatibility of AnnotatedFunction on the backend
  • 3f5ad60: OpenAIAdapter: make openai instance gettable
  • 0dd6180: QA
  • 225812d: QA new action type
  • New actions: custom chat components, and typed arguments

Patch Changes

  • Updated dependencies [c4010e7]
  • Updated dependencies [be00d61]
  • Updated dependencies [ec8481c]
  • Updated dependencies [3fbee5d]
  • Updated dependencies [e09dc44]
  • Updated dependencies [3f5ad60]
  • Updated dependencies [0dd6180]
  • Updated dependencies [225812d]
  • Updated dependencies

0.18.0-mme-deprecate-annotated-function.4

Minor Changes

  • Test backward compatibility of AnnotatedFunction on the backend

Patch Changes

0.18.0-mme-pre-release.3

Minor Changes

  • Pre Release
  • 3fbee5d: OpenAIAdapter-getter
  • 3f5ad60: OpenAIAdapter: make openai instance gettable

Patch Changes

0.18.0-mme-function-call-labels.2

Minor Changes

  • be00d61: Alpha
  • QA

Patch Changes

0.18.0-mme-experimental-actions.1

Minor Changes

  • Alpha

Patch Changes

0.18.0-mme-experimental-actions.0

Minor Changes

  • QA new action type

Patch Changes

0.17.1

Patch Changes

  • 5ec8ad4: fix- bring back removeBackendOnlyProps
  • 5a154d0: fix: bring back removeBackendOnlyProps
  • fix: bring back removeBackendOnlyProps
  • Updated dependencies [5ec8ad4]
  • Updated dependencies [5a154d0]
  • Updated dependencies

0.17.1-atai-0223-fix-backendOnlyProps.1

Patch Changes

0.17.1-atai-0223-fix-backendOnlyProps.0

Patch Changes

0.17.0

Minor Changes

  • CopilotTask, function return values, LangChain support, LangServe support
  • 401e474: Test the tools API
  • 2f3296e: Test automation

Patch Changes

0.17.0-beta-automation.1

Minor Changes

  • Test automation

Patch Changes

0.17.0-tools.0

Minor Changes

  • Test the tools API

Patch Changes

0.16.0

Minor Changes

  • node CopilotBackend support
  • 58a8524: clean node example impl
  • a34a226: node-native backend support

Patch Changes

0.16.0-alpha.1

Minor Changes

  • clean node example impl

Patch Changes

0.16.0-alpha.0

Minor Changes

  • node-native backend support

Patch Changes

0.15.0

Minor Changes

  • eba87c7: .4
  • 29ee27e: New Copilot ui
  • 61168c7: no treeshake
  • fb32fe3: .2
  • eba87c7: .3
  • new chatbot ui, new component names, new build system, new docs
  • 61168c7: no treeshake take 2
  • 61168c7: remove treeshake in build
  • fb32fe3: build naming refactor
  • eba87c7: .5
  • 61168c7: cache clean
  • fb32fe3: .3

Patch Changes

  • Updated dependencies [eba87c7]
  • Updated dependencies [29ee27e]
  • Updated dependencies [61168c7]
  • Updated dependencies [fb32fe3]
  • Updated dependencies [eba87c7]
  • Updated dependencies
  • Updated dependencies [61168c7]
  • Updated dependencies [61168c7]
  • Updated dependencies [fb32fe3]
  • Updated dependencies [eba87c7]
  • Updated dependencies [61168c7]
  • Updated dependencies [fb32fe3]

0.15.0-alpha.9

Minor Changes

  • cache clean

Patch Changes

0.15.0-alpha.8

Minor Changes

  • no treeshake

Patch Changes

0.15.0-alpha.7

Minor Changes

  • no treeshake take 2

Patch Changes

0.15.0-alpha.6

Minor Changes

  • remove treeshake in build

Patch Changes

0.15.0-alpha.5

Minor Changes

  • .5

Patch Changes

0.15.0-alpha.4

Minor Changes

  • .4

Patch Changes

0.15.0-alpha.3

Minor Changes

  • .3

Patch Changes

0.15.0-alpha.2

Minor Changes

  • .2
  • .3

Patch Changes

0.15.0-alpha.1

Minor Changes

  • build naming refactor

Patch Changes

0.15.0-alpha.0

Minor Changes

  • New Copilot ui

Patch Changes

0.14.1

Patch Changes

  • stop generating button working
  • aa6bc5a: fix stop generate
  • cf0bde6: change order of operations on stop cleanup
  • Updated dependencies
  • Updated dependencies [aa6bc5a]
  • Updated dependencies [cf0bde6]

0.14.1-alpha.1

Patch Changes

0.14.1-alpha.0

Patch Changes

0.14.0

Minor Changes

  • factor useChat into internal core
  • a7b417a: insertion default prompt update
  • 88d6654: release useChat fixes
  • 51de9d5: textarea editing: default prompt + few shot update
  • fa84257: remove vercel ai
  • 98a37c8: strictly propagate copilot api params through the fetch arguments - not through any constructors
  • 250032d: useChat: do not separately propagate options.url to constructor

Patch Changes

  • Updated dependencies
  • Updated dependencies [a7b417a]
  • Updated dependencies [88d6654]
  • Updated dependencies [51de9d5]
  • Updated dependencies [fa84257]
  • Updated dependencies [98a37c8]
  • Updated dependencies [250032d]

0.14.0-alpha.5

Minor Changes

  • release useChat fixes

Patch Changes

0.14.0-alpha.4

Minor Changes

  • insertion default prompt update

Patch Changes

0.14.0-alpha.3

Minor Changes

  • textarea editing: default prompt + few shot update

Patch Changes

0.14.0-alpha.2

Minor Changes

  • useChat: do not separately propagate options.url to constructor

Patch Changes

0.14.0-alpha.1

Minor Changes

  • strictly propagate copilot api params through the fetch arguments - not through any constructors

Patch Changes

0.14.0-alpha.0

Minor Changes

  • remove vercel ai

Patch Changes

0.13.1

Patch Changes

0.13.0

Minor Changes

  • 8a5cecd: only forward functions if non-empty
  • 87f1fa0: rebase
  • 15d4afc: debugging
  • c40a0d1: Filter out empty function descriptions
  • prep for chat protocol v2
  • bbd152e: backend sdks prep
  • 8517bb1: trying again
  • 478840a: carry function propagation fix to chat v2

Patch Changes

  • Updated dependencies [8a5cecd]
  • Updated dependencies [87f1fa0]
  • Updated dependencies [15d4afc]
  • Updated dependencies [c40a0d1]
  • Updated dependencies
  • Updated dependencies [bbd152e]
  • Updated dependencies [8517bb1]
  • Updated dependencies [478840a]

0.13.0-alpha.6

Minor Changes

  • rebase

Patch Changes

0.13.0-alpha.5

Minor Changes

  • carry function propagation fix to chat v2

Patch Changes

0.13.0-alpha.4

Minor Changes

  • only forward functions if non-empty

Patch Changes

0.13.0-alpha.3

Minor Changes

  • debugging

Patch Changes

0.13.0-alpha.2

Minor Changes

  • trying again

Patch Changes

0.13.0-alpha.1

Minor Changes

  • Filter out empty function descriptions

Patch Changes

0.13.0-alpha.0

Minor Changes

  • backend sdks prep

Patch Changes

0.12.0

Minor Changes

  • shouldToggleHoveringEditorOnKeyPress

Patch Changes

0.11.0

Minor Changes

  • contextCategories no longer optional for reading context

Patch Changes

0.10.1

Patch Changes

0.10.0

Minor Changes

  • support for custom api headers + body, fixed es5 build error on import
  • 9abfea6: js import
  • 2b9591a: esm.js maybe
  • 2b9591a: cjs exp
  • 2b9591a: treeshake
  • 2b9591a: commonJS
  • 222f5e6: undo alpha changes
  • 2b9591a: cjs maybe

Patch Changes

  • Updated dependencies
  • Updated dependencies [9abfea6]
  • Updated dependencies [2b9591a]
  • Updated dependencies [2b9591a]
  • Updated dependencies [2b9591a]
  • Updated dependencies [2b9591a]
  • Updated dependencies [2b9591a]
  • Updated dependencies [222f5e6]
  • Updated dependencies [2b9591a]

0.10.0-alpha.7

Minor Changes

  • js import

Patch Changes

0.10.0-alpha.6

Minor Changes

  • undo alpha changes

Patch Changes

0.10.0-alpha.5

Minor Changes

  • commonJS

Patch Changes

0.10.0-alpha.4

Minor Changes

  • esm.js maybe

Patch Changes

0.10.0-alpha.3

Minor Changes

  • cjs maybe

Patch Changes

0.10.0-alpha.2

Minor Changes

  • cjs exp

Patch Changes

0.10.0-alpha.1

Minor Changes

  • treeshake

Patch Changes

0.9.3-alpha.0

Patch Changes

0.9.2

Patch Changes

0.9.1

Patch Changes

0.9.0

Minor Changes

  • 915e89c: bump alpha version after link dep
  • 1b330b5: out of beta: centralized api, textarea insertions/edits
  • e4ce3ab: textarea edits mvp
  • 9e201c5: textarea insertions deletions etc
  • 915e89c: again
  • 7f8d531: package json
  • 96f5630: react-ui missing declaration
  • 1992035: import esm not cjs variant
  • c13ffcb: minor bugfix
  • e4fe6a5: copilot textarea documents - provide with code skeleton
  • 8e9f9b1: api endpoint centralization
  • eed7c64: remove coldarkDark style from react-syntax-highlighter
  • 5829585: beta bump

Patch Changes

  • 12407db: rebase master
  • 939454e: prettify
  • Updated dependencies [1b330b5]
  • Updated dependencies [e4ce3ab]
  • Updated dependencies [9e201c5]
  • Updated dependencies [c13ffcb]
  • Updated dependencies [12407db]
  • Updated dependencies [e4fe6a5]
  • Updated dependencies [8e9f9b1]
  • Updated dependencies [939454e]

0.9.0-alpha.11

Minor Changes

  • copilot textarea documents - provide with code skeleton

Patch Changes

0.9.0-alpha.10

Minor Changes

  • minor bugfix

Patch Changes

0.9.0-alpha.9

Minor Changes

  • api endpoint centralization

Patch Changes

0.9.0-alpha.8

Minor Changes

  • package json

Patch Changes

0.9.0-alpha.7

Minor Changes

  • react-ui missing declaration

Patch Changes

0.9.0-alpha.6

Minor Changes

  • beta bump

0.9.0-alpha.5

Minor Changes

  • remove coldarkDark style from react-syntax-highlighter

0.9.0-alpha.4

Minor Changes

  • import esm not cjs variant

0.9.0-alpha.3

Minor Changes

  • textarea edits mvp

Patch Changes

0.9.0-alpha.2

Patch Changes

0.9.0-alpha.1

Patch Changes

0.9.0-alpha.0

Minor Changes

  • textarea insertions deletions etc

Patch Changes

0.8.0

Minor Changes

  • ce193f7: Dependency fix

Patch Changes

0.7.0

Minor Changes

  • Made CopilotTextarea standalone for clarity

0.6.0

Minor Changes

  • Introduced CopilotTextarea

Patch Changes

0.5.0

Minor Changes

  • bring private packages back into the void
  • added tsconfig and eslint-config-custom to copilotkit scope

Patch Changes

0.4.0

Minor Changes

  • first beta release

Patch Changes

0.3.0

Minor Changes

  • working version
  • 9d2f3cb: semi compiling

Patch Changes

0.2.0

Minor Changes

  • react core initialization

0.1.0

Minor Changes

1.10.1-next.1

Patch Changes

1.10.1-next.0

Patch Changes

1.10.0

Minor Changes

  • 8674da1: - refactor(headless): completely overhaul headless ui to better support agentic features

    Headless UI has been in a bad state for a bit now. When we added support for different agentic runtimes we acquired tech-debt that, with this PR, is being alleviated.

    As such, the following features have been updated to be completely functional with Headless UI.

    • Generative UI
    • Suggestions
    • Agentic Generative UI
    • Interrupts

    In addition, a variety of QOL changes have been made.

    • New AG-UI based message types
    • Inline code rendering is fixed

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

Patch Changes

  • 967d0ab: - refactor(chat): separate useCopilotChat into internal implementation and public API
  • 2354be4: - feat(chat): implement custom error handling in CopilotChat and Modal components

    • Added renderError prop to CopilotChat for inline error rendering.
    • Introduced triggerChatError function to manage chat-specific errors and observability hooks.
    • Updated Modal to handle observability hooks with public API key checks.
    • Enhanced CopilotObservabilityHooks interface to include onError for error event handling.
  • a8c0263: - feat: add event hooks system for chat components

  • 6d1de58: - fix: address issues that would cause headless UI breaking changes in the next release

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

    • fix: more fixes addressing breaking changes in new Headless UI

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

    • chore: address linting issues

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

    • chore: fixing branding and docs

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

    • chore: more docs fixing

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

  • Updated dependencies [967d0ab]

  • Updated dependencies [a8c0263]
  • Updated dependencies [8674da1]
  • Updated dependencies [6d1de58]
  • Updated dependencies [6de24ce]
  • Updated dependencies [b64555d]

1.10.0-next.13

Patch Changes

1.10.0-next.12

Patch Changes

1.10.0-next.11

Patch Changes

1.10.0-next.10

Patch Changes

1.10.0-next.9

Patch Changes

1.10.0-next.8

Patch Changes

1.10.0-next.7

Patch Changes

1.10.0-next.6

Patch Changes

1.10.0-next.5

Patch Changes

1.10.0-next.4

Patch Changes

1.10.0-next.3

Patch Changes

1.10.0-next.2

Patch Changes

1.10.0-next.1

Patch Changes

1.10.0-next.0

Minor Changes

  • 8674da1: - refactor(headless): completely overhaul headless ui to better support agentic features

    Headless UI has been in a bad state for a bit now. When we added support for different agentic runtimes we acquired tech-debt that, with this PR, is being alleviated.

    As such, the following features have been updated to be completely functional with Headless UI.

    • Generative UI
    • Suggestions
    • Agentic Generative UI
    • Interrupts

    In addition, a variety of QOL changes have been made.

    • New AG-UI based message types
    • Inline code rendering is fixed

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

Patch Changes

1.9.3

Patch Changes

1.9.3-next.4

Patch Changes

1.9.3-next.3

Patch Changes

1.9.3-next.2

Patch Changes

1.9.3-next.1

Patch Changes

1.9.3-next.0

Patch Changes

1.9.2

Patch Changes

  • e1de032: - fix: synchronously execute renderAndWaitForResponse

    Previously, it was impossible to execute multiple human-in-the-loop (renderAndWaitForResponse) calls in a row. Ultimately this was due to an issue with how CopilotKit was rendering the updates when multiple renderAndWaitForResponse actions appeared on screen due to a reference based approach.

    With this change, actions will be executed in a synchronous way appearing almost queue like. This works with any combination of action given much more freedom when asking for user input.

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

  • 10345a5: - feat: structured error visibility system for streaming errors

  • abe23c3: - feat: enable hiding stop button
  • 35537f1: - fix: memoize nested components to not rerender when content changes
  • Updated dependencies [cbeccb5]
  • Updated dependencies [3f8c575]
  • Updated dependencies [fac89c2]
  • Updated dependencies [e1de032]
  • Updated dependencies [92e8d1c]
  • Updated dependencies [9169ad7]
  • Updated dependencies [c75a04f]
  • Updated dependencies [c75a04f]
  • Updated dependencies [fe9009c]
  • Updated dependencies [1d1c51d]
  • Updated dependencies [10345a5]
  • Updated dependencies [9169ad7]
  • Updated dependencies [35537f1]

1.9.2-next.26

Patch Changes

1.9.2-next.25

Patch Changes

1.9.2-next.24

Patch Changes

1.9.2-next.23

Patch Changes

1.9.2-next.22

Patch Changes

1.9.2-next.21

Patch Changes

1.9.2-next.20

Patch Changes

  • e1de032: - fix: synchronously execute renderAndWaitForResponse

    Previously, it was impossible to execute multiple human-in-the-loop (renderAndWaitForResponse) calls in a row. Ultimately this was due to an issue with how CopilotKit was rendering the updates when multiple renderAndWaitForResponse actions appeared on screen due to a reference based approach.

    With this change, actions will be executed in a synchronous way appearing almost queue like. This works with any combination of action given much more freedom when asking for user input.

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

  • Updated dependencies [e1de032]

1.9.2-next.19

Patch Changes

1.9.2-next.18

Patch Changes

1.9.2-next.17

Patch Changes

1.9.2-next.16

Patch Changes

1.9.2-next.15

Patch Changes

1.9.2-next.14

Patch Changes

1.9.2-next.13

Patch Changes

1.9.2-next.12

Patch Changes

1.9.2-next.11

Patch Changes

1.9.2-next.10

Patch Changes

1.9.2-next.9

Patch Changes

1.9.2-next.8

Patch Changes

1.9.2-next.7

Patch Changes

1.9.2-next.6

Patch Changes

1.9.2-next.5

Patch Changes

1.9.2-next.4

Patch Changes

1.9.2-next.3

Patch Changes

1.9.2-next.2

Patch Changes

1.9.2-next.1

Patch Changes

1.9.2-next.0

Patch Changes

1.9.1

Patch Changes

1.9.1-next.0

Patch Changes

1.9.0

Patch Changes

1.9.0-next.2

Patch Changes

1.8.15-next.1

Patch Changes

1.8.15-next.0

Patch Changes

1.8.14

Patch Changes

1.8.14-next.5

Patch Changes

1.8.14-next.4

Patch Changes

1.8.14-next.3

Patch Changes

1.8.14-next.2

Patch Changes

1.8.14-next.1

Patch Changes

1.8.14-next.0

Patch Changes

1.8.13

Patch Changes

1.8.13-next.3

Patch Changes

1.8.13-next.2

Patch Changes

1.8.13-next.1

Patch Changes

1.8.13-next.0

Patch Changes

1.8.12

Patch Changes

1.8.12-next.6

Patch Changes

1.8.12-next.5

Patch Changes

1.8.12-next.4

Patch Changes

1.8.12-next.3

Patch Changes

1.8.12-next.2

Patch Changes

1.8.12-next.1

Patch Changes

1.8.12-next.0

Patch Changes

1.8.11

Patch Changes

1.8.11-next.1

Patch Changes

1.8.11-next.0

Patch Changes

1.8.10

Patch Changes

1.8.10-next.3

Patch Changes

1.8.10-next.2

Patch Changes

1.8.10-next.1

Patch Changes

1.8.10-next.0

Patch Changes

1.8.9

Patch Changes

1.8.9-next.0

Patch Changes

1.8.8

Patch Changes

1.8.8-next.1

Patch Changes

1.8.8-next.0

Patch Changes

1.8.7

Patch Changes

1.8.7-next.0

Patch Changes

1.8.6

Patch Changes

1.8.6-next.0

Patch Changes

1.8.5

Patch Changes

1.8.5-next.5

Patch Changes

1.8.5-next.4

Patch Changes

1.8.5-next.3

Patch Changes

1.8.5-next.2

Patch Changes

1.8.5-next.1

Patch Changes

1.8.5-next.0

Patch Changes

1.8.4

Patch Changes

1.8.4-next.4

Patch Changes

1.8.4-next.3

Patch Changes

1.8.4-next.2

Patch Changes

1.8.4-next.1

Patch Changes

1.8.4-next.0

Patch Changes

1.8.3

Patch Changes

1.8.3-next.0

Patch Changes

1.8.2-next.3

Patch Changes

1.8.2-next.2

Patch Changes

1.8.2-next.1

Patch Changes

1.8.2-next.0

Patch Changes

1.8.1

Patch Changes

1.8.1-next.1

Patch Changes

1.8.1-next.0

Patch Changes

1.8.0

Minor Changes

  • 20f0727: - feat(chat): redesign chat

Patch Changes

  • 099807a: - fix: adjust dev console menus to dark theme
  • c11fab9: - chore(react-ui): Add DefaultResponseRenderer and DefaultStateRenderer components
  • a50f4c1: - move default components out of ui
  • 5f184b7: - fix: remove response button
    • fix: use customizable assistant message icons
  • d8e354b: - fix: re-align customization variable names and usage
  • Updated dependencies [73f5eaa]
  • Updated dependencies [a50f4c1]

1.8.0-next.8

Patch Changes

1.8.0-next.7

Patch Changes

1.8.0-next.6

Patch Changes

1.8.0-next.5

Patch Changes

1.8.0-next.4

Patch Changes

1.8.0-next.3

Minor Changes

  • 20f0727: - feat(chat): redesign chat

Patch Changes

1.7.2-next.2

Patch Changes

1.7.2-next.1

Patch Changes

1.7.2-next.0

Patch Changes

1.7.1

Patch Changes

1.7.1-next.0

Patch Changes

1.7.0

Patch Changes

1.7.0-next.1

Patch Changes

1.7.0-next.0

Patch Changes

1.6.0

Patch Changes

1.6.0-next.12

Patch Changes

1.6.0-next.11

Patch Changes

1.6.0-next.10

Patch Changes

1.6.0-next.9

Patch Changes

1.6.0-next.8

Patch Changes

1.6.0-next.7

Patch Changes

1.6.0-next.6

Patch Changes

1.6.0-next.5

Patch Changes

1.6.0-next.4

Patch Changes

1.6.0-next.3

Patch Changes

1.6.0-next.2

Patch Changes

1.6.0-next.1

Patch Changes

1.6.0-next.0

Patch Changes

1.5.20

Patch Changes

1.5.20-next.0

Patch Changes

1.5.19

Patch Changes

1.5.19-next.1

Patch Changes

1.5.19-next.0

Patch Changes

1.5.18

Patch Changes

1.5.18-next.3

Patch Changes

1.5.18-next.2

Patch Changes

1.5.18-next.1

Patch Changes

1.5.18-next.0

Patch Changes

1.5.17

Patch Changes

1.5.17-next.0

Patch Changes

1.5.16

Patch Changes

1.5.16-next.2

Patch Changes

1.5.16-next.1

Patch Changes

1.5.16-next.0

Patch Changes

1.5.15

Patch Changes

  • 7b3141d: - feat(interrupt): support LG interrupt with useLangGraphInterrupt hook
    • chore(interrupt): add e2e test to interrupt functionality
    • feat(interrupt): add support for multiple interrupts and conditions
  • 66bd0f7: - fix(react-ui): check for updates endpoint to point to production
  • Updated dependencies [0dc0f43]
  • Updated dependencies [06f9f35]
  • Updated dependencies [7b3141d]
  • Updated dependencies [c9ae305]
  • Updated dependencies [0bbb4ab]

1.5.15-next.8

Patch Changes

1.5.15-next.7

Patch Changes

1.5.15-next.6

Patch Changes

1.5.15-next.5

Patch Changes

1.5.15-next.4

Patch Changes

1.5.15-next.3

Patch Changes

1.5.15-next.2

Patch Changes

1.5.15-next.1

Patch Changes

1.5.15-next.0

Patch Changes

1.5.14

Patch Changes

1.5.14-next.0

Patch Changes

1.5.13

Patch Changes

1.5.13-next.0

Patch Changes

1.5.12

Patch Changes

1.5.12-next.7

Patch Changes

1.5.12-next.6

Patch Changes

1.5.12-next.5

Patch Changes

1.5.12-next.4

Patch Changes

1.5.12-next.3

Patch Changes

1.5.12-next.2

Patch Changes

1.5.12-next.1

Patch Changes

1.5.12-next.0

Patch Changes

1.5.11

Patch Changes

  • 1fc7fa5: test changelog
  • c4a6aa5: test release notes
  • 716bd5c: test changelog
  • a35d447: test changelog
  • 4ae197e: Test release notes
  • 4211318: test changelog
  • 8166ac6: Test release notes
  • d431537: Test release notes
  • Updated dependencies [72f9e58]
  • Updated dependencies [db3d539]
  • Updated dependencies [aecb6f4]
  • Updated dependencies [e5d588d]
  • Updated dependencies [0a2e07e]
  • Updated dependencies [4211318]
  • Updated dependencies [9b3bdc2]
  • Updated dependencies [d431537]

1.5.11-next.0

Patch Changes

  • 1fc7fa5: test changelog
  • c4a6aa5: test release notes
  • 716bd5c: test changelog
  • a35d447: test changelog
  • 4ae197e: Test release notes
  • 4211318: test changelog
  • 8166ac6: Test release notes
  • d431537: Test release notes
  • Updated dependencies [72f9e58]
  • Updated dependencies [db3d539]
  • Updated dependencies [aecb6f4]
  • Updated dependencies [e5d588d]
  • Updated dependencies [0a2e07e]
  • Updated dependencies [4211318]
  • Updated dependencies [9b3bdc2]
  • Updated dependencies [d431537]

1.5.10

Patch Changes

  • 1fc7fa5: test changelog
  • c4a6aa5: test release notes
  • 716bd5c: test changelog
  • a35d447: test changelog
  • 4ae197e: Test release notes
  • 4211318: test changelog
  • 8166ac6: Test release notes
  • d431537: Test release notes
  • Updated dependencies [72f9e58]
  • Updated dependencies [db3d539]
  • Updated dependencies [aecb6f4]
  • Updated dependencies [e5d588d]
  • Updated dependencies [4211318]
  • Updated dependencies [9b3bdc2]
  • Updated dependencies [d431537]

1.5.10-next.0

Patch Changes

1.5.9

Patch Changes

  • 1fc7fa5: test changelog
  • c4a6aa5: test release notes
  • 716bd5c: test changelog
  • a35d447: test changelog
  • 4ae197e: Test release notes
  • 4211318: test changelog
  • 8166ac6: Test release notes
  • d431537: Test release notes
  • Updated dependencies [72f9e58]
  • Updated dependencies [db3d539]
  • Updated dependencies [e5d588d]
  • Updated dependencies [4211318]
  • Updated dependencies [9b3bdc2]
  • Updated dependencies [d431537]

1.5.8

Patch Changes

  • 1fc7fa5: test changelog
  • c4a6aa5: test release notes
  • a35d447: test changelog
  • 4ae197e: Test release notes
  • 4211318: test changelog
  • 8166ac6: Test release notes
  • d431537: Test release notes
  • Updated dependencies [72f9e58]
  • Updated dependencies [db3d539]
  • Updated dependencies [e5d588d]
  • Updated dependencies [4211318]
  • Updated dependencies [9b3bdc2]
  • Updated dependencies [d431537]

1.5.6-next.0

Patch Changes

1.5.5-next.5

Patch Changes

1.5.5-next.3

Patch Changes

1.5.5-next.2

Patch Changes

1.5.4

Patch Changes

1.5.3

Patch Changes

1.5.2

Patch Changes

1.5.1

Patch Changes

  • 5c01e9e: test prerelease #4
  • da280ed: Test prerelease script
  • 27e42d7: testing a prerelease
  • 05240a9: test pre #2
  • 33218fe: test prerelease #3
  • 03f3d6f: Test next prerelease
  • Updated dependencies [5c01e9e]
  • Updated dependencies [ed39d40]
  • Updated dependencies [da280ed]
  • Updated dependencies [27e42d7]
  • Updated dependencies [05240a9]
  • Updated dependencies [33218fe]
  • Updated dependencies [03f3d6f]
  • Updated dependencies [649ebcc]
  • Updated dependencies [6dfa0d2]

1.5.1-next.3

Patch Changes

1.5.1-next.2

Patch Changes

1.5.1-next.1

Patch Changes

1.5.1-next.0

Patch Changes

1.5.0

Minor Changes

  • 1b47092: Synchronize LangGraph messages with CopilotKit

Patch Changes

1.5.0-coagents-v0-3.0

Minor Changes

  • Synchronize LangGraph messages with CopilotKit

Patch Changes

1.4.8

Patch Changes

  • ea0c5d5: - fix: prevent sending empty messages via Enter key

    When the input field was empty, pressing Enter would still trigger the send() function despite the send button being correctly disabled. Added the sendDisabled check to the onKeyDown handler to ensure consistent validation between button and keyboard triggers.

    • Added validation check to Enter key handler
    • Ensures empty messages can't be sent via keyboard shortcut
    • Makes behavior consistent with disabled send button state

    Resolves #1129

    • Better error handling
    • Introduce new "EmptyLLMAdapter" for when using CoAgents
    • Improve dev console help options
    • Allow CopilotKit remote endpoint without agents
  • Updated dependencies

1.4.8-next.0

Patch Changes

  • ea0c5d5: - fix: prevent sending empty messages via Enter key

    When the input field was empty, pressing Enter would still trigger the send() function despite the send button being correctly disabled. Added the sendDisabled check to the onKeyDown handler to ensure consistent validation between button and keyboard triggers.

    • Added validation check to Enter key handler
    • Ensures empty messages can't be sent via keyboard shortcut
    • Makes behavior consistent with disabled send button state

    Resolves #1129

1.4.7

Patch Changes

1.4.6

Patch Changes

  • .

1.4.5

Patch Changes

1.4.5-next.0

Patch Changes

1.4.4

Patch Changes

1.4.4-next.4

Patch Changes

1.4.4-next.3

Patch Changes

1.4.4-next.2

Patch Changes

1.4.4-next.1

Patch Changes

1.4.4-next.0

Patch Changes

1.4.3

Patch Changes

1.4.3-pre.0

Patch Changes

1.4.2

Patch Changes

1.4.1

Patch Changes

  • 1721cbd: lower case copilotkit property
  • 1721cbd: add zod conversion
  • 8d0144f: bump
  • 8d0144f: bump
  • 8d0144f: bump
  • e16d95e: New prerelease
  • 1721cbd: Add convertActionsToDynamicStructuredTools to sdk-js
  • CopilotKit Core:

    • Improved error messages and overall logs
    • useCopilotAction.renderAndAwait renamed to .renderAndAwaitForResponse (backwards compatible, will be deprecated in the future)
    • Improved scrolling behavior. It is now possible to scroll up during LLM response generation
    • Added Azure OpenAI integration
    • Updated interfaces for better developer ergonomics

    CoAgents:

    • Renamed remoteActions to remoteEndpoints (backwards compatible, will be deprecated in the future)
    • Support for LangGraph Platform in Remote Endpoints
    • LangGraph JS Support for CoAgents (locally via langgraph dev, langgraph up or deployed to LangGraph Platform)
    • Improved LangSmith integration - requests made through CoAgents will now surface in LangSmith
    • Enhanced state management and message handling

    CopilotKid Back-end SDK:

    • Released a whole-new @copilotkit/sdk-js for building agents with LangGraph JS Support
  • 8d0144f: bump

  • 8d0144f: bump
  • fef1b74: fix assistant message CSS and propagate actions to LG JS
  • Updated dependencies [1721cbd]
  • Updated dependencies [1721cbd]
  • Updated dependencies [8d0144f]
  • Updated dependencies [8d0144f]
  • Updated dependencies [8d0144f]
  • Updated dependencies [e16d95e]
  • Updated dependencies [1721cbd]
  • Updated dependencies
  • Updated dependencies [8d0144f]
  • Updated dependencies [8d0144f]
  • Updated dependencies [fef1b74]

1.4.1-pre.6

Patch Changes

1.4.1-pre.5

Patch Changes

1.4.1-pre.4

Patch Changes

1.4.1-pre.3

Patch Changes

1.4.1-pre.2

Patch Changes

1.4.1-pre.1

Patch Changes

1.4.1-pre.0

Patch Changes

1.4.0

Minor Changes

CopilotKit Core:

  • Improved error messages and overall logs
  • useCopilotAction.renderAndAwait renamed to .renderAndAwaitForResponse (backwards compatible, will be deprecated in the future)
  • Improved scrolling behavior. It is now possible to scroll up during LLM response generation
  • Added Azure OpenAI integration
  • Updated interfaces for better developer ergonomics

CoAgents:

  • Renamed remoteActions to remoteEndpoints (backwards compatible, will be deprecated in the future)
  • Support for LangGraph Platform in Remote Endpoints
  • LangGraph JS Support for CoAgents (locally via langgraph dev, langgraph up or deployed to LangGraph Platform)
  • Improved LangSmith integration - requests made through CoAgents will now surface in LangSmith
  • Enhanced state management and message handling

CopilotKid Back-end SDK:

  • Released a whole-new @copilotkit/sdk-js for building agents with LangGraph JS Support

Patch Changes

  • f6fab28: update tsup config
  • f6fab28: update entry
  • f6fab28: export langchain module
  • 8a77944: Improve LangSmith support
  • f6fab28: Ensure intermediate state config is sent as snake case
  • f6fab28: update entry in tsup config
  • 8a77944: Ensure the last message is sent to LangSmith
  • a5efccd: Revert rxjs changes
  • f6fab28: update entry
  • f6fab28: Update exports
  • f6fab28: Update exports
  • 332d744: Add support for Azure OpenAI
  • f6fab28: Export LangGraph functions
  • f6fab28: Update lockfile
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies
  • Updated dependencies [f6fab28]
  • Updated dependencies [8a77944]
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies [8a77944]
  • Updated dependencies [a5efccd]
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies [332d744]
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]

1.3.16-mme-revert-rxjs-changes.10

Patch Changes

  • f6fab28: update tsup config
  • f6fab28: update entry
  • f6fab28: export langchain module
  • 8a77944: Improve LangSmith support
  • f6fab28: Ensure intermediate state config is sent as snake case
  • f6fab28: update entry in tsup config
  • 8a77944: Ensure the last message is sent to LangSmith
  • Revert rxjs changes
  • f6fab28: update entry
  • f6fab28: Update exports
  • f6fab28: Update exports
  • 332d744: Add support for Azure OpenAI
  • f6fab28: Export LangGraph functions
  • f6fab28: Update lockfile
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies [8a77944]
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies [8a77944]
  • Updated dependencies
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies [332d744]
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]

1.3.15

Patch Changes

1.3.14

Patch Changes

1.3.13

Patch Changes

1.3.12

Patch Changes

1.3.11

Patch Changes

1.3.11-mme-fix-duplicate-messages.0

Patch Changes

1.3.10

Patch Changes

1.3.9

Patch Changes

1.3.8

Patch Changes

1.3.7

Patch Changes

1.3.6

Patch Changes

1.3.5

Patch Changes

1.3.4

Patch Changes

1.3.3

Patch Changes

1.3.2

Patch Changes

1.3.2-mme-discover-actions.0

Patch Changes

1.3.1

Patch Changes

1.3.0

Minor Changes

  • CoAgents and remote actions

Patch Changes

  • 5b63f55: stream intermediate state
  • b6fd3d8: Better message grouping
  • 89420c6: Rename hooks and bugfixes
  • b6e8824: useCoAgent/useCoAgentAction
  • 91c35b9: useAgentState
  • 00be203: Remote actions preview
  • fb15f72: Reduce request size by skipping intermediate state
  • 8ecc3e4: Fix useCoAgent start/stop bug
  • Updated dependencies
  • Updated dependencies [5b63f55]
  • Updated dependencies [b6fd3d8]
  • Updated dependencies [89420c6]
  • Updated dependencies [b6e8824]
  • Updated dependencies [91c35b9]
  • Updated dependencies [00be203]
  • Updated dependencies [fb15f72]
  • Updated dependencies [8ecc3e4]

1.2.1

Patch Changes

  • inject minified css in bundle

    • removes the need to import styles.css manually
    • empty styles.css included in the build for backwards compatibility
    • uses tsup's injectStyles with postcss to bundle and minify the CSS, then inject it as a style tag
    • currently uses my fork of tsup where I added support for async function in injectStyles (must-have for postcss), a PR from my fork to the main library will follow shortly
    • remove material-ui, and use react-icons for icons (same icons as before)
    • remove unused IncludedFilesPreview component
    • updated docs
  • Updated dependencies

1.2.0

Minor Changes

  • Fix errors related to crypto not being found, and other bug fixes

Patch Changes

1.1.2

Patch Changes

1.1.1

Patch Changes

1.1.0

Minor Changes

  • Official support for Groq (GroqAdapter)

Patch Changes

1.0.9

Patch Changes

1.0.8

Patch Changes

1.0.7

Patch Changes

1.0.6

Patch Changes

1.0.5

Patch Changes

1.0.4

Patch Changes

1.0.3

Patch Changes

1.0.2

Patch Changes

1.0.1

Patch Changes

1.0.0

Major Changes

  • b6a4b6eb: V1.0 Release Candidate

    • A robust new protocol between the frontend and the Copilot Runtime
    • Support for Copilot Cloud
    • Generative UI
    • Support for LangChain universal tool calling
    • OpenAI assistant API streaming
  • V1.0 Release

    • A robust new protocol between the frontend and the Copilot Runtime
    • Support for Copilot Cloud
    • Generative UI
    • Support for LangChain universal tool calling
    • OpenAI assistant API streaming

Patch Changes

1.0.0-beta.2

Patch Changes

1.0.0-beta.1

Patch Changes

1.0.0-beta.0

Major Changes

  • V1.0 Release Candidate

    • A robust new protocol between the frontend and the Copilot Runtime
    • Support for Copilot Cloud
    • Generative UI
    • Support for LangChain universal tool calling
    • OpenAI assistant API streaming

Patch Changes

0.37.0

Minor Changes

  • f771353: Fix: Stale CopilotReadable
  • 9df8d43: Remove unneeded tailwind components
  • CSS improvements, useCopilotChat, invisible messages

Patch Changes

0.37.0-mme-fix-textarea-css.1

Minor Changes

  • Remove unneeded tailwind components

Patch Changes

0.37.0-mme-fix-feedback-readable.0

Minor Changes

  • Fix: Stale CopilotReadable

Patch Changes

0.36.0

Minor Changes

  • 8baa862: Add push to talk prototype
  • chat suggestions, standalone chat component, gemini adapter, push to talk

Patch Changes

0.36.0-mme-push-to-talk.0

Minor Changes

  • Add push to talk prototype

Patch Changes

0.22.0

Minor Changes

  • 718520b: gpt-4-turbo-april-2024 function calling fixes
  • 95bcbd8: streamline cloud configuration
  • 95bcbd8: Rename
  • 95bcbd8: Upgrade langchain
  • 95bcbd8: Support input guardrails (cloud)
  • 95bcbd8: Unify api key handling
  • CopilotCloud V1, useCopilotReadable and more...
  • 95bcbd8: Get api key from headers dict
  • 95bcbd8: Update comments
  • 95bcbd8: Include reason in guardrails response
  • 718520b: gpt-4-turbo-april-2024
  • 95bcbd8: Update comments
  • 5f6f57a: fix backend function calling return values
  • 95bcbd8: Retrieve public API key

Patch Changes

  • Updated dependencies [718520b]
  • Updated dependencies [95bcbd8]
  • Updated dependencies [95bcbd8]
  • Updated dependencies [95bcbd8]
  • Updated dependencies [95bcbd8]
  • Updated dependencies [95bcbd8]
  • Updated dependencies
  • Updated dependencies [95bcbd8]
  • Updated dependencies [95bcbd8]
  • Updated dependencies [95bcbd8]
  • Updated dependencies [718520b]
  • Updated dependencies [95bcbd8]
  • Updated dependencies [5f6f57a]
  • Updated dependencies [95bcbd8]

0.22.0-mme-cloud.7

Minor Changes

  • Get api key from headers dict

Patch Changes

0.22.0-mme-cloud.6

Minor Changes

  • Upgrade langchain

Patch Changes

0.22.0-mme-cloud.5

Minor Changes

  • Update comments

Patch Changes

0.22.0-mme-cloud.4

Minor Changes

  • Update comments

Patch Changes

0.22.0-mme-cloud.3

Minor Changes

  • 85c029b: streamline cloud configuration
  • Rename
  • a5ade3b: Support input guardrails (cloud)
  • 12ff590: Unify api key handling
  • f0c4745: Include reason in guardrails response
  • 17f4b1b: Retrieve public API key

Patch Changes

0.22.0-function-calling-fixes.2

Minor Changes

  • fix backend function calling return values

Patch Changes

0.22.0-function-calling-fixes.1

Minor Changes

  • gpt-4-turbo-april-2024 function calling fixes

Patch Changes

0.22.0-alpha.0

Minor Changes

  • gpt-4-turbo-april-2024

Patch Changes

0.21.0

Minor Changes

  • 1f06d29: declare esm/cjs/types in export
  • fix esm error
  • 5a0b2cf: Inline codeblock style to avoid ESM error
  • e12b921: ESM by default

Patch Changes

0.21.0-mme-esm-error.2

Minor Changes

  • Inline codeblock style to avoid ESM error

Patch Changes

0.21.0-mme-esm-error.1

Minor Changes

  • declare esm/cjs/types in export

Patch Changes

0.21.0-mme-esm-error.0

Minor Changes

  • ESM by default

Patch Changes

0.20.0

Minor Changes

  • 899aa6e: Backend improvements for running on GCP
  • Improve streamHttpServerResponse for express and firebase apps

Patch Changes

0.20.0-mme-firebase-fixes.0

Minor Changes

  • Backend improvements for running on GCP

Patch Changes

0.19.0

Minor Changes

  • Improve Next.js support and action rendering

Patch Changes

0.18.0

Minor Changes

  • c4010e7: Pre Release
  • be00d61: Alpha
  • ec8481c: Alpha
  • 3fbee5d: OpenAIAdapter-getter
  • e09dc44: Test backward compatibility of AnnotatedFunction on the backend
  • 3f5ad60: OpenAIAdapter: make openai instance gettable
  • 0dd6180: QA
  • 225812d: QA new action type
  • New actions: custom chat components, and typed arguments

Patch Changes

  • Updated dependencies [c4010e7]
  • Updated dependencies [be00d61]
  • Updated dependencies [ec8481c]
  • Updated dependencies [3fbee5d]
  • Updated dependencies [e09dc44]
  • Updated dependencies [3f5ad60]
  • Updated dependencies [0dd6180]
  • Updated dependencies [225812d]
  • Updated dependencies

0.18.0-mme-deprecate-annotated-function.4

Minor Changes

  • Test backward compatibility of AnnotatedFunction on the backend

Patch Changes

0.18.0-mme-pre-release.3

Minor Changes

  • Pre Release
  • 3fbee5d: OpenAIAdapter-getter
  • 3f5ad60: OpenAIAdapter: make openai instance gettable

Patch Changes

0.18.0-mme-function-call-labels.2

Minor Changes

  • be00d61: Alpha
  • QA

Patch Changes

0.18.0-mme-experimental-actions.1

Minor Changes

  • Alpha

Patch Changes

0.18.0-mme-experimental-actions.0

Minor Changes

  • QA new action type

Patch Changes

0.17.1

Patch Changes

  • 5ec8ad4: fix- bring back removeBackendOnlyProps
  • 5a154d0: fix: bring back removeBackendOnlyProps
  • fix: bring back removeBackendOnlyProps
  • Updated dependencies [5ec8ad4]
  • Updated dependencies [5a154d0]
  • Updated dependencies

0.17.1-atai-0223-fix-backendOnlyProps.1

Patch Changes

0.17.1-atai-0223-fix-backendOnlyProps.0

Patch Changes

0.17.0

Minor Changes

  • CopilotTask, function return values, LangChain support, LangServe support
  • 401e474: Test the tools API
  • 2f3296e: Test automation

Patch Changes

0.17.0-beta-automation.1

Minor Changes

  • Test automation

Patch Changes

0.17.0-tools.0

Minor Changes

  • Test the tools API

Patch Changes

0.16.0

Minor Changes

  • node CopilotBackend support
  • 58a8524: clean node example impl
  • a34a226: node-native backend support

Patch Changes

0.16.0-alpha.1

Minor Changes

  • clean node example impl

Patch Changes

0.16.0-alpha.0

Minor Changes

  • node-native backend support

Patch Changes

0.15.0

Minor Changes

  • eba87c7: .4
  • 29ee27e: New Copilot ui
  • 61168c7: no treeshake
  • fb32fe3: .2
  • eba87c7: .3
  • new chatbot ui, new component names, new build system, new docs
  • 61168c7: no treeshake take 2
  • 61168c7: remove treeshake in build
  • fb32fe3: build naming refactor
  • eba87c7: .5
  • 61168c7: cache clean
  • fb32fe3: .3

Patch Changes

  • Updated dependencies [eba87c7]
  • Updated dependencies [29ee27e]
  • Updated dependencies [61168c7]
  • Updated dependencies [fb32fe3]
  • Updated dependencies [eba87c7]
  • Updated dependencies
  • Updated dependencies [61168c7]
  • Updated dependencies [61168c7]
  • Updated dependencies [fb32fe3]
  • Updated dependencies [eba87c7]
  • Updated dependencies [61168c7]
  • Updated dependencies [fb32fe3]

0.15.0-alpha.9

Minor Changes

  • cache clean

Patch Changes

0.15.0-alpha.8

Minor Changes

  • no treeshake

Patch Changes

0.15.0-alpha.7

Minor Changes

  • no treeshake take 2

Patch Changes

0.15.0-alpha.6

Minor Changes

  • remove treeshake in build

Patch Changes

0.15.0-alpha.5

Minor Changes

  • .5

Patch Changes

0.15.0-alpha.4

Minor Changes

  • .4

Patch Changes

0.15.0-alpha.3

Minor Changes

  • .3

Patch Changes

0.15.0-alpha.2

Minor Changes

  • .2
  • .3

Patch Changes

0.15.0-alpha.1

Minor Changes

  • build naming refactor

Patch Changes

0.15.0-alpha.0

Minor Changes

  • New Copilot ui

Patch Changes

0.14.1

Patch Changes

  • stop generating button working
  • aa6bc5a: fix stop generate
  • cf0bde6: change order of operations on stop cleanup
  • Updated dependencies
  • Updated dependencies [aa6bc5a]
  • Updated dependencies [cf0bde6]

0.14.1-alpha.1

Patch Changes

0.14.1-alpha.0

Patch Changes

0.14.0

Minor Changes

  • factor useChat into internal core
  • a7b417a: insertion default prompt update
  • 88d6654: release useChat fixes
  • 51de9d5: textarea editing: default prompt + few shot update
  • fa84257: remove vercel ai
  • 98a37c8: strictly propagate copilot api params through the fetch arguments - not through any constructors
  • 250032d: useChat: do not separately propagate options.url to constructor

Patch Changes

  • Updated dependencies
  • Updated dependencies [a7b417a]
  • Updated dependencies [88d6654]
  • Updated dependencies [51de9d5]
  • Updated dependencies [fa84257]
  • Updated dependencies [98a37c8]
  • Updated dependencies [250032d]

0.14.0-alpha.5

Minor Changes

  • release useChat fixes

Patch Changes

0.14.0-alpha.4

Minor Changes

  • insertion default prompt update

Patch Changes

0.14.0-alpha.3

Minor Changes

  • textarea editing: default prompt + few shot update

Patch Changes

0.14.0-alpha.2

Minor Changes

  • useChat: do not separately propagate options.url to constructor

Patch Changes

0.14.0-alpha.1

Minor Changes

  • strictly propagate copilot api params through the fetch arguments - not through any constructors

Patch Changes

0.14.0-alpha.0

Minor Changes

  • remove vercel ai

Patch Changes

0.13.1

Patch Changes

0.13.0

Minor Changes

  • 8a5cecd: only forward functions if non-empty
  • 87f1fa0: rebase
  • 15d4afc: debugging
  • c40a0d1: Filter out empty function descriptions
  • prep for chat protocol v2
  • bbd152e: backend sdks prep
  • 8517bb1: trying again
  • 478840a: carry function propagation fix to chat v2

Patch Changes

  • Updated dependencies [8a5cecd]
  • Updated dependencies [87f1fa0]
  • Updated dependencies [15d4afc]
  • Updated dependencies [c40a0d1]
  • Updated dependencies
  • Updated dependencies [bbd152e]
  • Updated dependencies [8517bb1]
  • Updated dependencies [478840a]

0.13.0-alpha.6

Minor Changes

  • rebase

Patch Changes

0.13.0-alpha.5

Minor Changes

  • carry function propagation fix to chat v2

Patch Changes

0.13.0-alpha.4

Minor Changes

  • only forward functions if non-empty

Patch Changes

0.13.0-alpha.3

Minor Changes

  • debugging

Patch Changes

0.13.0-alpha.2

Minor Changes

  • trying again

Patch Changes

0.13.0-alpha.1

Minor Changes

  • Filter out empty function descriptions

Patch Changes

0.13.0-alpha.0

Minor Changes

  • backend sdks prep

Patch Changes

0.12.0

Minor Changes

  • shouldToggleHoveringEditorOnKeyPress

Patch Changes

0.11.0

Minor Changes

  • contextCategories no longer optional for reading context

Patch Changes

0.10.1

Patch Changes

0.10.0

Minor Changes

  • support for custom api headers + body, fixed es5 build error on import
  • 9abfea6: js import
  • 2b9591a: esm.js maybe
  • 2b9591a: cjs exp
  • 2b9591a: treeshake
  • 2b9591a: commonJS
  • 222f5e6: undo alpha changes
  • 2b9591a: cjs maybe

Patch Changes

  • Updated dependencies
  • Updated dependencies [9abfea6]
  • Updated dependencies [2b9591a]
  • Updated dependencies [2b9591a]
  • Updated dependencies [2b9591a]
  • Updated dependencies [2b9591a]
  • Updated dependencies [2b9591a]
  • Updated dependencies [222f5e6]
  • Updated dependencies [2b9591a]

0.10.0-alpha.7

Minor Changes

  • js import

Patch Changes

0.10.0-alpha.6

Minor Changes

  • undo alpha changes

Patch Changes

0.10.0-alpha.5

Minor Changes

  • commonJS

Patch Changes

0.10.0-alpha.4

Minor Changes

  • esm.js maybe

Patch Changes

0.10.0-alpha.3

Minor Changes

  • cjs maybe

Patch Changes

0.10.0-alpha.2

Minor Changes

  • cjs exp

Patch Changes

0.10.0-alpha.1

Minor Changes

  • treeshake

Patch Changes

0.9.3-alpha.0

Patch Changes

0.9.2

Patch Changes

0.9.1

Patch Changes

0.9.0

Minor Changes

  • 915e89c: bump alpha version after link dep
  • 1b330b5: out of beta: centralized api, textarea insertions/edits
  • e4ce3ab: textarea edits mvp
  • 9e201c5: textarea insertions deletions etc
  • 915e89c: again
  • 7f8d531: package json
  • 96f5630: react-ui missing declaration
  • 1992035: import esm not cjs variant
  • c13ffcb: minor bugfix
  • e4fe6a5: copilot textarea documents - provide with code skeleton
  • 8e9f9b1: api endpoint centralization
  • eed7c64: remove coldarkDark style from react-syntax-highlighter
  • 5829585: beta bump

Patch Changes

  • 12407db: rebase master
  • 939454e: prettify
  • Updated dependencies [1b330b5]
  • Updated dependencies [e4ce3ab]
  • Updated dependencies [9e201c5]
  • Updated dependencies [c13ffcb]
  • Updated dependencies [12407db]
  • Updated dependencies [e4fe6a5]
  • Updated dependencies [8e9f9b1]
  • Updated dependencies [939454e]

0.9.0-alpha.11

Minor Changes

  • copilot textarea documents - provide with code skeleton

Patch Changes

0.9.0-alpha.10

Minor Changes

  • minor bugfix

Patch Changes

0.9.0-alpha.9

Minor Changes

  • api endpoint centralization

Patch Changes

0.9.0-alpha.8

Minor Changes

  • package json

Patch Changes

0.9.0-alpha.7

Minor Changes

  • react-ui missing declaration

Patch Changes

0.9.0-alpha.6

Minor Changes

  • beta bump

0.9.0-alpha.5

Minor Changes

  • remove coldarkDark style from react-syntax-highlighter

0.9.0-alpha.4

Minor Changes

  • import esm not cjs variant

0.9.0-alpha.3

Minor Changes

  • textarea edits mvp

Patch Changes

0.9.0-alpha.2

Patch Changes

0.9.0-alpha.1

Patch Changes

0.9.0-alpha.0

Minor Changes

  • textarea insertions deletions etc

Patch Changes

0.8.0

Minor Changes

  • ce193f7: Dependency fix

Patch Changes

0.7.0

Minor Changes

  • Made CopilotTextarea standalone for clarity

0.6.0

Minor Changes

  • Introduced CopilotTextarea

Patch Changes

0.5.0

Minor Changes

  • bring private packages back into the void
  • added tsconfig and eslint-config-custom to copilotkit scope

Patch Changes

0.4.0

Minor Changes

  • first beta release

Patch Changes

0.3.0

Minor Changes

  • working version
  • 9d2f3cb: semi compiling

Patch Changes

0.2.0

Minor Changes

  • react core initialization

0.1.0

Minor Changes

1.10.1-next.2

Patch Changes

  • edb87b3: - fix: address issue where two

1.10.1-next.1

Patch Changes

1.10.1-next.0

Patch Changes

1.10.0

Minor Changes

  • 8674da1: - refactor(headless): completely overhaul headless ui to better support agentic features

    Headless UI has been in a bad state for a bit now. When we added support for different agentic runtimes we acquired tech-debt that, with this PR, is being alleviated.

    As such, the following features have been updated to be completely functional with Headless UI.

    • Generative UI
    • Suggestions
    • Agentic Generative UI
    • Interrupts

    In addition, a variety of QOL changes have been made.

    • New AG-UI based message types
    • Inline code rendering is fixed

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

Patch Changes

  • 967d0ab: - refactor(chat): separate useCopilotChat into internal implementation and public API
  • 2354be4: - feat(chat): implement custom error handling in CopilotChat and Modal components

    • Added renderError prop to CopilotChat for inline error rendering.
    • Introduced triggerChatError function to manage chat-specific errors and observability hooks.
    • Updated Modal to handle observability hooks with public API key checks.
    • Enhanced CopilotObservabilityHooks interface to include onError for error event handling.
  • a8c0263: - feat: add event hooks system for chat components

  • 6d1de58: - fix: address issues that would cause headless UI breaking changes in the next release

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

    • fix: more fixes addressing breaking changes in new Headless UI

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

    • chore: address linting issues

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

    • chore: fixing branding and docs

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

    • chore: more docs fixing

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

  • Updated dependencies [967d0ab]

  • Updated dependencies [a8c0263]
  • Updated dependencies [8674da1]
  • Updated dependencies [6d1de58]
  • Updated dependencies [6de24ce]
  • Updated dependencies [b64555d]

1.10.0-next.13

Patch Changes

1.10.0-next.12

Patch Changes

1.10.0-next.11

Patch Changes

1.10.0-next.10

Patch Changes

1.10.0-next.9

Patch Changes

1.10.0-next.8

Patch Changes

1.10.0-next.7

Patch Changes

1.10.0-next.6

Patch Changes

1.10.0-next.5

Patch Changes

1.10.0-next.4

Patch Changes

1.10.0-next.3

Patch Changes

1.10.0-next.2

Patch Changes

1.10.0-next.1

Patch Changes

1.10.0-next.0

Minor Changes

  • 8674da1: - refactor(headless): completely overhaul headless ui to better support agentic features

    Headless UI has been in a bad state for a bit now. When we added support for different agentic runtimes we acquired tech-debt that, with this PR, is being alleviated.

    As such, the following features have been updated to be completely functional with Headless UI.

    • Generative UI
    • Suggestions
    • Agentic Generative UI
    • Interrupts

    In addition, a variety of QOL changes have been made.

    • New AG-UI based message types
    • Inline code rendering is fixed

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

Patch Changes

1.9.3

Patch Changes

1.9.3-next.4

Patch Changes

1.9.3-next.3

Patch Changes

1.9.3-next.2

Patch Changes

1.9.3-next.1

Patch Changes

1.9.3-next.0

Patch Changes

1.9.2

Patch Changes

  • e1de032: - fix: synchronously execute renderAndWaitForResponse

    Previously, it was impossible to execute multiple human-in-the-loop (renderAndWaitForResponse) calls in a row. Ultimately this was due to an issue with how CopilotKit was rendering the updates when multiple renderAndWaitForResponse actions appeared on screen due to a reference based approach.

    With this change, actions will be executed in a synchronous way appearing almost queue like. This works with any combination of action given much more freedom when asking for user input.

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

  • 10345a5: - feat: structured error visibility system for streaming errors

  • abe23c3: - feat: enable hiding stop button
  • 35537f1: - fix: memoize nested components to not rerender when content changes
  • Updated dependencies [cbeccb5]
  • Updated dependencies [3f8c575]
  • Updated dependencies [fac89c2]
  • Updated dependencies [e1de032]
  • Updated dependencies [92e8d1c]
  • Updated dependencies [9169ad7]
  • Updated dependencies [c75a04f]
  • Updated dependencies [c75a04f]
  • Updated dependencies [fe9009c]
  • Updated dependencies [1d1c51d]
  • Updated dependencies [10345a5]
  • Updated dependencies [9169ad7]
  • Updated dependencies [35537f1]

1.9.2-next.26

Patch Changes

1.9.2-next.25

Patch Changes

1.9.2-next.24

Patch Changes

1.9.2-next.23

Patch Changes

1.9.2-next.22

Patch Changes

1.9.2-next.21

Patch Changes

1.9.2-next.20

Patch Changes

  • e1de032: - fix: synchronously execute renderAndWaitForResponse

    Previously, it was impossible to execute multiple human-in-the-loop (renderAndWaitForResponse) calls in a row. Ultimately this was due to an issue with how CopilotKit was rendering the updates when multiple renderAndWaitForResponse actions appeared on screen due to a reference based approach.

    With this change, actions will be executed in a synchronous way appearing almost queue like. This works with any combination of action given much more freedom when asking for user input.

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

  • Updated dependencies [e1de032]

1.9.2-next.19

Patch Changes

1.9.2-next.18

Patch Changes

1.9.2-next.17

Patch Changes

1.9.2-next.16

Patch Changes

1.9.2-next.15

Patch Changes

1.9.2-next.14

Patch Changes

1.9.2-next.13

Patch Changes

1.9.2-next.12

Patch Changes

1.9.2-next.11

Patch Changes

1.9.2-next.10

Patch Changes

1.9.2-next.9

Patch Changes

1.9.2-next.8

Patch Changes

1.9.2-next.7

Patch Changes

1.9.2-next.6

Patch Changes

1.9.2-next.5

Patch Changes

1.9.2-next.4

Patch Changes

1.9.2-next.3

Patch Changes

1.9.2-next.2

Patch Changes

1.9.2-next.1

Patch Changes

1.9.2-next.0

Patch Changes

1.9.1

Patch Changes

1.9.1-next.0

Patch Changes

1.9.0

Patch Changes

1.9.0-next.2

Patch Changes

1.8.15-next.1

Patch Changes

1.8.15-next.0

Patch Changes

1.8.14

Patch Changes

1.8.14-next.5

Patch Changes

1.8.14-next.4

Patch Changes

1.8.14-next.3

Patch Changes

1.8.14-next.2

Patch Changes

1.8.14-next.1

Patch Changes

1.8.14-next.0

Patch Changes

1.8.13

Patch Changes

1.8.13-next.3

Patch Changes

1.8.13-next.2

Patch Changes

1.8.13-next.1

Patch Changes

1.8.13-next.0

Patch Changes

1.8.12

Patch Changes

1.8.12-next.6

Patch Changes

1.8.12-next.5

Patch Changes

1.8.12-next.4

Patch Changes

1.8.12-next.3

Patch Changes

1.8.12-next.2

Patch Changes

1.8.12-next.1

Patch Changes

1.8.12-next.0

Patch Changes

1.8.11

Patch Changes

1.8.11-next.1

Patch Changes

1.8.11-next.0

Patch Changes

1.8.10

Patch Changes

1.8.10-next.3

Patch Changes

1.8.10-next.2

Patch Changes

1.8.10-next.1

Patch Changes

1.8.10-next.0

Patch Changes

1.8.9

Patch Changes

1.8.9-next.0

Patch Changes

1.8.8

Patch Changes

1.8.8-next.1

Patch Changes

1.8.8-next.0

Patch Changes

1.8.7

Patch Changes

1.8.7-next.0

Patch Changes

1.8.6

Patch Changes

1.8.6-next.0

Patch Changes

1.8.5

Patch Changes

1.8.5-next.5

Patch Changes

1.8.5-next.4

Patch Changes

1.8.5-next.3

Patch Changes

1.8.5-next.2

Patch Changes

1.8.5-next.1

Patch Changes

1.8.5-next.0

Patch Changes

1.8.4

Patch Changes

1.8.4-next.4

Patch Changes

1.8.4-next.3

Patch Changes

1.8.4-next.2

Patch Changes

1.8.4-next.1

Patch Changes

1.8.4-next.0

Patch Changes

1.8.3

Patch Changes

1.8.3-next.0

Patch Changes

1.8.2-next.3

Patch Changes

1.8.2-next.2

Patch Changes

1.8.2-next.1

Patch Changes

1.8.2-next.0

Patch Changes

1.8.1

Patch Changes

1.8.1-next.1

Patch Changes

1.8.1-next.0

Patch Changes

1.8.0

Minor Changes

  • 20f0727: - feat(chat): redesign chat

Patch Changes

  • 099807a: - fix: adjust dev console menus to dark theme
  • c11fab9: - chore(react-ui): Add DefaultResponseRenderer and DefaultStateRenderer components
  • a50f4c1: - move default components out of ui
  • 5f184b7: - fix: remove response button
    • fix: use customizable assistant message icons
  • d8e354b: - fix: re-align customization variable names and usage
  • Updated dependencies [73f5eaa]
  • Updated dependencies [a50f4c1]

1.8.0-next.8

Patch Changes

1.8.0-next.7

Patch Changes

1.8.0-next.6

Patch Changes

1.8.0-next.5

Patch Changes

1.8.0-next.4

Patch Changes

1.8.0-next.3

Minor Changes

  • 20f0727: - feat(chat): redesign chat

Patch Changes

1.7.2-next.2

Patch Changes

1.7.2-next.1

Patch Changes

1.7.2-next.0

Patch Changes

1.7.1

Patch Changes

1.7.1-next.0

Patch Changes

1.7.0

Patch Changes

1.7.0-next.1

Patch Changes

1.7.0-next.0

Patch Changes

1.6.0

Patch Changes

1.6.0-next.12

Patch Changes

1.6.0-next.11

Patch Changes

1.6.0-next.10

Patch Changes

1.6.0-next.9

Patch Changes

1.6.0-next.8

Patch Changes

1.6.0-next.7

Patch Changes

1.6.0-next.6

Patch Changes

1.6.0-next.5

Patch Changes

1.6.0-next.4

Patch Changes

1.6.0-next.3

Patch Changes

1.6.0-next.2

Patch Changes

1.6.0-next.1

Patch Changes

1.6.0-next.0

Patch Changes

1.5.20

Patch Changes

1.5.20-next.0

Patch Changes

1.5.19

Patch Changes

1.5.19-next.1

Patch Changes

1.5.19-next.0

Patch Changes

1.5.18

Patch Changes

1.5.18-next.3

Patch Changes

1.5.18-next.2

Patch Changes

1.5.18-next.1

Patch Changes

1.5.18-next.0

Patch Changes

1.5.17

Patch Changes

1.5.17-next.0

Patch Changes

1.5.16

Patch Changes

1.5.16-next.2

Patch Changes

1.5.16-next.1

Patch Changes

1.5.16-next.0

Patch Changes

1.5.15

Patch Changes

  • 7b3141d: - feat(interrupt): support LG interrupt with useLangGraphInterrupt hook
    • chore(interrupt): add e2e test to interrupt functionality
    • feat(interrupt): add support for multiple interrupts and conditions
  • 66bd0f7: - fix(react-ui): check for updates endpoint to point to production
  • Updated dependencies [0dc0f43]
  • Updated dependencies [06f9f35]
  • Updated dependencies [7b3141d]
  • Updated dependencies [c9ae305]
  • Updated dependencies [0bbb4ab]

1.5.15-next.8

Patch Changes

1.5.15-next.7

Patch Changes

1.5.15-next.6

Patch Changes

1.5.15-next.5

Patch Changes

1.5.15-next.4

Patch Changes

1.5.15-next.3

Patch Changes

1.5.15-next.2

Patch Changes

1.5.15-next.1

Patch Changes

1.5.15-next.0

Patch Changes

1.5.14

Patch Changes

1.5.14-next.0

Patch Changes

1.5.13

Patch Changes

1.5.13-next.0

Patch Changes

1.5.12

Patch Changes

1.5.12-next.7

Patch Changes

1.5.12-next.6

Patch Changes

1.5.12-next.5

Patch Changes

1.5.12-next.4

Patch Changes

1.5.12-next.3

Patch Changes

1.5.12-next.2

Patch Changes

1.5.12-next.1

Patch Changes

1.5.12-next.0

Patch Changes

1.5.11

Patch Changes

  • 1fc7fa5: test changelog
  • c4a6aa5: test release notes
  • 716bd5c: test changelog
  • a35d447: test changelog
  • 4ae197e: Test release notes
  • 4211318: test changelog
  • 8166ac6: Test release notes
  • d431537: Test release notes
  • Updated dependencies [72f9e58]
  • Updated dependencies [db3d539]
  • Updated dependencies [aecb6f4]
  • Updated dependencies [e5d588d]
  • Updated dependencies [0a2e07e]
  • Updated dependencies [4211318]
  • Updated dependencies [9b3bdc2]
  • Updated dependencies [d431537]

1.5.11-next.0

Patch Changes

  • 1fc7fa5: test changelog
  • c4a6aa5: test release notes
  • 716bd5c: test changelog
  • a35d447: test changelog
  • 4ae197e: Test release notes
  • 4211318: test changelog
  • 8166ac6: Test release notes
  • d431537: Test release notes
  • Updated dependencies [72f9e58]
  • Updated dependencies [db3d539]
  • Updated dependencies [aecb6f4]
  • Updated dependencies [e5d588d]
  • Updated dependencies [0a2e07e]
  • Updated dependencies [4211318]
  • Updated dependencies [9b3bdc2]
  • Updated dependencies [d431537]

1.5.10

Patch Changes

  • 1fc7fa5: test changelog
  • c4a6aa5: test release notes
  • 716bd5c: test changelog
  • a35d447: test changelog
  • 4ae197e: Test release notes
  • 4211318: test changelog
  • 8166ac6: Test release notes
  • d431537: Test release notes
  • Updated dependencies [72f9e58]
  • Updated dependencies [db3d539]
  • Updated dependencies [aecb6f4]
  • Updated dependencies [e5d588d]
  • Updated dependencies [4211318]
  • Updated dependencies [9b3bdc2]
  • Updated dependencies [d431537]

1.5.10-next.0

Patch Changes

1.5.9

Patch Changes

  • 1fc7fa5: test changelog
  • c4a6aa5: test release notes
  • 716bd5c: test changelog
  • a35d447: test changelog
  • 4ae197e: Test release notes
  • 4211318: test changelog
  • 8166ac6: Test release notes
  • d431537: Test release notes
  • Updated dependencies [72f9e58]
  • Updated dependencies [db3d539]
  • Updated dependencies [e5d588d]
  • Updated dependencies [4211318]
  • Updated dependencies [9b3bdc2]
  • Updated dependencies [d431537]

1.5.8

Patch Changes

  • 1fc7fa5: test changelog
  • c4a6aa5: test release notes
  • a35d447: test changelog
  • 4ae197e: Test release notes
  • 4211318: test changelog
  • 8166ac6: Test release notes
  • d431537: Test release notes
  • Updated dependencies [72f9e58]
  • Updated dependencies [db3d539]
  • Updated dependencies [e5d588d]
  • Updated dependencies [4211318]
  • Updated dependencies [9b3bdc2]
  • Updated dependencies [d431537]

1.5.6-next.0

Patch Changes

1.5.5-next.5

Patch Changes

1.5.5-next.3

Patch Changes

1.5.5-next.2

Patch Changes

1.5.4

Patch Changes

1.5.3

Patch Changes

1.5.2

Patch Changes

1.5.1

Patch Changes

  • 5c01e9e: test prerelease #4
  • da280ed: Test prerelease script
  • 27e42d7: testing a prerelease
  • 05240a9: test pre #2
  • 33218fe: test prerelease #3
  • 03f3d6f: Test next prerelease
  • Updated dependencies [5c01e9e]
  • Updated dependencies [ed39d40]
  • Updated dependencies [da280ed]
  • Updated dependencies [27e42d7]
  • Updated dependencies [05240a9]
  • Updated dependencies [33218fe]
  • Updated dependencies [03f3d6f]
  • Updated dependencies [649ebcc]
  • Updated dependencies [6dfa0d2]

1.5.1-next.3

Patch Changes

1.5.1-next.2

Patch Changes

1.5.1-next.1

Patch Changes

1.5.1-next.0

Patch Changes

1.5.0

Minor Changes

  • 1b47092: Synchronize LangGraph messages with CopilotKit

Patch Changes

1.5.0-coagents-v0-3.0

Minor Changes

  • Synchronize LangGraph messages with CopilotKit

Patch Changes

1.4.8

Patch Changes

  • ea0c5d5: - fix: prevent sending empty messages via Enter key

    When the input field was empty, pressing Enter would still trigger the send() function despite the send button being correctly disabled. Added the sendDisabled check to the onKeyDown handler to ensure consistent validation between button and keyboard triggers.

    • Added validation check to Enter key handler
    • Ensures empty messages can't be sent via keyboard shortcut
    • Makes behavior consistent with disabled send button state

    Resolves #1129

    • Better error handling
    • Introduce new "EmptyLLMAdapter" for when using CoAgents
    • Improve dev console help options
    • Allow CopilotKit remote endpoint without agents
  • Updated dependencies

1.4.8-next.0

Patch Changes

  • ea0c5d5: - fix: prevent sending empty messages via Enter key

    When the input field was empty, pressing Enter would still trigger the send() function despite the send button being correctly disabled. Added the sendDisabled check to the onKeyDown handler to ensure consistent validation between button and keyboard triggers.

    • Added validation check to Enter key handler
    • Ensures empty messages can't be sent via keyboard shortcut
    • Makes behavior consistent with disabled send button state

    Resolves #1129

1.4.7

Patch Changes

1.4.6

Patch Changes

  • .

1.4.5

Patch Changes

1.4.5-next.0

Patch Changes

1.4.4

Patch Changes

1.4.4-next.4

Patch Changes

1.4.4-next.3

Patch Changes

1.4.4-next.2

Patch Changes

1.4.4-next.1

Patch Changes

1.4.4-next.0

Patch Changes

1.4.3

Patch Changes

1.4.3-pre.0

Patch Changes

1.4.2

Patch Changes

1.4.1

Patch Changes

  • 1721cbd: lower case copilotkit property
  • 1721cbd: add zod conversion
  • 8d0144f: bump
  • 8d0144f: bump
  • 8d0144f: bump
  • e16d95e: New prerelease
  • 1721cbd: Add convertActionsToDynamicStructuredTools to sdk-js
  • CopilotKit Core:

    • Improved error messages and overall logs
    • useCopilotAction.renderAndAwait renamed to .renderAndAwaitForResponse (backwards compatible, will be deprecated in the future)
    • Improved scrolling behavior. It is now possible to scroll up during LLM response generation
    • Added Azure OpenAI integration
    • Updated interfaces for better developer ergonomics

    CoAgents:

    • Renamed remoteActions to remoteEndpoints (backwards compatible, will be deprecated in the future)
    • Support for LangGraph Platform in Remote Endpoints
    • LangGraph JS Support for CoAgents (locally via langgraph dev, langgraph up or deployed to LangGraph Platform)
    • Improved LangSmith integration - requests made through CoAgents will now surface in LangSmith
    • Enhanced state management and message handling

    CopilotKid Back-end SDK:

    • Released a whole-new @copilotkit/sdk-js for building agents with LangGraph JS Support
  • 8d0144f: bump

  • 8d0144f: bump
  • fef1b74: fix assistant message CSS and propagate actions to LG JS
  • Updated dependencies [1721cbd]
  • Updated dependencies [1721cbd]
  • Updated dependencies [8d0144f]
  • Updated dependencies [8d0144f]
  • Updated dependencies [8d0144f]
  • Updated dependencies [e16d95e]
  • Updated dependencies [1721cbd]
  • Updated dependencies
  • Updated dependencies [8d0144f]
  • Updated dependencies [8d0144f]
  • Updated dependencies [fef1b74]

1.4.1-pre.6

Patch Changes

1.4.1-pre.5

Patch Changes

1.4.1-pre.4

Patch Changes

1.4.1-pre.3

Patch Changes

1.4.1-pre.2

Patch Changes

1.4.1-pre.1

Patch Changes

1.4.1-pre.0

Patch Changes

1.4.0

Minor Changes

CopilotKit Core:

  • Improved error messages and overall logs
  • useCopilotAction.renderAndAwait renamed to .renderAndAwaitForResponse (backwards compatible, will be deprecated in the future)
  • Improved scrolling behavior. It is now possible to scroll up during LLM response generation
  • Added Azure OpenAI integration
  • Updated interfaces for better developer ergonomics

CoAgents:

  • Renamed remoteActions to remoteEndpoints (backwards compatible, will be deprecated in the future)
  • Support for LangGraph Platform in Remote Endpoints
  • LangGraph JS Support for CoAgents (locally via langgraph dev, langgraph up or deployed to LangGraph Platform)
  • Improved LangSmith integration - requests made through CoAgents will now surface in LangSmith
  • Enhanced state management and message handling

CopilotKid Back-end SDK:

  • Released a whole-new @copilotkit/sdk-js for building agents with LangGraph JS Support

Patch Changes

  • f6fab28: update tsup config
  • f6fab28: update entry
  • f6fab28: export langchain module
  • 8a77944: Improve LangSmith support
  • f6fab28: Ensure intermediate state config is sent as snake case
  • f6fab28: update entry in tsup config
  • 8a77944: Ensure the last message is sent to LangSmith
  • a5efccd: Revert rxjs changes
  • f6fab28: update entry
  • f6fab28: Update exports
  • f6fab28: Update exports
  • 332d744: Add support for Azure OpenAI
  • f6fab28: Export LangGraph functions
  • f6fab28: Update lockfile
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies
  • Updated dependencies [f6fab28]
  • Updated dependencies [8a77944]
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies [8a77944]
  • Updated dependencies [a5efccd]
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies [332d744]
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]

1.3.16-mme-revert-rxjs-changes.10

Patch Changes

  • f6fab28: update tsup config
  • f6fab28: update entry
  • f6fab28: export langchain module
  • 8a77944: Improve LangSmith support
  • f6fab28: Ensure intermediate state config is sent as snake case
  • f6fab28: update entry in tsup config
  • 8a77944: Ensure the last message is sent to LangSmith
  • Revert rxjs changes
  • f6fab28: update entry
  • f6fab28: Update exports
  • f6fab28: Update exports
  • 332d744: Add support for Azure OpenAI
  • f6fab28: Export LangGraph functions
  • f6fab28: Update lockfile
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies [8a77944]
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies [8a77944]
  • Updated dependencies
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies [332d744]
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]

1.3.15

Patch Changes

1.3.14

Patch Changes

1.3.13

Patch Changes

1.3.12

Patch Changes

1.3.11

Patch Changes

1.3.11-mme-fix-duplicate-messages.0

Patch Changes

1.3.10

Patch Changes

1.3.9

Patch Changes

1.3.8

Patch Changes

1.3.7

Patch Changes

1.3.6

Patch Changes

1.3.5

Patch Changes

1.3.4

Patch Changes

1.3.3

Patch Changes

1.3.2

Patch Changes

1.3.2-mme-discover-actions.0

Patch Changes

1.3.1

Patch Changes

1.3.0

Minor Changes

  • CoAgents and remote actions

Patch Changes

  • 5b63f55: stream intermediate state
  • b6fd3d8: Better message grouping
  • 89420c6: Rename hooks and bugfixes
  • b6e8824: useCoAgent/useCoAgentAction
  • 91c35b9: useAgentState
  • 00be203: Remote actions preview
  • fb15f72: Reduce request size by skipping intermediate state
  • 8ecc3e4: Fix useCoAgent start/stop bug
  • Updated dependencies
  • Updated dependencies [5b63f55]
  • Updated dependencies [b6fd3d8]
  • Updated dependencies [89420c6]
  • Updated dependencies [b6e8824]
  • Updated dependencies [91c35b9]
  • Updated dependencies [00be203]
  • Updated dependencies [fb15f72]
  • Updated dependencies [8ecc3e4]

1.2.1

Patch Changes

  • inject minified css in bundle

    • removes the need to import styles.css manually
    • empty styles.css included in the build for backwards compatibility
    • uses tsup's injectStyles with postcss to bundle and minify the CSS, then inject it as a style tag
    • currently uses my fork of tsup where I added support for async function in injectStyles (must-have for postcss), a PR from my fork to the main library will follow shortly
    • remove material-ui, and use react-icons for icons (same icons as before)
    • remove unused IncludedFilesPreview component
    • updated docs
  • Updated dependencies

1.2.0

Minor Changes

  • Fix errors related to crypto not being found, and other bug fixes

Patch Changes

1.1.2

Patch Changes

1.1.1

Patch Changes

1.1.0

Minor Changes

  • Official support for Groq (GroqAdapter)

Patch Changes

1.0.9

Patch Changes

1.0.8

Patch Changes

1.0.7

Patch Changes

1.0.6

Patch Changes

1.0.5

Patch Changes

1.0.4

Patch Changes

1.0.3

Patch Changes

1.0.2

Patch Changes

1.0.1

Patch Changes

1.0.0

Major Changes

  • b6a4b6eb: V1.0 Release Candidate

    • A robust new protocol between the frontend and the Copilot Runtime
    • Support for Copilot Cloud
    • Generative UI
    • Support for LangChain universal tool calling
    • OpenAI assistant API streaming
  • V1.0 Release

    • A robust new protocol between the frontend and the Copilot Runtime
    • Support for Copilot Cloud
    • Generative UI
    • Support for LangChain universal tool calling
    • OpenAI assistant API streaming

Patch Changes

1.0.0-beta.2

Patch Changes

1.0.0-beta.1

Patch Changes

1.0.0-beta.0

Major Changes

  • V1.0 Release Candidate

    • A robust new protocol between the frontend and the Copilot Runtime
    • Support for Copilot Cloud
    • Generative UI
    • Support for LangChain universal tool calling
    • OpenAI assistant API streaming

Patch Changes

0.37.0

Minor Changes

  • f771353: Fix: Stale CopilotReadable
  • 9df8d43: Remove unneeded tailwind components
  • CSS improvements, useCopilotChat, invisible messages

Patch Changes

0.37.0-mme-fix-textarea-css.1

Minor Changes

  • Remove unneeded tailwind components

Patch Changes

0.37.0-mme-fix-feedback-readable.0

Minor Changes

  • Fix: Stale CopilotReadable

Patch Changes

0.36.0

Minor Changes

  • 8baa862: Add push to talk prototype
  • chat suggestions, standalone chat component, gemini adapter, push to talk

Patch Changes

0.36.0-mme-push-to-talk.0

Minor Changes

  • Add push to talk prototype

Patch Changes

0.22.0

Minor Changes

  • 718520b: gpt-4-turbo-april-2024 function calling fixes
  • 95bcbd8: streamline cloud configuration
  • 95bcbd8: Rename
  • 95bcbd8: Upgrade langchain
  • 95bcbd8: Support input guardrails (cloud)
  • 95bcbd8: Unify api key handling
  • CopilotCloud V1, useCopilotReadable and more...
  • 95bcbd8: Get api key from headers dict
  • 95bcbd8: Update comments
  • 95bcbd8: Include reason in guardrails response
  • 718520b: gpt-4-turbo-april-2024
  • 95bcbd8: Update comments
  • 5f6f57a: fix backend function calling return values
  • 95bcbd8: Retrieve public API key

Patch Changes

  • Updated dependencies [718520b]
  • Updated dependencies [95bcbd8]
  • Updated dependencies [95bcbd8]
  • Updated dependencies [95bcbd8]
  • Updated dependencies [95bcbd8]
  • Updated dependencies [95bcbd8]
  • Updated dependencies
  • Updated dependencies [95bcbd8]
  • Updated dependencies [95bcbd8]
  • Updated dependencies [95bcbd8]
  • Updated dependencies [718520b]
  • Updated dependencies [95bcbd8]
  • Updated dependencies [5f6f57a]
  • Updated dependencies [95bcbd8]

0.22.0-mme-cloud.7

Minor Changes

  • Get api key from headers dict

Patch Changes

0.22.0-mme-cloud.6

Minor Changes

  • Upgrade langchain

Patch Changes

0.22.0-mme-cloud.5

Minor Changes

  • Update comments

Patch Changes

0.22.0-mme-cloud.4

Minor Changes

  • Update comments

Patch Changes

0.22.0-mme-cloud.3

Minor Changes

  • 85c029b: streamline cloud configuration
  • Rename
  • a5ade3b: Support input guardrails (cloud)
  • 12ff590: Unify api key handling
  • f0c4745: Include reason in guardrails response
  • 17f4b1b: Retrieve public API key

Patch Changes

0.22.0-function-calling-fixes.2

Minor Changes

  • fix backend function calling return values

Patch Changes

0.22.0-function-calling-fixes.1

Minor Changes

  • gpt-4-turbo-april-2024 function calling fixes

Patch Changes

0.22.0-alpha.0

Minor Changes

  • gpt-4-turbo-april-2024

Patch Changes

0.21.0

Minor Changes

  • 1f06d29: declare esm/cjs/types in export
  • fix esm error
  • 5a0b2cf: Inline codeblock style to avoid ESM error
  • e12b921: ESM by default

Patch Changes

0.21.0-mme-esm-error.2

Minor Changes

  • Inline codeblock style to avoid ESM error

Patch Changes

0.21.0-mme-esm-error.1

Minor Changes

  • declare esm/cjs/types in export

Patch Changes

0.21.0-mme-esm-error.0

Minor Changes

  • ESM by default

Patch Changes

0.20.0

Minor Changes

  • 899aa6e: Backend improvements for running on GCP
  • Improve streamHttpServerResponse for express and firebase apps

Patch Changes

0.20.0-mme-firebase-fixes.0

Minor Changes

  • Backend improvements for running on GCP

Patch Changes

0.19.0

Minor Changes

  • Improve Next.js support and action rendering

Patch Changes

0.18.0

Minor Changes

  • c4010e7: Pre Release
  • be00d61: Alpha
  • ec8481c: Alpha
  • 3fbee5d: OpenAIAdapter-getter
  • e09dc44: Test backward compatibility of AnnotatedFunction on the backend
  • 3f5ad60: OpenAIAdapter: make openai instance gettable
  • 0dd6180: QA
  • 225812d: QA new action type
  • New actions: custom chat components, and typed arguments

Patch Changes

  • Updated dependencies [c4010e7]
  • Updated dependencies [be00d61]
  • Updated dependencies [ec8481c]
  • Updated dependencies [3fbee5d]
  • Updated dependencies [e09dc44]
  • Updated dependencies [3f5ad60]
  • Updated dependencies [0dd6180]
  • Updated dependencies [225812d]
  • Updated dependencies

0.18.0-mme-deprecate-annotated-function.4

Minor Changes

  • Test backward compatibility of AnnotatedFunction on the backend

Patch Changes

0.18.0-mme-pre-release.3

Minor Changes

  • Pre Release
  • 3fbee5d: OpenAIAdapter-getter
  • 3f5ad60: OpenAIAdapter: make openai instance gettable

Patch Changes

0.18.0-mme-function-call-labels.2

Minor Changes

  • be00d61: Alpha
  • QA

Patch Changes

0.18.0-mme-experimental-actions.1

Minor Changes

  • Alpha

Patch Changes

0.18.0-mme-experimental-actions.0

Minor Changes

  • QA new action type

Patch Changes

0.17.1

Patch Changes

  • 5ec8ad4: fix- bring back removeBackendOnlyProps
  • 5a154d0: fix: bring back removeBackendOnlyProps
  • fix: bring back removeBackendOnlyProps
  • Updated dependencies [5ec8ad4]
  • Updated dependencies [5a154d0]
  • Updated dependencies

0.17.1-atai-0223-fix-backendOnlyProps.1

Patch Changes

0.17.1-atai-0223-fix-backendOnlyProps.0

Patch Changes

0.17.0

Minor Changes

  • CopilotTask, function return values, LangChain support, LangServe support
  • 401e474: Test the tools API
  • 2f3296e: Test automation

Patch Changes

0.17.0-beta-automation.1

Minor Changes

  • Test automation

Patch Changes

0.17.0-tools.0

Minor Changes

  • Test the tools API

Patch Changes

0.16.0

Minor Changes

  • node CopilotBackend support
  • 58a8524: clean node example impl
  • a34a226: node-native backend support

Patch Changes

0.16.0-alpha.1

Minor Changes

  • clean node example impl

Patch Changes

0.16.0-alpha.0

Minor Changes

  • node-native backend support

Patch Changes

0.15.0

Minor Changes

  • eba87c7: .4
  • 29ee27e: New Copilot ui
  • 61168c7: no treeshake
  • fb32fe3: .2
  • eba87c7: .3
  • new chatbot ui, new component names, new build system, new docs
  • 61168c7: no treeshake take 2
  • 61168c7: remove treeshake in build
  • fb32fe3: build naming refactor
  • eba87c7: .5
  • 61168c7: cache clean
  • fb32fe3: .3

Patch Changes

  • Updated dependencies [eba87c7]
  • Updated dependencies [29ee27e]
  • Updated dependencies [61168c7]
  • Updated dependencies [fb32fe3]
  • Updated dependencies [eba87c7]
  • Updated dependencies
  • Updated dependencies [61168c7]
  • Updated dependencies [61168c7]
  • Updated dependencies [fb32fe3]
  • Updated dependencies [eba87c7]
  • Updated dependencies [61168c7]
  • Updated dependencies [fb32fe3]

0.15.0-alpha.9

Minor Changes

  • cache clean

Patch Changes

0.15.0-alpha.8

Minor Changes

  • no treeshake

Patch Changes

0.15.0-alpha.7

Minor Changes

  • no treeshake take 2

Patch Changes

0.15.0-alpha.6

Minor Changes

  • remove treeshake in build

Patch Changes

0.15.0-alpha.5

Minor Changes

  • .5

Patch Changes

0.15.0-alpha.4

Minor Changes

  • .4

Patch Changes

0.15.0-alpha.3

Minor Changes

  • .3

Patch Changes

0.15.0-alpha.2

Minor Changes

  • .2
  • .3

Patch Changes

0.15.0-alpha.1

Minor Changes

  • build naming refactor

Patch Changes

0.15.0-alpha.0

Minor Changes

  • New Copilot ui

Patch Changes

0.14.1

Patch Changes

  • stop generating button working
  • aa6bc5a: fix stop generate
  • cf0bde6: change order of operations on stop cleanup
  • Updated dependencies
  • Updated dependencies [aa6bc5a]
  • Updated dependencies [cf0bde6]

0.14.1-alpha.1

Patch Changes

0.14.1-alpha.0

Patch Changes

0.14.0

Minor Changes

  • factor useChat into internal core
  • a7b417a: insertion default prompt update
  • 88d6654: release useChat fixes
  • 51de9d5: textarea editing: default prompt + few shot update
  • fa84257: remove vercel ai
  • 98a37c8: strictly propagate copilot api params through the fetch arguments - not through any constructors
  • 250032d: useChat: do not separately propagate options.url to constructor

Patch Changes

  • Updated dependencies
  • Updated dependencies [a7b417a]
  • Updated dependencies [88d6654]
  • Updated dependencies [51de9d5]
  • Updated dependencies [fa84257]
  • Updated dependencies [98a37c8]
  • Updated dependencies [250032d]

0.14.0-alpha.5

Minor Changes

  • release useChat fixes

Patch Changes

0.14.0-alpha.4

Minor Changes

  • insertion default prompt update

Patch Changes

0.14.0-alpha.3

Minor Changes

  • textarea editing: default prompt + few shot update

Patch Changes

0.14.0-alpha.2

Minor Changes

  • useChat: do not separately propagate options.url to constructor

Patch Changes

0.14.0-alpha.1

Minor Changes

  • strictly propagate copilot api params through the fetch arguments - not through any constructors

Patch Changes

0.14.0-alpha.0

Minor Changes

  • remove vercel ai

Patch Changes

0.13.1

Patch Changes

0.13.0

Minor Changes

  • 8a5cecd: only forward functions if non-empty
  • 87f1fa0: rebase
  • 15d4afc: debugging
  • c40a0d1: Filter out empty function descriptions
  • prep for chat protocol v2
  • bbd152e: backend sdks prep
  • 8517bb1: trying again
  • 478840a: carry function propagation fix to chat v2

Patch Changes

  • Updated dependencies [8a5cecd]
  • Updated dependencies [87f1fa0]
  • Updated dependencies [15d4afc]
  • Updated dependencies [c40a0d1]
  • Updated dependencies
  • Updated dependencies [bbd152e]
  • Updated dependencies [8517bb1]
  • Updated dependencies [478840a]

0.13.0-alpha.6

Minor Changes

  • rebase

Patch Changes

0.13.0-alpha.5

Minor Changes

  • carry function propagation fix to chat v2

Patch Changes

0.13.0-alpha.4

Minor Changes

  • only forward functions if non-empty

Patch Changes

0.13.0-alpha.3

Minor Changes

  • debugging

Patch Changes

0.13.0-alpha.2

Minor Changes

  • trying again

Patch Changes

0.13.0-alpha.1

Minor Changes

  • Filter out empty function descriptions

Patch Changes

0.13.0-alpha.0

Minor Changes

  • backend sdks prep

Patch Changes

0.12.0

Minor Changes

  • shouldToggleHoveringEditorOnKeyPress

Patch Changes

0.11.0

Minor Changes

  • contextCategories no longer optional for reading context

Patch Changes

0.10.1

Patch Changes

0.10.0

Minor Changes

  • support for custom api headers + body, fixed es5 build error on import
  • 9abfea6: js import
  • 2b9591a: esm.js maybe
  • 2b9591a: cjs exp
  • 2b9591a: treeshake
  • 2b9591a: commonJS
  • 222f5e6: undo alpha changes
  • 2b9591a: cjs maybe

Patch Changes

  • Updated dependencies
  • Updated dependencies [9abfea6]
  • Updated dependencies [2b9591a]
  • Updated dependencies [2b9591a]
  • Updated dependencies [2b9591a]
  • Updated dependencies [2b9591a]
  • Updated dependencies [2b9591a]
  • Updated dependencies [222f5e6]
  • Updated dependencies [2b9591a]

0.10.0-alpha.7

Minor Changes

  • js import

Patch Changes

0.10.0-alpha.6

Minor Changes

  • undo alpha changes

Patch Changes

0.10.0-alpha.5

Minor Changes

  • commonJS

Patch Changes

0.10.0-alpha.4

Minor Changes

  • esm.js maybe

Patch Changes

0.10.0-alpha.3

Minor Changes

  • cjs maybe

Patch Changes

0.10.0-alpha.2

Minor Changes

  • cjs exp

Patch Changes

0.10.0-alpha.1

Minor Changes

  • treeshake

Patch Changes

0.9.3-alpha.0

Patch Changes

0.9.2

Patch Changes

0.9.1

Patch Changes

0.9.0

Minor Changes

  • 915e89c: bump alpha version after link dep
  • 1b330b5: out of beta: centralized api, textarea insertions/edits
  • e4ce3ab: textarea edits mvp
  • 9e201c5: textarea insertions deletions etc
  • 915e89c: again
  • 7f8d531: package json
  • 96f5630: react-ui missing declaration
  • 1992035: import esm not cjs variant
  • c13ffcb: minor bugfix
  • e4fe6a5: copilot textarea documents - provide with code skeleton
  • 8e9f9b1: api endpoint centralization
  • eed7c64: remove coldarkDark style from react-syntax-highlighter
  • 5829585: beta bump

Patch Changes

  • 12407db: rebase master
  • 939454e: prettify
  • Updated dependencies [1b330b5]
  • Updated dependencies [e4ce3ab]
  • Updated dependencies [9e201c5]
  • Updated dependencies [c13ffcb]
  • Updated dependencies [12407db]
  • Updated dependencies [e4fe6a5]
  • Updated dependencies [8e9f9b1]
  • Updated dependencies [939454e]

0.9.0-alpha.11

Minor Changes

  • copilot textarea documents - provide with code skeleton

Patch Changes

0.9.0-alpha.10

Minor Changes

  • minor bugfix

Patch Changes

0.9.0-alpha.9

Minor Changes

  • api endpoint centralization

Patch Changes

0.9.0-alpha.8

Minor Changes

  • package json

Patch Changes

0.9.0-alpha.7

Minor Changes

  • react-ui missing declaration

Patch Changes

0.9.0-alpha.6

Minor Changes

  • beta bump

0.9.0-alpha.5

Minor Changes

  • remove coldarkDark style from react-syntax-highlighter

0.9.0-alpha.4

Minor Changes

  • import esm not cjs variant

0.9.0-alpha.3

Minor Changes

  • textarea edits mvp

Patch Changes

0.9.0-alpha.2

Patch Changes

0.9.0-alpha.1

Patch Changes

0.9.0-alpha.0

Minor Changes

  • textarea insertions deletions etc

Patch Changes

0.8.0

Minor Changes

  • ce193f7: Dependency fix

Patch Changes

0.7.0

Minor Changes

  • Made CopilotTextarea standalone for clarity

0.6.0

Minor Changes

  • Introduced CopilotTextarea

Patch Changes

0.5.0

Minor Changes

  • bring private packages back into the void
  • added tsconfig and eslint-config-custom to copilotkit scope

Patch Changes

0.4.0

Minor Changes

  • first beta release

Patch Changes

0.3.0

Minor Changes

  • working version
  • 9d2f3cb: semi compiling

Patch Changes

0.2.0

Minor Changes

  • react core initialization

0.1.0

Minor Changes

1.10.1-next.1

Patch Changes

1.10.1-next.0

Patch Changes

1.10.0

Minor Changes

  • 8674da1: - refactor(headless): completely overhaul headless ui to better support agentic features

    Headless UI has been in a bad state for a bit now. When we added support for different agentic runtimes we acquired tech-debt that, with this PR, is being alleviated.

    As such, the following features have been updated to be completely functional with Headless UI.

    • Generative UI
    • Suggestions
    • Agentic Generative UI
    • Interrupts

    In addition, a variety of QOL changes have been made.

    • New AG-UI based message types
    • Inline code rendering is fixed

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

Patch Changes

  • 967d0ab: - refactor(chat): separate useCopilotChat into internal implementation and public API
  • 2354be4: - feat(chat): implement custom error handling in CopilotChat and Modal components

    • Added renderError prop to CopilotChat for inline error rendering.
    • Introduced triggerChatError function to manage chat-specific errors and observability hooks.
    • Updated Modal to handle observability hooks with public API key checks.
    • Enhanced CopilotObservabilityHooks interface to include onError for error event handling.
  • a8c0263: - feat: add event hooks system for chat components

  • 6d1de58: - fix: address issues that would cause headless UI breaking changes in the next release

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

    • fix: more fixes addressing breaking changes in new Headless UI

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

    • chore: address linting issues

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

    • chore: fixing branding and docs

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

    • chore: more docs fixing

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

  • Updated dependencies [967d0ab]

  • Updated dependencies [a8c0263]
  • Updated dependencies [8674da1]
  • Updated dependencies [6d1de58]
  • Updated dependencies [6de24ce]
  • Updated dependencies [b64555d]

1.10.0-next.13

Patch Changes

1.10.0-next.12

Patch Changes

1.10.0-next.11

Patch Changes

1.10.0-next.10

Patch Changes

1.10.0-next.9

Patch Changes

1.10.0-next.8

Patch Changes

1.10.0-next.7

Patch Changes

1.10.0-next.6

Patch Changes

1.10.0-next.5

Patch Changes

1.10.0-next.4

Patch Changes

1.10.0-next.3

Patch Changes

1.10.0-next.2

Patch Changes

1.10.0-next.1

Patch Changes

1.10.0-next.0

Minor Changes

  • 8674da1: - refactor(headless): completely overhaul headless ui to better support agentic features

    Headless UI has been in a bad state for a bit now. When we added support for different agentic runtimes we acquired tech-debt that, with this PR, is being alleviated.

    As such, the following features have been updated to be completely functional with Headless UI.

    • Generative UI
    • Suggestions
    • Agentic Generative UI
    • Interrupts

    In addition, a variety of QOL changes have been made.

    • New AG-UI based message types
    • Inline code rendering is fixed

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

Patch Changes

1.9.3

Patch Changes

1.9.3-next.4

Patch Changes

1.9.3-next.3

Patch Changes

1.9.3-next.2

Patch Changes

1.9.3-next.1

Patch Changes

1.9.3-next.0

Patch Changes

1.9.2

Patch Changes

  • e1de032: - fix: synchronously execute renderAndWaitForResponse

    Previously, it was impossible to execute multiple human-in-the-loop (renderAndWaitForResponse) calls in a row. Ultimately this was due to an issue with how CopilotKit was rendering the updates when multiple renderAndWaitForResponse actions appeared on screen due to a reference based approach.

    With this change, actions will be executed in a synchronous way appearing almost queue like. This works with any combination of action given much more freedom when asking for user input.

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

  • 10345a5: - feat: structured error visibility system for streaming errors

  • abe23c3: - feat: enable hiding stop button
  • 35537f1: - fix: memoize nested components to not rerender when content changes
  • Updated dependencies [cbeccb5]
  • Updated dependencies [3f8c575]
  • Updated dependencies [fac89c2]
  • Updated dependencies [e1de032]
  • Updated dependencies [92e8d1c]
  • Updated dependencies [9169ad7]
  • Updated dependencies [c75a04f]
  • Updated dependencies [c75a04f]
  • Updated dependencies [fe9009c]
  • Updated dependencies [1d1c51d]
  • Updated dependencies [10345a5]
  • Updated dependencies [9169ad7]
  • Updated dependencies [35537f1]

1.9.2-next.26

Patch Changes

1.9.2-next.25

Patch Changes

1.9.2-next.24

Patch Changes

1.9.2-next.23

Patch Changes

1.9.2-next.22

Patch Changes

1.9.2-next.21

Patch Changes

1.9.2-next.20

Patch Changes

  • e1de032: - fix: synchronously execute renderAndWaitForResponse

    Previously, it was impossible to execute multiple human-in-the-loop (renderAndWaitForResponse) calls in a row. Ultimately this was due to an issue with how CopilotKit was rendering the updates when multiple renderAndWaitForResponse actions appeared on screen due to a reference based approach.

    With this change, actions will be executed in a synchronous way appearing almost queue like. This works with any combination of action given much more freedom when asking for user input.

    Signed-off-by: Tyler Slaton tyler@copilotkit.ai

  • Updated dependencies [e1de032]

1.9.2-next.19

Patch Changes

1.9.2-next.18

Patch Changes

1.9.2-next.17

Patch Changes

1.9.2-next.16

Patch Changes

1.9.2-next.15

Patch Changes

1.9.2-next.14

Patch Changes

1.9.2-next.13

Patch Changes

1.9.2-next.12

Patch Changes

1.9.2-next.11

Patch Changes

1.9.2-next.10

Patch Changes

1.9.2-next.9

Patch Changes

1.9.2-next.8

Patch Changes

1.9.2-next.7

Patch Changes

1.9.2-next.6

Patch Changes

1.9.2-next.5

Patch Changes

1.9.2-next.4

Patch Changes

1.9.2-next.3

Patch Changes

1.9.2-next.2

Patch Changes

1.9.2-next.1

Patch Changes

1.9.2-next.0

Patch Changes

1.9.1

Patch Changes

1.9.1-next.0

Patch Changes

1.9.0

Patch Changes

1.9.0-next.2

Patch Changes

1.8.15-next.1

Patch Changes

1.8.15-next.0

Patch Changes

1.8.14

Patch Changes

1.8.14-next.5

Patch Changes

1.8.14-next.4

Patch Changes

1.8.14-next.3

Patch Changes

1.8.14-next.2

Patch Changes

1.8.14-next.1

Patch Changes

1.8.14-next.0

Patch Changes

1.8.13

Patch Changes

1.8.13-next.3

Patch Changes

1.8.13-next.2

Patch Changes

1.8.13-next.1

Patch Changes

1.8.13-next.0

Patch Changes

1.8.12

Patch Changes

1.8.12-next.6

Patch Changes

1.8.12-next.5

Patch Changes

1.8.12-next.4

Patch Changes

1.8.12-next.3

Patch Changes

1.8.12-next.2

Patch Changes

1.8.12-next.1

Patch Changes

1.8.12-next.0

Patch Changes

1.8.11

Patch Changes

1.8.11-next.1

Patch Changes

1.8.11-next.0

Patch Changes

1.8.10

Patch Changes

1.8.10-next.3

Patch Changes

1.8.10-next.2

Patch Changes

1.8.10-next.1

Patch Changes

1.8.10-next.0

Patch Changes

1.8.9

Patch Changes

1.8.9-next.0

Patch Changes

1.8.8

Patch Changes

1.8.8-next.1

Patch Changes

1.8.8-next.0

Patch Changes

1.8.7

Patch Changes

1.8.7-next.0

Patch Changes

1.8.6

Patch Changes

1.8.6-next.0

Patch Changes

1.8.5

Patch Changes

1.8.5-next.5

Patch Changes

1.8.5-next.4

Patch Changes

1.8.5-next.3

Patch Changes

1.8.5-next.2

Patch Changes

1.8.5-next.1

Patch Changes

1.8.5-next.0

Patch Changes

1.8.4

Patch Changes

1.8.4-next.4

Patch Changes

1.8.4-next.3

Patch Changes

1.8.4-next.2

Patch Changes

1.8.4-next.1

Patch Changes

1.8.4-next.0

Patch Changes

1.8.3

Patch Changes

1.8.3-next.0

Patch Changes

1.8.2-next.3

Patch Changes

1.8.2-next.2

Patch Changes

1.8.2-next.1

Patch Changes

1.8.2-next.0

Patch Changes

1.8.1

Patch Changes

1.8.1-next.1

Patch Changes

1.8.1-next.0

Patch Changes

1.8.0

Minor Changes

  • 20f0727: - feat(chat): redesign chat

Patch Changes

  • 099807a: - fix: adjust dev console menus to dark theme
  • c11fab9: - chore(react-ui): Add DefaultResponseRenderer and DefaultStateRenderer components
  • a50f4c1: - move default components out of ui
  • 5f184b7: - fix: remove response button
    • fix: use customizable assistant message icons
  • d8e354b: - fix: re-align customization variable names and usage
  • Updated dependencies [73f5eaa]
  • Updated dependencies [a50f4c1]

1.8.0-next.8

Patch Changes

1.8.0-next.7

Patch Changes

1.8.0-next.6

Patch Changes

1.8.0-next.5

Patch Changes

1.8.0-next.4

Patch Changes

1.8.0-next.3

Minor Changes

  • 20f0727: - feat(chat): redesign chat

Patch Changes

1.7.2-next.2

Patch Changes

1.7.2-next.1

Patch Changes

1.7.2-next.0

Patch Changes

1.7.1

Patch Changes

1.7.1-next.0

Patch Changes

1.7.0

Patch Changes

1.7.0-next.1

Patch Changes

1.7.0-next.0

Patch Changes

1.6.0

Patch Changes

1.6.0-next.12

Patch Changes

1.6.0-next.11

Patch Changes

1.6.0-next.10

Patch Changes

1.6.0-next.9

Patch Changes

1.6.0-next.8

Patch Changes

1.6.0-next.7

Patch Changes

1.6.0-next.6

Patch Changes

1.6.0-next.5

Patch Changes

1.6.0-next.4

Patch Changes

1.6.0-next.3

Patch Changes

1.6.0-next.2

Patch Changes

1.6.0-next.1

Patch Changes

1.6.0-next.0

Patch Changes

1.5.20

Patch Changes

1.5.20-next.0

Patch Changes

1.5.19

Patch Changes

1.5.19-next.1

Patch Changes

1.5.19-next.0

Patch Changes

1.5.18

Patch Changes

1.5.18-next.3

Patch Changes

1.5.18-next.2

Patch Changes

1.5.18-next.1

Patch Changes

1.5.18-next.0

Patch Changes

1.5.17

Patch Changes

1.5.17-next.0

Patch Changes

1.5.16

Patch Changes

1.5.16-next.2

Patch Changes

1.5.16-next.1

Patch Changes

1.5.16-next.0

Patch Changes

1.5.15

Patch Changes

  • 7b3141d: - feat(interrupt): support LG interrupt with useLangGraphInterrupt hook
    • chore(interrupt): add e2e test to interrupt functionality
    • feat(interrupt): add support for multiple interrupts and conditions
  • 66bd0f7: - fix(react-ui): check for updates endpoint to point to production
  • Updated dependencies [0dc0f43]
  • Updated dependencies [06f9f35]
  • Updated dependencies [7b3141d]
  • Updated dependencies [c9ae305]
  • Updated dependencies [0bbb4ab]

1.5.15-next.8

Patch Changes

1.5.15-next.7

Patch Changes

1.5.15-next.6

Patch Changes

1.5.15-next.5

Patch Changes

1.5.15-next.4

Patch Changes

1.5.15-next.3

Patch Changes

1.5.15-next.2

Patch Changes

1.5.15-next.1

Patch Changes

1.5.15-next.0

Patch Changes

1.5.14

Patch Changes

1.5.14-next.0

Patch Changes

1.5.13

Patch Changes

1.5.13-next.0

Patch Changes

1.5.12

Patch Changes

1.5.12-next.7

Patch Changes

1.5.12-next.6

Patch Changes

1.5.12-next.5

Patch Changes

1.5.12-next.4

Patch Changes

1.5.12-next.3

Patch Changes

1.5.12-next.2

Patch Changes

1.5.12-next.1

Patch Changes

1.5.12-next.0

Patch Changes

1.5.11

Patch Changes

  • 1fc7fa5: test changelog
  • c4a6aa5: test release notes
  • 716bd5c: test changelog
  • a35d447: test changelog
  • 4ae197e: Test release notes
  • 4211318: test changelog
  • 8166ac6: Test release notes
  • d431537: Test release notes
  • Updated dependencies [72f9e58]
  • Updated dependencies [db3d539]
  • Updated dependencies [aecb6f4]
  • Updated dependencies [e5d588d]
  • Updated dependencies [0a2e07e]
  • Updated dependencies [4211318]
  • Updated dependencies [9b3bdc2]
  • Updated dependencies [d431537]

1.5.11-next.0

Patch Changes

  • 1fc7fa5: test changelog
  • c4a6aa5: test release notes
  • 716bd5c: test changelog
  • a35d447: test changelog
  • 4ae197e: Test release notes
  • 4211318: test changelog
  • 8166ac6: Test release notes
  • d431537: Test release notes
  • Updated dependencies [72f9e58]
  • Updated dependencies [db3d539]
  • Updated dependencies [aecb6f4]
  • Updated dependencies [e5d588d]
  • Updated dependencies [0a2e07e]
  • Updated dependencies [4211318]
  • Updated dependencies [9b3bdc2]
  • Updated dependencies [d431537]

1.5.10

Patch Changes

  • 1fc7fa5: test changelog
  • c4a6aa5: test release notes
  • 716bd5c: test changelog
  • a35d447: test changelog
  • 4ae197e: Test release notes
  • 4211318: test changelog
  • 8166ac6: Test release notes
  • d431537: Test release notes
  • Updated dependencies [72f9e58]
  • Updated dependencies [db3d539]
  • Updated dependencies [aecb6f4]
  • Updated dependencies [e5d588d]
  • Updated dependencies [4211318]
  • Updated dependencies [9b3bdc2]
  • Updated dependencies [d431537]

1.5.10-next.0

Patch Changes

1.5.9

Patch Changes

  • 1fc7fa5: test changelog
  • c4a6aa5: test release notes
  • 716bd5c: test changelog
  • a35d447: test changelog
  • 4ae197e: Test release notes
  • 4211318: test changelog
  • 8166ac6: Test release notes
  • d431537: Test release notes
  • Updated dependencies [72f9e58]
  • Updated dependencies [db3d539]
  • Updated dependencies [e5d588d]
  • Updated dependencies [4211318]
  • Updated dependencies [9b3bdc2]
  • Updated dependencies [d431537]

1.5.8

Patch Changes

  • 1fc7fa5: test changelog
  • c4a6aa5: test release notes
  • a35d447: test changelog
  • 4ae197e: Test release notes
  • 4211318: test changelog
  • 8166ac6: Test release notes
  • d431537: Test release notes
  • Updated dependencies [72f9e58]
  • Updated dependencies [db3d539]
  • Updated dependencies [e5d588d]
  • Updated dependencies [4211318]
  • Updated dependencies [9b3bdc2]
  • Updated dependencies [d431537]

1.5.6-next.0

Patch Changes

1.5.5-next.5

Patch Changes

1.5.5-next.3

Patch Changes

1.5.5-next.2

Patch Changes

1.5.4

Patch Changes

1.5.3

Patch Changes

1.5.2

Patch Changes

1.5.1

Patch Changes

  • 5c01e9e: test prerelease #4
  • da280ed: Test prerelease script
  • 27e42d7: testing a prerelease
  • 05240a9: test pre #2
  • 33218fe: test prerelease #3
  • 03f3d6f: Test next prerelease
  • Updated dependencies [5c01e9e]
  • Updated dependencies [ed39d40]
  • Updated dependencies [da280ed]
  • Updated dependencies [27e42d7]
  • Updated dependencies [05240a9]
  • Updated dependencies [33218fe]
  • Updated dependencies [03f3d6f]
  • Updated dependencies [649ebcc]
  • Updated dependencies [6dfa0d2]

1.5.1-next.3

Patch Changes

1.5.1-next.2

Patch Changes

1.5.1-next.1

Patch Changes

1.5.1-next.0

Patch Changes

1.5.0

Minor Changes

  • 1b47092: Synchronize LangGraph messages with CopilotKit

Patch Changes

1.5.0-coagents-v0-3.0

Minor Changes

  • Synchronize LangGraph messages with CopilotKit

Patch Changes

1.4.8

Patch Changes

  • ea0c5d5: - fix: prevent sending empty messages via Enter key

    When the input field was empty, pressing Enter would still trigger the send() function despite the send button being correctly disabled. Added the sendDisabled check to the onKeyDown handler to ensure consistent validation between button and keyboard triggers.

    • Added validation check to Enter key handler
    • Ensures empty messages can't be sent via keyboard shortcut
    • Makes behavior consistent with disabled send button state

    Resolves #1129

    • Better error handling
    • Introduce new "EmptyLLMAdapter" for when using CoAgents
    • Improve dev console help options
    • Allow CopilotKit remote endpoint without agents
  • Updated dependencies

1.4.8-next.0

Patch Changes

  • ea0c5d5: - fix: prevent sending empty messages via Enter key

    When the input field was empty, pressing Enter would still trigger the send() function despite the send button being correctly disabled. Added the sendDisabled check to the onKeyDown handler to ensure consistent validation between button and keyboard triggers.

    • Added validation check to Enter key handler
    • Ensures empty messages can't be sent via keyboard shortcut
    • Makes behavior consistent with disabled send button state

    Resolves #1129

1.4.7

Patch Changes

1.4.6

Patch Changes

  • .

1.4.5

Patch Changes

1.4.5-next.0

Patch Changes

1.4.4

Patch Changes

1.4.4-next.4

Patch Changes

1.4.4-next.3

Patch Changes

1.4.4-next.2

Patch Changes

1.4.4-next.1

Patch Changes

1.4.4-next.0

Patch Changes

1.4.3

Patch Changes

1.4.3-pre.0

Patch Changes

1.4.2

Patch Changes

1.4.1

Patch Changes

  • 1721cbd: lower case copilotkit property
  • 1721cbd: add zod conversion
  • 8d0144f: bump
  • 8d0144f: bump
  • 8d0144f: bump
  • e16d95e: New prerelease
  • 1721cbd: Add convertActionsToDynamicStructuredTools to sdk-js
  • CopilotKit Core:

    • Improved error messages and overall logs
    • useCopilotAction.renderAndAwait renamed to .renderAndAwaitForResponse (backwards compatible, will be deprecated in the future)
    • Improved scrolling behavior. It is now possible to scroll up during LLM response generation
    • Added Azure OpenAI integration
    • Updated interfaces for better developer ergonomics

    CoAgents:

    • Renamed remoteActions to remoteEndpoints (backwards compatible, will be deprecated in the future)
    • Support for LangGraph Platform in Remote Endpoints
    • LangGraph JS Support for CoAgents (locally via langgraph dev, langgraph up or deployed to LangGraph Platform)
    • Improved LangSmith integration - requests made through CoAgents will now surface in LangSmith
    • Enhanced state management and message handling

    CopilotKid Back-end SDK:

    • Released a whole-new @copilotkit/sdk-js for building agents with LangGraph JS Support
  • 8d0144f: bump

  • 8d0144f: bump
  • fef1b74: fix assistant message CSS and propagate actions to LG JS
  • Updated dependencies [1721cbd]
  • Updated dependencies [1721cbd]
  • Updated dependencies [8d0144f]
  • Updated dependencies [8d0144f]
  • Updated dependencies [8d0144f]
  • Updated dependencies [e16d95e]
  • Updated dependencies [1721cbd]
  • Updated dependencies
  • Updated dependencies [8d0144f]
  • Updated dependencies [8d0144f]
  • Updated dependencies [fef1b74]

1.4.1-pre.6

Patch Changes

1.4.1-pre.5

Patch Changes

1.4.1-pre.4

Patch Changes

1.4.1-pre.3

Patch Changes

1.4.1-pre.2

Patch Changes

1.4.1-pre.1

Patch Changes

1.4.1-pre.0

Patch Changes

1.4.0

Minor Changes

CopilotKit Core:

  • Improved error messages and overall logs
  • useCopilotAction.renderAndAwait renamed to .renderAndAwaitForResponse (backwards compatible, will be deprecated in the future)
  • Improved scrolling behavior. It is now possible to scroll up during LLM response generation
  • Added Azure OpenAI integration
  • Updated interfaces for better developer ergonomics

CoAgents:

  • Renamed remoteActions to remoteEndpoints (backwards compatible, will be deprecated in the future)
  • Support for LangGraph Platform in Remote Endpoints
  • LangGraph JS Support for CoAgents (locally via langgraph dev, langgraph up or deployed to LangGraph Platform)
  • Improved LangSmith integration - requests made through CoAgents will now surface in LangSmith
  • Enhanced state management and message handling

CopilotKid Back-end SDK:

  • Released a whole-new @copilotkit/sdk-js for building agents with LangGraph JS Support

Patch Changes

  • f6fab28: update tsup config
  • f6fab28: update entry
  • f6fab28: export langchain module
  • 8a77944: Improve LangSmith support
  • f6fab28: Ensure intermediate state config is sent as snake case
  • f6fab28: update entry in tsup config
  • 8a77944: Ensure the last message is sent to LangSmith
  • a5efccd: Revert rxjs changes
  • f6fab28: update entry
  • f6fab28: Update exports
  • f6fab28: Update exports
  • 332d744: Add support for Azure OpenAI
  • f6fab28: Export LangGraph functions
  • f6fab28: Update lockfile
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies
  • Updated dependencies [f6fab28]
  • Updated dependencies [8a77944]
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies [8a77944]
  • Updated dependencies [a5efccd]
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies [332d744]
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]

1.3.16-mme-revert-rxjs-changes.10

Patch Changes

  • f6fab28: update tsup config
  • f6fab28: update entry
  • f6fab28: export langchain module
  • 8a77944: Improve LangSmith support
  • f6fab28: Ensure intermediate state config is sent as snake case
  • f6fab28: update entry in tsup config
  • 8a77944: Ensure the last message is sent to LangSmith
  • Revert rxjs changes
  • f6fab28: update entry
  • f6fab28: Update exports
  • f6fab28: Update exports
  • 332d744: Add support for Azure OpenAI
  • f6fab28: Export LangGraph functions
  • f6fab28: Update lockfile
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies [8a77944]
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies [8a77944]
  • Updated dependencies
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]
  • Updated dependencies [332d744]
  • Updated dependencies [f6fab28]
  • Updated dependencies [f6fab28]

1.3.15

Patch Changes

1.3.14

Patch Changes

1.3.13

Patch Changes

1.3.12

Patch Changes

1.3.11

Patch Changes

1.3.11-mme-fix-duplicate-messages.0

Patch Changes

1.3.10

Patch Changes

1.3.9

Patch Changes

1.3.8

Patch Changes

1.3.7

Patch Changes

1.3.6

Patch Changes

1.3.5

Patch Changes

1.3.4

Patch Changes

1.3.3

Patch Changes

1.3.2

Patch Changes

1.3.2-mme-discover-actions.0

Patch Changes

1.3.1

Patch Changes

1.3.0

Minor Changes

  • CoAgents and remote actions

Patch Changes

  • 5b63f55: stream intermediate state
  • b6fd3d8: Better message grouping
  • 89420c6: Rename hooks and bugfixes
  • b6e8824: useCoAgent/useCoAgentAction
  • 91c35b9: useAgentState
  • 00be203: Remote actions preview
  • fb15f72: Reduce request size by skipping intermediate state
  • 8ecc3e4: Fix useCoAgent start/stop bug
  • Updated dependencies
  • Updated dependencies [5b63f55]
  • Updated dependencies [b6fd3d8]
  • Updated dependencies [89420c6]
  • Updated dependencies [b6e8824]
  • Updated dependencies [91c35b9]
  • Updated dependencies [00be203]
  • Updated dependencies [fb15f72]
  • Updated dependencies [8ecc3e4]

1.2.1

Patch Changes

  • inject minified css in bundle

    • removes the need to import styles.css manually
    • empty styles.css included in the build for backwards compatibility
    • uses tsup's injectStyles with postcss to bundle and minify the CSS, then inject it as a style tag
    • currently uses my fork of tsup where I added support for async function in injectStyles (must-have for postcss), a PR from my fork to the main library will follow shortly
    • remove material-ui, and use react-icons for icons (same icons as before)
    • remove unused IncludedFilesPreview component
    • updated docs
  • Updated dependencies

1.2.0

Minor Changes

  • Fix errors related to crypto not being found, and other bug fixes

Patch Changes

1.1.2

Patch Changes

1.1.1

Patch Changes

1.1.0

Minor Changes

  • Official support for Groq (GroqAdapter)

Patch Changes

1.0.9

Patch Changes

1.0.8

Patch Changes

1.0.7

Patch Changes

1.0.6

Patch Changes

1.0.5

Patch Changes

1.0.4

Patch Changes

1.0.3

Patch Changes

1.0.2

Patch Changes

1.0.1

Patch Changes

1.0.0

Major Changes

  • b6a4b6eb: V1.0 Release Candidate

    • A robust new protocol between the frontend and the Copilot Runtime
    • Support for Copilot Cloud
    • Generative UI
    • Support for LangChain universal tool calling
    • OpenAI assistant API streaming
  • V1.0 Release

    • A robust new protocol between the frontend and the Copilot Runtime
    • Support for Copilot Cloud
    • Generative UI
    • Support for LangChain universal tool calling
    • OpenAI assistant API streaming

Patch Changes

1.0.0-beta.2

Patch Changes

1.0.0-beta.1

Patch Changes

1.0.0-beta.0

Major Changes

  • V1.0 Release Candidate

    • A robust new protocol between the frontend and the Copilot Runtime
    • Support for Copilot Cloud
    • Generative UI
    • Support for LangChain universal tool calling
    • OpenAI assistant API streaming

Patch Changes

0.37.0

Minor Changes

  • f771353: Fix: Stale CopilotReadable
  • 9df8d43: Remove unneeded tailwind components
  • CSS improvements, useCopilotChat, invisible messages

Patch Changes

0.37.0-mme-fix-textarea-css.1

Minor Changes

  • Remove unneeded tailwind components

Patch Changes

0.37.0-mme-fix-feedback-readable.0

Minor Changes

  • Fix: Stale CopilotReadable

Patch Changes

0.36.0

Minor Changes

  • 8baa862: Add push to talk prototype
  • chat suggestions, standalone chat component, gemini adapter, push to talk

Patch Changes

0.36.0-mme-push-to-talk.0

Minor Changes

  • Add push to talk prototype

Patch Changes

0.22.0

Minor Changes

  • 718520b: gpt-4-turbo-april-2024 function calling fixes
  • 95bcbd8: streamline cloud configuration
  • 95bcbd8: Rename
  • 95bcbd8: Upgrade langchain
  • 95bcbd8: Support input guardrails (cloud)
  • 95bcbd8: Unify api key handling
  • CopilotCloud V1, useCopilotReadable and more...
  • 95bcbd8: Get api key from headers dict
  • 95bcbd8: Update comments
  • 95bcbd8: Include reason in guardrails response
  • 718520b: gpt-4-turbo-april-2024
  • 95bcbd8: Update comments
  • 5f6f57a: fix backend function calling return values
  • 95bcbd8: Retrieve public API key

Patch Changes

  • Updated dependencies [718520b]
  • Updated dependencies [95bcbd8]
  • Updated dependencies [95bcbd8]
  • Updated dependencies [95bcbd8]
  • Updated dependencies [95bcbd8]
  • Updated dependencies [95bcbd8]
  • Updated dependencies
  • Updated dependencies [95bcbd8]
  • Updated dependencies [95bcbd8]
  • Updated dependencies [95bcbd8]
  • Updated dependencies [718520b]
  • Updated dependencies [95bcbd8]
  • Updated dependencies [5f6f57a]
  • Updated dependencies [95bcbd8]

0.22.0-mme-cloud.7

Minor Changes

  • Get api key from headers dict

Patch Changes

0.22.0-mme-cloud.6

Minor Changes

  • Upgrade langchain

Patch Changes

0.22.0-mme-cloud.5

Minor Changes

  • Update comments

Patch Changes

0.22.0-mme-cloud.4

Minor Changes

  • Update comments

Patch Changes

0.22.0-mme-cloud.3

Minor Changes

  • 85c029b: streamline cloud configuration
  • Rename
  • a5ade3b: Support input guardrails (cloud)
  • 12ff590: Unify api key handling
  • f0c4745: Include reason in guardrails response
  • 17f4b1b: Retrieve public API key

Patch Changes

0.22.0-function-calling-fixes.2

Minor Changes

  • fix backend function calling return values

Patch Changes

0.22.0-function-calling-fixes.1

Minor Changes

  • gpt-4-turbo-april-2024 function calling fixes

Patch Changes

0.22.0-alpha.0

Minor Changes

  • gpt-4-turbo-april-2024

Patch Changes

0.21.0

Minor Changes

  • 1f06d29: declare esm/cjs/types in export
  • fix esm error
  • 5a0b2cf: Inline codeblock style to avoid ESM error
  • e12b921: ESM by default

Patch Changes

0.21.0-mme-esm-error.2

Minor Changes

  • Inline codeblock style to avoid ESM error

Patch Changes

0.21.0-mme-esm-error.1

Minor Changes

  • declare esm/cjs/types in export

Patch Changes

0.21.0-mme-esm-error.0

Minor Changes

  • ESM by default

Patch Changes

0.20.0

Minor Changes

  • 899aa6e: Backend improvements for running on GCP
  • Improve streamHttpServerResponse for express and firebase apps

Patch Changes

0.20.0-mme-firebase-fixes.0

Minor Changes

  • Backend improvements for running on GCP

Patch Changes

0.19.0

Minor Changes

  • Improve Next.js support and action rendering

Patch Changes

0.18.0

Minor Changes

  • c4010e7: Pre Release
  • be00d61: Alpha
  • ec8481c: Alpha
  • 3fbee5d: OpenAIAdapter-getter
  • e09dc44: Test backward compatibility of AnnotatedFunction on the backend
  • 3f5ad60: OpenAIAdapter: make openai instance gettable
  • 0dd6180: QA
  • 225812d: QA new action type
  • New actions: custom chat components, and typed arguments

Patch Changes

  • Updated dependencies [c4010e7]
  • Updated dependencies [be00d61]
  • Updated dependencies [ec8481c]
  • Updated dependencies [3fbee5d]
  • Updated dependencies [e09dc44]
  • Updated dependencies [3f5ad60]
  • Updated dependencies [0dd6180]
  • Updated dependencies [225812d]
  • Updated dependencies

0.18.0-mme-deprecate-annotated-function.4

Minor Changes

  • Test backward compatibility of AnnotatedFunction on the backend

Patch Changes

0.18.0-mme-pre-release.3

Minor Changes

  • Pre Release
  • 3fbee5d: OpenAIAdapter-getter
  • 3f5ad60: OpenAIAdapter: make openai instance gettable

Patch Changes

0.18.0-mme-function-call-labels.2

Minor Changes

  • be00d61: Alpha
  • QA

Patch Changes

0.18.0-mme-experimental-actions.1

Minor Changes

  • Alpha

Patch Changes

0.18.0-mme-experimental-actions.0

Minor Changes

  • QA new action type

Patch Changes

0.17.1

Patch Changes

  • 5ec8ad4: fix- bring back removeBackendOnlyProps
  • 5a154d0: fix: bring back removeBackendOnlyProps
  • fix: bring back removeBackendOnlyProps
  • Updated dependencies [5ec8ad4]
  • Updated dependencies [5a154d0]
  • Updated dependencies

0.17.1-atai-0223-fix-backendOnlyProps.1

Patch Changes

0.17.1-atai-0223-fix-backendOnlyProps.0

Patch Changes

0.17.0

Minor Changes

  • CopilotTask, function return values, LangChain support, LangServe support
  • 401e474: Test the tools API
  • 2f3296e: Test automation

Patch Changes

0.17.0-beta-automation.1

Minor Changes

  • Test automation

Patch Changes

0.17.0-tools.0

Minor Changes

  • Test the tools API

Patch Changes

0.16.0

Minor Changes

  • node CopilotBackend support
  • 58a8524: clean node example impl
  • a34a226: node-native backend support

Patch Changes

0.16.0-alpha.1

Minor Changes

  • clean node example impl

Patch Changes

0.16.0-alpha.0

Minor Changes

  • node-native backend support

Patch Changes

0.15.0

Minor Changes

  • eba87c7: .4
  • 29ee27e: New Copilot ui
  • 61168c7: no treeshake
  • fb32fe3: .2
  • eba87c7: .3
  • new chatbot ui, new component names, new build system, new docs
  • 61168c7: no treeshake take 2
  • 61168c7: remove treeshake in build
  • fb32fe3: build naming refactor
  • eba87c7: .5
  • 61168c7: cache clean
  • fb32fe3: .3

Patch Changes

  • Updated dependencies [eba87c7]
  • Updated dependencies [29ee27e]
  • Updated dependencies [61168c7]
  • Updated dependencies [fb32fe3]
  • Updated dependencies [eba87c7]
  • Updated dependencies
  • Updated dependencies [61168c7]
  • Updated dependencies [61168c7]
  • Updated dependencies [fb32fe3]
  • Updated dependencies [eba87c7]
  • Updated dependencies [61168c7]
  • Updated dependencies [fb32fe3]

0.15.0-alpha.9

Minor Changes

  • cache clean

Patch Changes

0.15.0-alpha.8

Minor Changes

  • no treeshake

Patch Changes

0.15.0-alpha.7

Minor Changes

  • no treeshake take 2

Patch Changes

0.15.0-alpha.6

Minor Changes

  • remove treeshake in build

Patch Changes

0.15.0-alpha.5

Minor Changes

  • .5

Patch Changes

0.15.0-alpha.4

Minor Changes

  • .4

Patch Changes

0.15.0-alpha.3

Minor Changes

  • .3

Patch Changes

0.15.0-alpha.2

Minor Changes

  • .2
  • .3

Patch Changes

0.15.0-alpha.1

Minor Changes

  • build naming refactor

Patch Changes

0.15.0-alpha.0

Minor Changes

  • New Copilot ui

Patch Changes

0.14.1

Patch Changes

  • stop generating button working
  • aa6bc5a: fix stop generate
  • cf0bde6: change order of operations on stop cleanup
  • Updated dependencies
  • Updated dependencies [aa6bc5a]
  • Updated dependencies [cf0bde6]

0.14.1-alpha.1

Patch Changes

0.14.1-alpha.0

Patch Changes

0.14.0

Minor Changes

  • factor useChat into internal core
  • a7b417a: insertion default prompt update
  • 88d6654: release useChat fixes
  • 51de9d5: textarea editing: default prompt + few shot update
  • fa84257: remove vercel ai
  • 98a37c8: strictly propagate copilot api params through the fetch arguments - not through any constructors
  • 250032d: useChat: do not separately propagate options.url to constructor

Patch Changes

  • Updated dependencies
  • Updated dependencies [a7b417a]
  • Updated dependencies [88d6654]
  • Updated dependencies [51de9d5]
  • Updated dependencies [fa84257]
  • Updated dependencies [98a37c8]
  • Updated dependencies [250032d]

0.14.0-alpha.5

Minor Changes

  • release useChat fixes

Patch Changes

0.14.0-alpha.4

Minor Changes

  • insertion default prompt update

Patch Changes

0.14.0-alpha.3

Minor Changes

  • textarea editing: default prompt + few shot update

Patch Changes

0.14.0-alpha.2

Minor Changes

  • useChat: do not separately propagate options.url to constructor

Patch Changes

0.14.0-alpha.1

Minor Changes

  • strictly propagate copilot api params through the fetch arguments - not through any constructors

Patch Changes

0.14.0-alpha.0

Minor Changes

  • remove vercel ai

Patch Changes

0.13.1

Patch Changes

0.13.0

Minor Changes

  • 8a5cecd: only forward functions if non-empty
  • 87f1fa0: rebase
  • 15d4afc: debugging
  • c40a0d1: Filter out empty function descriptions
  • prep for chat protocol v2
  • bbd152e: backend sdks prep
  • 8517bb1: trying again
  • 478840a: carry function propagation fix to chat v2

Patch Changes

  • Updated dependencies [8a5cecd]
  • Updated dependencies [87f1fa0]
  • Updated dependencies [15d4afc]
  • Updated dependencies [c40a0d1]
  • Updated dependencies
  • Updated dependencies [bbd152e]
  • Updated dependencies [8517bb1]
  • Updated dependencies [478840a]

0.13.0-alpha.6

Minor Changes

  • rebase

Patch Changes

0.13.0-alpha.5

Minor Changes

  • carry function propagation fix to chat v2

Patch Changes

0.13.0-alpha.4

Minor Changes

  • only forward functions if non-empty

Patch Changes

0.13.0-alpha.3

Minor Changes

  • debugging

Patch Changes

0.13.0-alpha.2

Minor Changes

  • trying again

Patch Changes

0.13.0-alpha.1

Minor Changes

  • Filter out empty function descriptions

Patch Changes

0.13.0-alpha.0

Minor Changes

  • backend sdks prep

Patch Changes

0.12.0

Minor Changes

  • shouldToggleHoveringEditorOnKeyPress

Patch Changes

0.11.0

Minor Changes

  • contextCategories no longer optional for reading context

Patch Changes

0.10.1

Patch Changes

0.10.0

Minor Changes

  • support for custom api headers + body, fixed es5 build error on import
  • 9abfea6: js import
  • 2b9591a: esm.js maybe
  • 2b9591a: cjs exp
  • 2b9591a: treeshake
  • 2b9591a: commonJS
  • 222f5e6: undo alpha changes
  • 2b9591a: cjs maybe

Patch Changes

  • Updated dependencies
  • Updated dependencies [9abfea6]
  • Updated dependencies [2b9591a]
  • Updated dependencies [2b9591a]
  • Updated dependencies [2b9591a]
  • Updated dependencies [2b9591a]
  • Updated dependencies [2b9591a]
  • Updated dependencies [222f5e6]
  • Updated dependencies [2b9591a]

0.10.0-alpha.7

Minor Changes

  • js import

Patch Changes

0.10.0-alpha.6

Minor Changes

  • undo alpha changes

Patch Changes

0.10.0-alpha.5

Minor Changes

  • commonJS

Patch Changes

0.10.0-alpha.4

Minor Changes

  • esm.js maybe

Patch Changes

0.10.0-alpha.3

Minor Changes

  • cjs maybe

Patch Changes

0.10.0-alpha.2

Minor Changes

  • cjs exp

Patch Changes

0.10.0-alpha.1

Minor Changes

  • treeshake

Patch Changes

0.9.3-alpha.0

Patch Changes

0.9.2

Patch Changes

0.9.1

Patch Changes

0.9.0

Minor Changes

  • 915e89c: bump alpha version after link dep
  • 1b330b5: out of beta: centralized api, textarea insertions/edits
  • e4ce3ab: textarea edits mvp
  • 9e201c5: textarea insertions deletions etc
  • 915e89c: again
  • 7f8d531: package json
  • 96f5630: react-ui missing declaration
  • 1992035: import esm not cjs variant
  • c13ffcb: minor bugfix
  • e4fe6a5: copilot textarea documents - provide with code skeleton
  • 8e9f9b1: api endpoint centralization
  • eed7c64: remove coldarkDark style from react-syntax-highlighter
  • 5829585: beta bump

Patch Changes

  • 12407db: rebase master
  • 939454e: prettify
  • Updated dependencies [1b330b5]
  • Updated dependencies [e4ce3ab]
  • Updated dependencies [9e201c5]
  • Updated dependencies [c13ffcb]
  • Updated dependencies [12407db]
  • Updated dependencies [e4fe6a5]
  • Updated dependencies [8e9f9b1]
  • Updated dependencies [939454e]

0.9.0-alpha.11

Minor Changes

  • copilot textarea documents - provide with code skeleton

Patch Changes

0.9.0-alpha.10

Minor Changes

  • minor bugfix

Patch Changes

0.9.0-alpha.9

Minor Changes

  • api endpoint centralization

Patch Changes

0.9.0-alpha.8

Minor Changes

  • package json

Patch Changes

0.9.0-alpha.7

Minor Changes

  • react-ui missing declaration

Patch Changes

0.9.0-alpha.6

Minor Changes

  • beta bump

0.9.0-alpha.5

Minor Changes

  • remove coldarkDark style from react-syntax-highlighter

0.9.0-alpha.4

Minor Changes

  • import esm not cjs variant

0.9.0-alpha.3

Minor Changes

  • textarea edits mvp

Patch Changes

0.9.0-alpha.2

Patch Changes

0.9.0-alpha.1

Patch Changes

0.9.0-alpha.0

Minor Changes

  • textarea insertions deletions etc

Patch Changes

0.8.0

Minor Changes

  • ce193f7: Dependency fix

Patch Changes

0.7.0

Minor Changes

  • Made CopilotTextarea standalone for clarity

0.6.0

Minor Changes

  • Introduced CopilotTextarea

Patch Changes

0.5.0

Minor Changes

  • bring private packages back into the void
  • added tsconfig and eslint-config-custom to copilotkit scope

Patch Changes

0.4.0

Minor Changes

  • first beta release

Patch Changes

0.3.0

Minor Changes

  • working version
  • 9d2f3cb: semi compiling

Patch Changes

0.2.0

Minor Changes

  • react core initialization

0.1.0

Minor Changes

  • initial