mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-28 21:00:58 +03:00
committed by
GitHub
parent
3290798d4b
commit
229366968a
@@ -0,0 +1,25 @@
|
||||
import { INodeParams, INodeCredential } from '../src/Interface'
|
||||
|
||||
class TavilyApi implements INodeCredential {
|
||||
label: string
|
||||
name: string
|
||||
version: number
|
||||
description: string
|
||||
inputs: INodeParams[]
|
||||
|
||||
constructor() {
|
||||
this.label = 'Tavily API'
|
||||
this.name = 'tavilyApi'
|
||||
this.version = 1.0
|
||||
this.description = 'Tavily API is a real-time API to access Google search results'
|
||||
this.inputs = [
|
||||
{
|
||||
label: 'Tavily Api Key',
|
||||
name: 'tavilyApiKey',
|
||||
type: 'password'
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = { credClass: TavilyApi }
|
||||
Reference in New Issue
Block a user