/**
 * @example
 *     {
 *         name: "test_prompt",
 *         prompt: "The assistant used the word chocolate in the conversation"
 *     }
 */
export interface CreateConversationEvalPromptRequest {
    /** A useful name for referring to this prompt. */
    name: string;
    /** Actual evaluation prompt text to evaluate conversations with. */
    prompt: string;
}
