mirror of
https://github.com/ikechan8370/chatgpt-plugin.git
synced 2025-12-17 13:57:10 +00:00
20 lines
323 B
JavaScript
20 lines
323 B
JavaScript
export class AbstractTool {
|
|
name = ''
|
|
|
|
parameters = {}
|
|
|
|
description = ''
|
|
|
|
func = async function () {}
|
|
|
|
function () {
|
|
if (!this.parameters.type) {
|
|
this.parameters.type = 'object'
|
|
}
|
|
return {
|
|
name: this.name,
|
|
description: this.description,
|
|
parameters: this.parameters
|
|
}
|
|
}
|
|
}
|