Answers from your docs
Hybrid RAG retrieves the right passages before every reply.
Aidexa
Transform your organization's knowledge into intelligent AI assistants with Hybrid RAG, secure APIs, and developer-friendly SDKs.
Platform
Workspaces, hybrid RAG, and an embeddable SDK — built around your knowledge.
Hybrid RAG retrieves the right passages before every reply.
Public key in the browser. Secret key stays in the console.
Create a workspace, add knowledge, install aidexa.
How it works
From empty workspace to embedded chat — usually under five minutes.
After onboarding
No custom backend for the widget. Install the package, paste your public key, and you are live on your platform.
Create a workspace and copy your public key from the console.
Add aidexa from npm with one command.
Pass your public key — the bubble appears bottom-right, branded from the console.
Use the public key only in the browser. Keep the secret key in the console for branding and knowledge — never in customer-facing code.
npm install aidexapublicKey="pk_live_…"npm install aidexa
import { AidexaChat } from 'aidexa'
import 'aidexa/styles.css'
export function App() {
return (
<>
<YourProduct />
<AidexaChat
publicKey="pk_live_…" // from console
apiBase="https://aidexa-sdk-api.vercel.app/v1"
/>
</>
)
}