UNPKG

jorel

Version:

The easiest way to use LLMs, including streams, images, documents, tools and various agent scenarios.

8 lines (7 loc) 298 B
import { FunctionCallingMode } from "@google-cloud/vertexai"; import { LlmToolChoice } from "../llm-core-provider"; export declare const toolChoiceToVertexAi: (hasTools: boolean, toolChoice?: LlmToolChoice) => { functionCallingConfig: { mode: FunctionCallingMode; }; } | undefined;