UNPKG

generator-begcode

Version:

Spring Boot + Angular/React/Vue in one handy generator

17 lines (16 loc) 478 B
import { ChatLogs, ChatMessage } from '../agent-core/index.js'; import { Timer } from './Timer.js'; export declare class DebugLlmReq { time: Timer; chatLogs: ChatLogs; response?: ChatMessage | undefined; constructor(time: Timer, chatLogs: ChatLogs, response?: ChatMessage | undefined); get tokens(): number; toString(): string; toJSON(): { time: Timer; tokens: number; response?: ChatMessage; chat: ChatLogs; }; }