MCPcopy Create free account
hub / github.com/CommandCodeAI/BaseAI / LlmFunction

Interface LlmFunction

packages/baseai/types/providers.ts:183–190  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

181 * A function in the conversation.
182 */
183export interface LlmFunction {
184 /** The name of the function. */
185 name: string;
186 /** A description of the function. */
187 description?: string;
188 /** The parameters for the function. */
189 parameters?: JsonSchema;
190}
191
192/**
193 * A JSON schema.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected