kore-agentic-chat-sdk
v1.0.52
Published
you can install this package in any project like react, vue, angular, etc.
Downloads
183
Readme
Kore Agentic Chat SDK
As a package
you can install this package in any project like react, vue, angular, etc.
- install the package
npm install kore-agentic-chat-sdk- import the package
import { initialize } from 'kore-agentic-chat-sdk';- configure and initialize the chat
const chatConfig = {
containerId: 'your-container-id', // pass the container id where the chat will be rendered
apiKey: 'api-key', // pass the api key
baseUrl: 'base-url' // pass the base url
};
initialize(chatConfig);As a script
Include the script in your html file by configuring the chat
<script src="https://cdn.jsdelivr.net/npm/kore-agentic-chat-sdk@latest/dist/esm/kore-agentic-chat-sdk.js"></script>
<script>
const chatConfig = {
containerId: 'your-container-id', // pass the container id where the chat will be rendered
apiKey: 'api-key', // pass the api key
baseUrl: 'base-url' // pass the base url
};
KoreAgenticChatSDK.initialize(chatConfig);
</script>