UNPKG

jorel

Version:

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

22 lines (21 loc) 545 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.toolChoiceToGroq = void 0; const toolChoiceToGroq = (toolChoice) => { if (!toolChoice) { return "none"; } if (toolChoice === "auto") { return "auto"; } else if (toolChoice === "required") { return "required"; } else if (toolChoice === "none") { return "none"; } else { return { type: "function", function: { name: toolChoice } }; } }; exports.toolChoiceToGroq = toolChoiceToGroq;