examples/v2/docs/reference/copilot-chat-configuration-provider.mdx
CopilotChatConfigurationProvider is a React context provider that manages configuration for chat UI components,
including labels, agent ID, and thread ID. It enables customization of all text labels in the chat interface and
provides context for chat components to access configuration values.
The CopilotChatConfigurationProvider:
agentId and threadIdWrap your chat components with the provider to customize configuration:
import { CopilotChatConfigurationProvider } from "@copilotkit/react-core";
function App() {
return (
<CopilotChatConfigurationProvider
threadId="main-thread"
agentId="assistant"
labels={{
chatInputPlaceholder: "Ask me anything...",
assistantMessageToolbarCopyMessageLabel: "Copy response",
}}
>
</CopilotChatConfigurationProvider>
);
}
string (required)
A unique identifier for the conversation thread. This is used to maintain conversation history and context.
<CopilotChatConfigurationProvider threadId="conversation-123">
{children}
</CopilotChatConfigurationProvider>
string (optional)
The ID of the agent to use for this chat context. If not provided, defaults to "default".
<CopilotChatConfigurationProvider
threadId="thread-1"
agentId="customer-support"
>
{children}
</CopilotChatConfigurationProvider>
Partial<CopilotChatLabels> (optional)
Custom labels for chat UI elements. Any labels not provided will use the default values.
<CopilotChatConfigurationProvider
threadId="thread-1"
labels={{
chatInputPlaceholder: "Type your message here...",
chatDisclaimerText: "AI responses may contain errors.",
assistantMessageToolbarRegenerateLabel: "Try again",
}}
>
{children}
</CopilotChatConfigurationProvider>
ReactNode (required)
The React components that will have access to the chat configuration context.
The CopilotChat component automatically creates its own CopilotChatConfigurationProvider internally. When using
CopilotChat, you can pass configuration directly as props:
<CopilotChat
threadId="main-thread"
agentId="assistant"
labels={{
chatInputPlaceholder: "How can I help you today?",
}}
/>
When CopilotChat is used within an existing CopilotChatConfigurationProvider, values are merged with the following
priority (highest to lowest):
CopilotChatCopilotChatConfigurationProviderExample:
<CopilotChatConfigurationProvider agentId="outer-agent">
<CopilotChat
threadId="inner-thread"
// agentId inherits from outer: "outer-agent"
/>
</CopilotChatConfigurationProvider>
Use the useCopilotChatConfiguration hook to access configuration values in your components:
import { useCopilotChatConfiguration } from "@copilotkit/react-core";
function MyComponent() {
const config = useCopilotChatConfiguration();
if (!config) {
// No provider found
return null;
}
return (
<div>
<p>Agent: {config.agentId}</p>
<p>Thread: {config.threadId}</p>
<p>Labels: {JSON.stringify(config.labels)}</p>
</div>
);
}
Note: The hook returns null if no provider is found in the component tree.
The provider is ideal for implementing localization:
import { useTranslation } from "react-i18next";
function LocalizedChat() {
const { t } = useTranslation();
return (
<CopilotChatConfigurationProvider
threadId="chat-1"
labels={{
chatInputPlaceholder: t("chat.input.placeholder"),
assistantMessageToolbarCopyMessageLabel: t("chat.assistant.copy"),
assistantMessageToolbarThumbsUpLabel: t("chat.assistant.thumbsUp"),
assistantMessageToolbarThumbsDownLabel: t("chat.assistant.thumbsDown"),
userMessageToolbarEditMessageLabel: t("chat.user.edit"),
chatDisclaimerText: t("chat.disclaimer"),
}}
>
<CopilotChat />
</CopilotChatConfigurationProvider>
);
}