UNPKG

@ai-foundry/llm-sdk

Version:

This is just another SDK for the common LLM API providers.

11 lines (10 loc) 301 B
import type { JSONObject } from './data.models'; export interface FunctionTool { type: 'function'; name: string; description: string; parameters: JSONObject; strict?: boolean; execute: (parameters: JSONObject) => string | Promise<string>; } export type LLMTool = FunctionTool;