Compass AI
Compass AI is a natural language interface for the blockchain. It confirms user intent and then carries out DeFi tasks. Current capabilities include:
- Deploying and minting tokens (ERC20, NFTs).
- Setting up leveraged positions on Aave.
- Providing and managing liquidity on Uniswap and Aerodrome.
- Swapping tokens, checking balances, and visualizing your portfolio.
Just describe what you want, and Compass AI handles the rest.
Click here to try it out. Be sure to ask it what it can do!!
We offer Compass AI as a full-stack LLM-Application and also as an API endpoint so you can integrate it into your apps.
What does it mean to serve the AI as an API endpoint?
What:
- You can access Compass AI programmatically via a dedicated interface, similar to calling OpenAI’s API.
- Developers send REST requests (with natural language) to Compass AI’s API and receive structured, machine-friendly responses (e.g., unsigned transactions, regular AI message text).
Why:
- It enables simple integration into your own services, letting you provide its functionality for your users.
How:
- Use a
cURL
command (as you would for any REST API). For example:
curl "https://compass-ai-n8s3.onrender.com/chat" \
-H "Content-Type: application/json" \
-d '{
"thread_id": "d3bb66e8-1bbe-4de9-a3db-73d7b3275935",
"message": "please tell me my USDC balance on arbitrum: my wallet is: 0x7Fd9DBad4d8B8F97BEdAC3662A0129a5774AdA8E"
}'