mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-28 19:00:59 +03:00
add aiplugintools
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
import { INode, INodeData, INodeParams } from '../../../src/Interface'
|
import { INode, INodeData, INodeParams } from '../../../src/Interface'
|
||||||
import { initializeAgentExecutor, AgentExecutor } from 'langchain/agents'
|
import { initializeAgentExecutor, AgentExecutor } from 'langchain/agents'
|
||||||
import { Tool } from 'langchain/tools'
|
import { AIPluginTool } from 'langchain/tools'
|
||||||
import { BaseChatModel } from 'langchain/chat_models/base'
|
import { BaseChatModel } from 'langchain/chat_models/base'
|
||||||
import { getBaseClasses } from '../../../src/utils'
|
import { getBaseClasses } from '../../../src/utils'
|
||||||
|
|
||||||
@@ -39,9 +39,20 @@ class MRKLAgentChat_Agents implements INode {
|
|||||||
|
|
||||||
async init(nodeData: INodeData): Promise<any> {
|
async init(nodeData: INodeData): Promise<any> {
|
||||||
const model = nodeData.inputs?.model as BaseChatModel
|
const model = nodeData.inputs?.model as BaseChatModel
|
||||||
const tools = nodeData.inputs?.tools as Tool[]
|
const tools = nodeData.inputs?.tools
|
||||||
|
|
||||||
const executor = await initializeAgentExecutor(tools, model, 'chat-zero-shot-react-description', true)
|
const allowedTools = []
|
||||||
|
for (let i = 0; i < tools.length; i += 1) {
|
||||||
|
if (tools[i].pluginUrl) {
|
||||||
|
const pluginURL: string = tools[i].pluginUrl
|
||||||
|
const aiplugin = await AIPluginTool.fromPluginUrl(pluginURL)
|
||||||
|
allowedTools.push(aiplugin)
|
||||||
|
} else {
|
||||||
|
allowedTools.push(tools[i])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const executor = await initializeAgentExecutor(allowedTools, model, 'chat-zero-shot-react-description', true)
|
||||||
return executor
|
return executor
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
import { INode, INodeData, INodeParams } from '../../../src/Interface'
|
import { INode, INodeData, INodeParams } from '../../../src/Interface'
|
||||||
|
import { AIPluginTool } from 'langchain/tools'
|
||||||
|
import { getBaseClasses } from '../../../src/utils'
|
||||||
|
|
||||||
class AIPlugin implements INode {
|
class AIPlugin implements INode {
|
||||||
label: string
|
label: string
|
||||||
@@ -17,6 +19,7 @@ class AIPlugin implements INode {
|
|||||||
this.icon = 'aiplugin.svg'
|
this.icon = 'aiplugin.svg'
|
||||||
this.category = 'Tools'
|
this.category = 'Tools'
|
||||||
this.description = 'Execute actions using ChatGPT Plugin Url'
|
this.description = 'Execute actions using ChatGPT Plugin Url'
|
||||||
|
this.baseClasses = [this.type, ...getBaseClasses(AIPluginTool)]
|
||||||
this.inputs = [
|
this.inputs = [
|
||||||
{
|
{
|
||||||
label: 'Plugin Url',
|
label: 'Plugin Url',
|
||||||
@@ -27,15 +30,13 @@ class AIPlugin implements INode {
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
async getBaseClasses(): Promise<string[]> {
|
|
||||||
return ['Tool']
|
|
||||||
}
|
|
||||||
|
|
||||||
async init(nodeData: INodeData): Promise<any> {
|
async init(nodeData: INodeData): Promise<any> {
|
||||||
const { AIPluginTool } = await import('langchain/tools')
|
|
||||||
const pluginUrl = nodeData.inputs?.pluginUrl as string
|
const pluginUrl = nodeData.inputs?.pluginUrl as string
|
||||||
|
// Doesn't work currently
|
||||||
const aiplugin = await AIPluginTool.fromPluginUrl(pluginUrl)
|
// const aiplugin = await AIPluginTool.fromPluginUrl(pluginUrl)
|
||||||
|
const aiplugin = {
|
||||||
|
pluginUrl: pluginUrl
|
||||||
|
}
|
||||||
return aiplugin
|
return aiplugin
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,13 +13,51 @@ export const flowContext = createContext(initialValue)
|
|||||||
export const ReactFlowContext = ({ children }) => {
|
export const ReactFlowContext = ({ children }) => {
|
||||||
const [reactFlowInstance, setReactFlowInstance] = useState(null)
|
const [reactFlowInstance, setReactFlowInstance] = useState(null)
|
||||||
|
|
||||||
const deleteNode = (id) => {
|
const deleteNode = (nodeid) => {
|
||||||
reactFlowInstance.setNodes(reactFlowInstance.getNodes().filter((n) => n.id !== id))
|
deleteConnectedInput(nodeid, 'node')
|
||||||
reactFlowInstance.setEdges(reactFlowInstance.getEdges().filter((ns) => ns.source !== id && ns.target !== id))
|
reactFlowInstance.setNodes(reactFlowInstance.getNodes().filter((n) => n.id !== nodeid))
|
||||||
|
reactFlowInstance.setEdges(reactFlowInstance.getEdges().filter((ns) => ns.source !== nodeid && ns.target !== nodeid))
|
||||||
}
|
}
|
||||||
|
|
||||||
const deleteEdge = (id) => {
|
const deleteEdge = (edgeid) => {
|
||||||
reactFlowInstance.setEdges(reactFlowInstance.getEdges().filter((edge) => edge.id !== id))
|
deleteConnectedInput(edgeid, 'edge')
|
||||||
|
reactFlowInstance.setEdges(reactFlowInstance.getEdges().filter((edge) => edge.id !== edgeid))
|
||||||
|
}
|
||||||
|
|
||||||
|
const deleteConnectedInput = (id, type) => {
|
||||||
|
const connectedEdges =
|
||||||
|
type === 'node'
|
||||||
|
? reactFlowInstance.getEdges().filter((edge) => edge.source === id)
|
||||||
|
: reactFlowInstance.getEdges().filter((edge) => edge.id === id)
|
||||||
|
|
||||||
|
for (const edge of connectedEdges) {
|
||||||
|
const targetNodeId = edge.target
|
||||||
|
const sourceNodeId = edge.source
|
||||||
|
const targetInput = edge.targetHandle.split('-')[2]
|
||||||
|
|
||||||
|
reactFlowInstance.setNodes((nds) =>
|
||||||
|
nds.map((node) => {
|
||||||
|
if (node.id === targetNodeId) {
|
||||||
|
let value
|
||||||
|
const inputAnchor = node.data.inputAnchors.find((ancr) => ancr.name === targetInput)
|
||||||
|
if (inputAnchor && inputAnchor.list) {
|
||||||
|
const values = node.data.inputs[targetInput] || []
|
||||||
|
value = values.filter((item) => !item.includes(sourceNodeId))
|
||||||
|
} else {
|
||||||
|
value = ''
|
||||||
|
}
|
||||||
|
node.data = {
|
||||||
|
...node.data,
|
||||||
|
inputs: {
|
||||||
|
...node.data.inputs,
|
||||||
|
[targetInput]: value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return node
|
||||||
|
})
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|||||||
@@ -233,3 +233,20 @@ export const copyToClipboard = (e) => {
|
|||||||
navigator.clipboard.writeText(src)
|
navigator.clipboard.writeText(src)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export const rearrangeToolsOrdering = (newValues, sourceNodeId) => {
|
||||||
|
// RequestsGet and RequestsPost have to be in order before other tools
|
||||||
|
newValues.push(`{{${sourceNodeId}.data.instance}}`)
|
||||||
|
|
||||||
|
const sortKey = (item) => {
|
||||||
|
if (item.includes('requestsGet')) {
|
||||||
|
return 0
|
||||||
|
} else if (item.includes('requestsPost')) {
|
||||||
|
return 1
|
||||||
|
} else {
|
||||||
|
return 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
newValues.sort((a, b) => sortKey(a) - sortKey(b))
|
||||||
|
}
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ import useConfirm from 'hooks/useConfirm'
|
|||||||
import { IconX } from '@tabler/icons'
|
import { IconX } from '@tabler/icons'
|
||||||
|
|
||||||
// utils
|
// utils
|
||||||
import { getUniqueNodeId, initNode, getEdgeLabelName } from 'utils/genericHelper'
|
import { getUniqueNodeId, initNode, getEdgeLabelName, rearrangeToolsOrdering } from 'utils/genericHelper'
|
||||||
import useNotifier from 'utils/useNotifier'
|
import useNotifier from 'utils/useNotifier'
|
||||||
|
|
||||||
const nodeTypes = { customNode: CanvasNode }
|
const nodeTypes = { customNode: CanvasNode }
|
||||||
@@ -110,7 +110,11 @@ const Canvas = () => {
|
|||||||
const inputAnchor = node.data.inputAnchors.find((ancr) => ancr.name === targetInput)
|
const inputAnchor = node.data.inputAnchors.find((ancr) => ancr.name === targetInput)
|
||||||
if (inputAnchor && inputAnchor.list) {
|
if (inputAnchor && inputAnchor.list) {
|
||||||
const newValues = node.data.inputs[targetInput] || []
|
const newValues = node.data.inputs[targetInput] || []
|
||||||
newValues.push(`{{${sourceNodeId}.data.instance}}`)
|
if (targetInput === 'tools') {
|
||||||
|
rearrangeToolsOrdering(newValues, sourceNodeId)
|
||||||
|
} else {
|
||||||
|
newValues.push(`{{${sourceNodeId}.data.instance}}`)
|
||||||
|
}
|
||||||
value = newValues
|
value = newValues
|
||||||
} else {
|
} else {
|
||||||
value = `{{${sourceNodeId}.data.instance}}`
|
value = `{{${sourceNodeId}.data.instance}}`
|
||||||
|
|||||||
Reference in New Issue
Block a user