Docs
Ship in five minutes.
Quickstart, embed snippet, SDK references, and integration guides. Pick a path and go.
Embed
One script tag. Live on any site.
Floating bubble, inline component, or headless — drop one tag in your HTML and your agent picks up.
- • Works with any framework — React, Vue, plain HTML
- • Customize colors, position, and copy in the dashboard
- • Domain allowlist + per-key permissions
index.html
<!-- Add to any page. That's it. -->
<script
async
src="https://app.asisso.com/widget/asisso-widget.js"
data-agent-id="YOUR_AGENT_ID"
data-mode="floating"
data-position="bottom-right"
></script>Install the SDK
Same surface in Python and TypeScript. Pick whichever your team prefers.
Python
pip install asisso-sdkTypeScript
npm install @asisso/sdkPython — create client
from asisso_sdk import AsissoClient
client = AsissoClient(
base_url="https://app.asisso.com",
api_key="YOUR_API_KEY"
)TypeScript — create client
import { AsissoClient } from "@asisso/sdk";
const client = new AsissoClient({
baseUrl: "https://app.asisso.com",
apiKey: "YOUR_API_KEY"
});