AIChatConfig
interface
The configuration of the AI Chat feature.
The properties defined in this config are set in the config.ai.chat namespace.
ClassicEditor
.create( editorElement, {
ai: {
chat: {
// AI Chat configuration.
}
}
} )
.then( ... )
.catch( ... );
Copy code
See the full AI configuration.
See all editor options.
Properties
module:ai/aichat/aichat~AIChatConfig#contextThe configuration of the AI Chat context.
Read more in
AIChatContextConfig.models : object | undefinedmodule:ai/aichat/aichat~AIChatConfig#modelsThe configuration of the AI Chat models selection feature.
ClassicEditor.create( { ai: { chat: { models: { defaultModelId: ..., modelSelectorAlwaysVisible: ..., displayedModels: ... } } } } ) .then( ... ) .catch( ... );Copy code