A TypeScript SDK to build, deploy and interact with AI agents. Create intelligent, context-aware agents with unprecedented ease and functionality.
Currently available:
- Read onchain data using the GoldRush API
Roadmap:
- Access offchain and private data
- Train and fine-tune Large/Small Language Models
- Identity services to securely store your agent's private keys
- Communication services to post to social media
- Memory Bank to provide a trustless, verifiable persistent store for critical states, outputs and decisions
yarn install
or
npm install
import { Agent, BaseChain, OnchainProvider } from "@covalenthq/ai-agent-sdk";
new Agent({
onchain: {
key: "XXX",
provider: OnchainProvider.GoldRushAPI,
},
});
const balances = agent.onchain.getTokenBalancesForWalletAddress(
BaseChain,
"demo.eth",
);
Contributions, issues and feature requests are welcome! Feel free to check issues page.
Give a ⭐️ if this project helped you!
This project is MIT licensed.