Please wait...
Connect your application to DoclessAI. Add a context-aware AI assistant using our drop-in widget or headless SDK.
Create AssistantWorks with React, Next.js, and plain HTML.
npm i @doclessai/sdkThe fastest way to add AI. Handles UI, markdown formatting, image previews, auto-scrolling, and feature navigation.
// Just import and drop it inimport { ChatWidget } from "@doclessai/sdk"; <ChatWidget appKey="YOUR_KEY" name="YOUR_ASSISTANT_NAME" />Total freedom. Use our client logic to feed your own custom-built chat interface.
// Use the client logic directlyimport { DoclessClient } from "@doclessai/sdk"; const ai = new DoclessClient({ appKey: "YOUR_KEY" }); // Send only queryconst res = await ai.ask(userQuery);// Send query with user Imageconst res = await ai.ask(userQuery, ImageFile);// Response format{ res: string, // AI response image: string|null, // image URL if relevant route: string|null, // app route for navigation elementId: string|null // UI element to highlight}Your assistant is ready to guide users, answer questions, and navigate features inside your app.
Secure key handling • multimodal responses • context-aware navigation