UNPKG

@agentica/benchmark

Version:

Agentic AI Library specialized in LLM Function Calling

13 lines (12 loc) 322 B
/** * @module * This file contains functions to work with AgenticaPromptReporter. * * @author Wrtn Technologies */ import type { AgenticaHistory } from "@agentica/core"; export declare const AgenticaPromptReporter: { markdown: typeof markdown; }; declare function markdown(p: AgenticaHistory): string; export {};