sui-agent-kit
v1.0.2
Published
Connect any ai agents to SUI Network.
Downloads
9
Readme
sui-agent-kit
Install
npm install sui-agent-kitUsage
Connect any ai agents to SUI Network.
const agent = new SuiAgent({
model: "deepseek-chat",
openAiApiKey: "sk-",
walletPrivateKey:
"suiprivkey",
network: "testnet",
baseUrl: "https://api.deepseek.com",
});
// // Call different functions
const resp = await agent.transfer({
to: "0x1",
amount: "0.1",
symbol: "SUI",
});
console.log(resp);
// // or, execute commands in natural language
const chatResp = await agent.execute("Send 0.1 SUI to 0x1");
console.log(chatResp);