Spaces:
Sleeping
Sleeping
File size: 7,832 Bytes
c2b7eb3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 | let _langchain_core_utils_function_calling = require("@langchain/core/utils/function_calling");
require("@langchain/core/utils/types");
require("@langchain/core/utils/json_schema");
//#region src/utils/tools.ts
/**
* Formats a tool in either OpenAI format, or LangChain structured tool format
* into an OpenAI tool format. If the tool is already in OpenAI format, return without
* any changes. If it is in LangChain structured tool format, convert it to OpenAI tool format
* using OpenAI's `zodFunction` util, falling back to `convertToOpenAIFunction` if the parameters
* returned from the `zodFunction` util are not defined.
*
* @param {BindToolsInput} tool The tool to convert to an OpenAI tool.
* @param {Object} [fields] Additional fields to add to the OpenAI tool.
* @returns {ToolDefinition} The inputted tool in OpenAI tool format.
*/
function _convertToOpenAITool(tool, fields) {
let toolDef;
if ((0, _langchain_core_utils_function_calling.isLangChainTool)(tool)) toolDef = (0, _langchain_core_utils_function_calling.convertToOpenAITool)(tool);
else toolDef = tool;
if (fields?.strict !== void 0) toolDef.function.strict = fields.strict;
return toolDef;
}
function isAnyOfProp(prop) {
return prop.anyOf !== void 0 && Array.isArray(prop.anyOf);
}
function formatFunctionDefinitions(functions) {
const lines = ["namespace functions {", ""];
for (const f of functions) {
if (f.description) lines.push(`// ${f.description}`);
if (Object.keys(f.parameters.properties ?? {}).length > 0) {
lines.push(`type ${f.name} = (_: {`);
lines.push(formatObjectProperties(f.parameters, 0));
lines.push("}) => any;");
} else lines.push(`type ${f.name} = () => any;`);
lines.push("");
}
lines.push("} // namespace functions");
return lines.join("\n");
}
function formatObjectProperties(obj, indent) {
const lines = [];
for (const [name, param] of Object.entries(obj.properties ?? {})) {
if (param.description && indent < 2) lines.push(`// ${param.description}`);
if (obj.required?.includes(name)) lines.push(`${name}: ${formatType(param, indent)},`);
else lines.push(`${name}?: ${formatType(param, indent)},`);
}
return lines.map((line) => " ".repeat(indent) + line).join("\n");
}
function formatType(param, indent) {
if (isAnyOfProp(param)) return param.anyOf.map((v) => formatType(v, indent)).join(" | ");
switch (param.type) {
case "string":
if (param.enum) return param.enum.map((v) => `"${v}"`).join(" | ");
return "string";
case "number":
if (param.enum) return param.enum.map((v) => `${v}`).join(" | ");
return "number";
case "integer":
if (param.enum) return param.enum.map((v) => `${v}`).join(" | ");
return "number";
case "boolean": return "boolean";
case "null": return "null";
case "object": return [
"{",
formatObjectProperties(param, indent + 2),
"}"
].join("\n");
case "array":
if (param.items) return `${formatType(param.items, indent)}[]`;
return "any[]";
default: return "";
}
}
function formatToOpenAIToolChoice(toolChoice) {
if (!toolChoice) return;
else if (toolChoice === "any" || toolChoice === "required") return "required";
else if (toolChoice === "auto") return "auto";
else if (toolChoice === "none") return "none";
else if (typeof toolChoice === "string") return {
type: "function",
function: { name: toolChoice }
};
else return toolChoice;
}
function isBuiltInTool(tool) {
return "type" in tool && tool.type !== "function";
}
/**
* Checks if a tool has a provider-specific tool definition in extras.providerToolDefinition.
* This is used for tools like localShell, shell, computerUse, and applyPatch
* that need to be sent as built-in tool types to the OpenAI API.
*/
function hasProviderToolDefinition(tool) {
return typeof tool === "object" && tool !== null && "extras" in tool && typeof tool.extras === "object" && tool.extras !== null && "providerToolDefinition" in tool.extras && typeof tool.extras.providerToolDefinition === "object" && tool.extras.providerToolDefinition !== null;
}
function isBuiltInToolChoice(tool_choice) {
return tool_choice != null && typeof tool_choice === "object" && "type" in tool_choice && tool_choice.type !== "function";
}
function isCustomTool(tool) {
return typeof tool === "object" && tool !== null && "metadata" in tool && typeof tool.metadata === "object" && tool.metadata !== null && "customTool" in tool.metadata && typeof tool.metadata.customTool === "object" && tool.metadata.customTool !== null;
}
function isOpenAICustomTool(tool) {
return "type" in tool && tool.type === "custom" && "custom" in tool && typeof tool.custom === "object" && tool.custom !== null;
}
function parseCustomToolCall(rawToolCall) {
if (rawToolCall.type !== "custom_tool_call") return;
return {
...rawToolCall,
type: "tool_call",
call_id: rawToolCall.id,
id: rawToolCall.call_id,
name: rawToolCall.name,
isCustomTool: true,
args: { input: rawToolCall.input }
};
}
/**
* Parses a computer_call output item from the OpenAI Responses API
* into a ToolCall format that can be processed by the ToolNode.
*
* @param rawToolCall - The raw computer_call output item from the API
* @returns A ComputerToolCall object if valid, undefined otherwise
*/
function parseComputerCall(rawToolCall) {
if (rawToolCall.type !== "computer_call") return;
return {
...rawToolCall,
type: "tool_call",
call_id: rawToolCall.id,
id: rawToolCall.call_id,
name: "computer_use",
isComputerTool: true,
args: { action: rawToolCall.action }
};
}
/**
* Checks if a tool call is a computer tool call.
* @param toolCall - The tool call to check.
* @returns True if the tool call is a computer tool call, false otherwise.
*/
function isComputerToolCall(toolCall) {
return typeof toolCall === "object" && toolCall !== null && "type" in toolCall && toolCall.type === "tool_call" && "isComputerTool" in toolCall && toolCall.isComputerTool === true;
}
function isCustomToolCall(toolCall) {
return typeof toolCall === "object" && toolCall !== null && "type" in toolCall && toolCall.type === "tool_call" && "isCustomTool" in toolCall && toolCall.isCustomTool === true;
}
function convertCompletionsCustomTool(tool) {
const getFormat = () => {
if (!tool.custom.format) return;
if (tool.custom.format.type === "grammar") return {
type: "grammar",
definition: tool.custom.format.grammar.definition,
syntax: tool.custom.format.grammar.syntax
};
if (tool.custom.format.type === "text") return { type: "text" };
};
return {
type: "custom",
name: tool.custom.name,
description: tool.custom.description,
format: getFormat()
};
}
function convertResponsesCustomTool(tool) {
const getFormat = () => {
if (!tool.format) return;
if (tool.format.type === "grammar") return {
type: "grammar",
grammar: {
definition: tool.format.definition,
syntax: tool.format.syntax
}
};
if (tool.format.type === "text") return { type: "text" };
};
return {
type: "custom",
custom: {
name: tool.name,
description: tool.description,
format: getFormat()
}
};
}
//#endregion
exports._convertToOpenAITool = _convertToOpenAITool;
exports.convertCompletionsCustomTool = convertCompletionsCustomTool;
exports.convertResponsesCustomTool = convertResponsesCustomTool;
exports.formatFunctionDefinitions = formatFunctionDefinitions;
exports.formatToOpenAIToolChoice = formatToOpenAIToolChoice;
exports.hasProviderToolDefinition = hasProviderToolDefinition;
exports.isBuiltInTool = isBuiltInTool;
exports.isBuiltInToolChoice = isBuiltInToolChoice;
exports.isComputerToolCall = isComputerToolCall;
exports.isCustomTool = isCustomTool;
exports.isCustomToolCall = isCustomToolCall;
exports.isOpenAICustomTool = isOpenAICustomTool;
exports.parseComputerCall = parseComputerCall;
exports.parseCustomToolCall = parseCustomToolCall;
//# sourceMappingURL=tools.cjs.map |