import { executeConversationGroupCreate } from "../../../../tools/conversation-groups/group_create.js"; import type { ToolContext, ToolExecutionResult, } from "../../../../tools/types.js"; export async function run( input: Record, context: ToolContext, ): Promise { return executeConversationGroupCreate(input, context); }