@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
18 lines (17 loc) • 524 B
TypeScript
import type { ExecutionPromptReportJson } from '../execution/execution-report/ExecutionPromptReportJson';
import type { string_model_name } from './string_model_name';
/**
* Represents a single LLM call with its report.
*
* @see https://github.com/webgptorg/promptbook/issues/24
*/
export type LlmCall = {
/**
* The name of the model used for the call.
*/
readonly modelName: string_model_name;
/**
* The report of the LLM execution.
*/
readonly report: ExecutionPromptReportJson;
};