@arizeai/phoenix-evals
Version:
A library for running evaluations for AI use cases
8 lines • 339 B
TypeScript
import type { Prompt } from "ai";
/**
* Prompt part of the AI function options for model generation.
* It contains a system message, a simple text prompt, or a list of model messages.
* Uses ModelMessage format compatible with AI SDK v5 generateObject function.
*/
export type WithPrompt = Prompt;
//# sourceMappingURL=prompts.d.ts.map