@arizeai/phoenix-client
Version:
A client for the Phoenix API
11 lines • 352 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isPromptToolRaw = isPromptToolRaw;
exports.isPromptToolFunction = isPromptToolFunction;
function isPromptToolRaw(tool) {
return tool.type === "raw";
}
function isPromptToolFunction(tool) {
return tool.type === "function";
}
//# sourceMappingURL=prompts.js.map