44 lines
1.7 KiB
TypeScript
44 lines
1.7 KiB
TypeScript
import { GoogleCustomSearch } from '@langchain/community/tools/google_custom_search'
|
|
import { ICommonObject, INode, INodeData, INodeParams } from '../../../src/Interface'
|
|
import { getBaseClasses, getCredentialData, getCredentialParam } from '../../../src/utils'
|
|
|
|
class GoogleCustomSearchAPI_Tools implements INode {
|
|
label: string
|
|
name: string
|
|
version: number
|
|
description: string
|
|
type: string
|
|
icon: string
|
|
category: string
|
|
baseClasses: string[]
|
|
credential: INodeParams
|
|
inputs: INodeParams[]
|
|
|
|
constructor() {
|
|
this.label = 'Google Custom Search'
|
|
this.name = 'googleCustomSearch'
|
|
this.version = 1.0
|
|
this.type = 'GoogleCustomSearchAPI'
|
|
this.icon = 'google.svg'
|
|
this.category = 'Tools'
|
|
this.description = 'Wrapper around Google Custom Search API - a real-time API to access Google search results'
|
|
this.inputs = []
|
|
this.credential = {
|
|
label: 'Connect Credential',
|
|
name: 'credential',
|
|
type: 'credential',
|
|
credentialNames: ['googleCustomSearchApi']
|
|
}
|
|
this.baseClasses = [this.type, ...getBaseClasses(GoogleCustomSearch)]
|
|
}
|
|
|
|
async init(nodeData: INodeData, _: string, options: ICommonObject): Promise<any> {
|
|
const credentialData = await getCredentialData(nodeData.credential ?? '', options)
|
|
const googleApiKey = getCredentialParam('googleCustomSearchApiKey', credentialData, nodeData)
|
|
const googleCseId = getCredentialParam('googleCustomSearchApiId', credentialData, nodeData)
|
|
return new GoogleCustomSearch({ apiKey: googleApiKey, googleCSEId: googleCseId })
|
|
}
|
|
}
|
|
|
|
module.exports = { nodeClass: GoogleCustomSearchAPI_Tools }
|