Launch a chat from anywhere with predefined queries and context. Create happy paths between your users and your data.
Write your prompt, drop in the SDK or React component, and you’ve got a mature multi-modal agentic chat with an easy to use API.
The agent only operates within your existing app authentication and permissions — no new credential storage, no worries.
Connect your agent with the thriving MCP ecosystem of data and integrations to instantly turn your product into an agentic destination.
<script>
// This is all you need to embed a chat
// like the one to the right
const script = document.createElement('script');
script.src = "https://app.withcoherence.com/sdk/coherence-sdk.js";
script.onload = async () => {
await window.Coherence.init({
appId: 'YOUR_APP_ID',
oauth: {} // authenticate users with your auth provider or backend
inline: true,
containerElementId: 'coherence-chat'
});
};
document.head.appendChild(script);
</script>