@agentica/benchmark
Version:
Agentic AI Library specialized in LLM Function Calling
13 lines (12 loc) • 322 B
TypeScript
/**
* @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 {};