add Fireworks LLM (#2597)

* add Fireworks LLM

* support multiple models

* Update Fireworks.ts

* fix linting

---------

Co-authored-by: Henry Heng <henryheng@flowiseai.com>
This commit is contained in:
jiabaow 2024-06-11 13:56:34 -07:00 committed by GitHub
parent 88ee9b09a7
commit 6fb775fe95
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 68 additions and 0 deletions

View File

@ -0,0 +1,68 @@
import { getBaseClasses, getCredentialData, getCredentialParam, ICommonObject, INode, INodeData, INodeParams } from '../../../src'
import { Fireworks } from '@langchain/community/llms/fireworks'
import { BaseCache } from '@langchain/core/caches'
class Fireworks_LLMs implements INode {
label: string
name: string
version: number
type: string
icon: string
category: string
description: string
baseClasses: string[]
credential: INodeParams
inputs: INodeParams[]
constructor() {
this.label = 'Fireworks'
this.name = 'fireworks'
this.version = 1.0
this.type = 'Fireworks'
this.icon = 'fireworks.png'
this.category = 'LLMs'
this.description = 'Wrapper around Fireworks API for large language models'
this.baseClasses = [this.type, ...getBaseClasses(Fireworks)]
this.credential = {
label: 'Connect Credential',
name: 'credential',
type: 'credential',
credentialNames: ['fireworksApi']
}
this.inputs = [
{
label: 'Cache',
name: 'cache',
type: 'BaseCache',
optional: true
},
{
label: 'Model Name',
name: 'modelName',
type: 'string',
default: 'accounts/fireworks/models/llama-v3-70b-instruct-hf',
description: 'For more details see https://fireworks.ai/models',
optional: true
}
]
}
async init(nodeData: INodeData, _: string, options: ICommonObject): Promise<any> {
const cache = nodeData.inputs?.cache as BaseCache
const modelName = nodeData.inputs?.modelName as string
const credentialData = await getCredentialData(nodeData.credential ?? '', options)
const fireworksKey = getCredentialParam('fireworksApiKey', credentialData, nodeData)
const obj: any = {
fireworksApiKey: fireworksKey,
modelName: modelName
}
if (cache) obj.cache = cache
const fireworks = new Fireworks(obj)
return fireworks
}
}
module.exports = { nodeClass: Fireworks_LLMs }

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB