Overview
Redocly Developer Hubs provide a way to build sites for your documentation from plain Markdown files.
Get an API key
- Go to the Inkeep Dashboard
- Select your project under Projects
- Go to the Integrations tab
- Click on Create integration
- Select Web
- Provide a Name and URL (optional) for the integration
- Click on Create
- Click the Example < /> button to get your API key and view suggested settings
Attach the script
Attach the addInkeep.js
script in the siteConfig.yaml
file:
scripts:
- ./static/addInkeep.js
Create the addInkeep.js script
Create an addInkeep.js
file in your static
folder.
touch static/addInkeep.js
Now, configure the chat button component.
const addScript = (src, type = "module", defer = true) => {
const script = document.createElement("script");
script.src = src;
script.type = type;
script.defer = defer;
document.body.appendChild(script);
return script;
};
const inkeepConfig = () => {
return {
componentType: "ChatButton",
properties: {
chatButtonType: "PILL",
baseSettings: {
apiKey: "INKEEP_API_KEY",
integrationId: "INKEEP_INTEGRATION_ID",
organizationId: "INKEEP_ORGANIZATION_ID",
primaryBrandColor: "#26D6FF",
organizationDisplayName: "Inkeep",
},
modalSettings: {
},
searchSettings: {
},
aiChatSettings: {
botAvatarSrcUrl: "/img/logo.svg",
quickQuestions: [
"Example question 1?",
"Example question 2?",
"Example question 3?",
],
},
},
};
};
const addInkeepWidget = () => {
const inkeepWidgetScript = document.createElement("script");
inkeepWidgetScript.defer = true;
inkeepWidgetScript.innerHTML = `
const config = (${inkeepConfig.toString()})();
Inkeep().embed(config);
`;
document.body.appendChild(inkeepWidgetScript);
};
const embedScript = addScript(
"https://unpkg.com/@inkeep/uikit-js@0.3.18/dist/embed.js"
);
embedScript.addEventListener("load", () => {
addInkeepWidget();
});
For a full list of customizations, check out the Chat Button documentation.