Overview
The AI chat is a conversational interface to your DeFi position. You ask a question in plain language; the AI executes the right tools server-side and returns a grounded answer with real numbers.
All numeric results are computed by Kairu's backend tools — the AI never invents a number. It only presents what the tools return.
Getting started
Sign in with your wallet to access the chat. Once signed in:
- Click Chat in the navigation
- Type your question, or select one of the six quick-start prompts
- Results stream back as the AI executes tools in real time
Quick-start prompts
| Prompt | What it triggers |
|---|---|
| "What's my current health factor?" | get_position → current HF, collateral, debt |
| "How close am I to liquidation?" | get_liquidation_info → per-asset liquidation prices |
| "What if ETH drops 20%?" | simulate with price change scenario |
| "What's the USDC borrow rate?" | get_market_data → current APYs and liquidity |
| "Do I have any rewards to claim?" | get_rewards → claimable Merit rewards |
| "Show my recent activity" | get_transaction_history → recent Aave transactions |
Streaming responses
Kairu uses Server-Sent Events (SSE) for AI responses. The answer appears incrementally as the AI processes it — you don't wait for the full response before reading. If a tool is executing, you'll see a brief indicator while the data is being fetched.
Chat history
Every conversation is saved automatically to your account. You can:
- Resume a previous session from the sidebar (conversations are listed by date)
- Rename a session by clicking the session title
- Delete a session from the session menu
Chat history persists across reconnects, wallet switches (same account), and browser sessions.
How tools are selected
The AI decides which tools to call based on your question. It can call multiple tools in a single response — for example, a question like "Should I reduce my ETH debt?" will trigger get_position, get_liquidation_info, and potentially get_market_data in sequence. You don't need to specify which tools to use.
See the full tool reference for what each tool fetches.