@agentica/benchmark
Version:
Agentic AI Library specialized in LLM Function Calling
14 lines (13 loc) • 413 B
TypeScript
/**
* @module
* This file contains functions to work with AgenticaPromptReporter.
*
* @author Wrtn Technologies
*/
import type { AgenticaHistory } from "@agentica/core";
import type { ILlmSchema } from "@samchon/openapi";
export declare const AgenticaPromptReporter: {
markdown: typeof markdown;
};
declare function markdown<Model extends ILlmSchema.Model>(p: AgenticaHistory<Model>): string;
export {};