const name = await agent.info("name"); // string

console.log(name);

Get info about the agent, type-safe out-of-the-box and does not require to running the load method as it auto loads the agent.

Arguments

key
string
required

The key of the data to get. has to be keyof AgentData.

const name = await agent.info("name"); // string

console.log(name);