@hashgraphonline/standards-agent-kit
Version:
A modular SDK for building on-chain autonomous agents using Hashgraph Online Standards, including HCS-10 for agent discovery and communication.
14 lines (13 loc) • 456 B
text/typescript
import { BasePlugin } from './BasePlugin';
import { PluginContext } from './PluginInterface';
import { StructuredTool } from '@langchain/core/tools';
/**
* Base class for plugins that require HCS10 specific functionality
*/
export abstract class HCS10Plugin extends BasePlugin<PluginContext> {
/**
* Get the tools provided by this plugin
* @returns Array of tools provided by this plugin
*/
abstract override getTools(): StructuredTool[];
}