UNPKG

phonic

Version:

[![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2FPhonic-Co%2Fphonic-node) [![npm shield](htt

17 lines (16 loc) 684 B
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[]; } } }