nestai-framework
Version:
Unlocking Next-Gen AI Agents with N.E.S.T.
24 lines (17 loc) • 818 B
text/typescript
// Agent details configuration for NestAI Agent
export const agentDetails = {
// The name of the agent, used to identify the agent in interactions
name: "NestAI Agent",
// Symbol representing the agent, similar to a token symbol (e.g., ANestAI)
symbol: "NestAI",
// Short description of the agent, typically displayed in UI or as an info blurb
description: "My NestAI test token",
// Twitter handle for the agent's social media presence
twitter: "https://x.com/test",
// Telegram link for the agent's community or support channel
telegram: "https://t.me/test",
// Official website link for the agent
website: "https://test.com",
// Path to the image file representing the agent (local or URL path)
imagePath: "src/test_logo.png",
};