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) [ • 684 B
text/typescript
import type * as Phonic from "../index.mjs";
export interface ReplayConversationItemResponse {
/** Alternative responses generated for the conversation item. */
responses: ReplayConversationItemResponse.Responses.Item[];
}
export declare namespace ReplayConversationItemResponse {
type Responses = Responses.Item[];
namespace Responses {
interface Item {
/** The text the LLM produced for this replay response. */
text: string;
/** Tool calls the LLM would invoke for this replay response - note that the tools will not actually be called during replay. */
tool_calls: Phonic.ReplayToolCall[];
}
}
}