UNPKG

@iqai/adk-cli

Version:

CLI tool for creating, running, and testing ADK-TS agents

9 lines 460 B
import { MessageRequest, MessageResponse, MessagesResponse } from "../../common/types"; import { MessagingService } from "./messaging.service"; export declare class MessagingController { private readonly messaging; constructor(messaging: MessagingService); getAgentMessages(id: string): Promise<MessagesResponse>; postAgentMessage(id: string, body: MessageRequest): Promise<MessageResponse>; } //# sourceMappingURL=messaging.controller.d.ts.map