Integrations · Python
FurlPay + LlamaIndex
pip install furlpay-llamaindex, then get_furlpay_tools() returns a LlamaIndex-compatible tool list covering balances, transfers, swaps, stock orders and x402 pay-per-call budgets.
Install
pip install furlpay-llamaindexQuickstart
from furlpay_llamaindex import get_furlpay_tools
from llama_index.core.agent import FunctionCallingAgent
agent = FunctionCallingAgent.from_tools(get_furlpay_tools(), llm=llm)
resp = agent.chat("Check my USDC balance and deposit 100 into the best yield vault.")What your agent gets
- get_balance
- send_stablecoin
- swap_tokens
- place_order
- earn_deposit
- pay_for_resource
FAQ
Which llama-index version does it need?
llama-index-core with function-calling agent support. The tools are plain FunctionTool wrappers, so they work with any LlamaIndex agent runner.
All FurlPay integration packages are MIT-licensed and run in demo mode without an API key. Framework names are trademarks of their respective owners; FurlPay is not affiliated with or endorsed by them.