Update code

This commit is contained in:
User
2026-03-12 12:47:56 +08:00
parent 92e7fc5bda
commit 9dab61345c
9383 changed files with 1463454 additions and 1 deletions

View File

@@ -0,0 +1,29 @@
export function isRunnableFunctionWithParse(fn) {
return typeof fn.parse === 'function';
}
/**
* This is helper class for passing a `function` and `parse` where the `function`
* argument type matches the `parse` return type.
*
* @deprecated - please use ParsingToolFunction instead.
*/
export class ParsingFunction {
constructor(input) {
this.function = input.function;
this.parse = input.parse;
this.parameters = input.parameters;
this.description = input.description;
this.name = input.name;
}
}
/**
* This is helper class for passing a `function` and `parse` where the `function`
* argument type matches the `parse` return type.
*/
export class ParsingToolFunction {
constructor(input) {
this.type = 'function';
this.function = input;
}
}
//# sourceMappingURL=RunnableFunction.mjs.map