Skip to content

Commit

Permalink
add Fireworks LLM (FlowiseAI#2597)
Browse files Browse the repository at this point in the history
* add Fireworks LLM

* support multiple models

* Update Fireworks.ts

* fix linting

---------

Co-authored-by: Henry Heng <henryheng@flowiseai.com>
  • Loading branch information
jiabaow and HenryHengZJ authored Jun 11, 2024
1 parent 88ee9b0 commit 6fb775f
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 0 deletions.
68 changes: 68 additions & 0 deletions packages/components/nodes/llms/Fireworks/Fireworks.ts
Original file line number Diff line number Diff line change
@@ -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 }
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 6fb775f

Please sign in to comment.