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) [ • 388 B
text/typescript
import type * as Phonic from "../index.mjs";
export interface OpenAiFunction {
/** Function name the assistant will use in `tool_call.tool_name`. */
name: string;
/** Description of what the tool does and when to call it. */
description: string;
parameters: Phonic.OpenAiFunctionParameters;
/** Inline tools require strict function calling. */
strict: true;
}