mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-22 09:01:09 +03:00
a49177f7fb
* add gemini flash * add gemin flash to vertex * add gemin-1.5-flash-preview to vertex * add azure gpt 4o * add claude 3.5 sonnet * add mistral nemo * add groq llama3.1 * add gpt4o-mini to azure * o1 mini * add groq llama 3.2 * update anthropic models * add 3.5 haiku * update vertex embedding models * add azure o1 models * add o3 mini * add wolframalpha tool
26 lines
714 B
TypeScript
26 lines
714 B
TypeScript
import { INodeParams, INodeCredential } from '../src/Interface'
|
|
|
|
class WolframAlphaApp implements INodeCredential {
|
|
label: string
|
|
name: string
|
|
version: number
|
|
description: string
|
|
inputs: INodeParams[]
|
|
|
|
constructor() {
|
|
this.label = 'WolframAlpha App ID'
|
|
this.name = 'wolframAlphaAppId'
|
|
this.version = 1.0
|
|
this.description = 'Get an App Id from <a target="_blank" href="https://developer.wolframalpha.com">Wolfram Alpha Portal</a>'
|
|
this.inputs = [
|
|
{
|
|
label: 'App ID',
|
|
name: 'wolframAlphaAppId',
|
|
type: 'password'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
|
|
module.exports = { credClass: WolframAlphaApp }
|