phonic
Version:
[](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2FPhonic-Co%2Fphonic-node) [ • 376 B
TypeScript
/**
* @example
* {
* system_prompt: "system_prompt"
* }
*/
export interface ReplayConversationItemRequest {
/** The system prompt to use when generating replay responses. Use this to test prompt changes against this conversation turn. */
system_prompt: string;
/** Number of alternative responses to generate. */
num_responses?: number;
}