@iqai/adk-cli
Version:
CLI tool for creating, running, and testing ADK-TS agents
14 lines • 515 B
TypeScript
import { EventsResponse } from "../../common/types";
import { EventsService } from "./events.service";
export declare class EventsController {
private readonly events;
constructor(events: EventsService);
getEvents(id: string, sessionId: string): Promise<EventsResponse>;
getEventGraph(id: string, sessionId: string, eventId: string): Promise<{
graph: any;
highlights: Array<[string, string]>;
} | {
error: string;
}>;
}
//# sourceMappingURL=events.controller.d.ts.map