diff --git a/README.md b/README.md index 6ada9a2f8..7c5473dea 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ Flowise has 3 different modules in a single mono repository. ### Prerequisite -- Install [Yarn v1](https://pnpm.io/installation) +- Install [PNPM](https://pnpm.io/installation) ```bash npm i -g pnpm ``` diff --git a/packages/components/nodes/chatmodels/AWSBedrock/AWSChatBedrock.ts b/packages/components/nodes/chatmodels/AWSBedrock/AWSChatBedrock.ts index 31d782705..ab5bc0df1 100644 --- a/packages/components/nodes/chatmodels/AWSBedrock/AWSChatBedrock.ts +++ b/packages/components/nodes/chatmodels/AWSBedrock/AWSChatBedrock.ts @@ -6,10 +6,6 @@ import { ICommonObject, INode, INodeData, INodeParams } from '../../../src/Inter import { getBaseClasses, getCredentialData, getCredentialParam } from '../../../src/utils' /** - * I had to run the following to build the component - * and get the icon copied over to the dist directory - * Flowise/packages/components > yarn build - * * @author Michael Connor */ class AWSChatBedrock_ChatModels implements INode { diff --git a/packages/components/nodes/llms/AWSBedrock/AWSBedrock.ts b/packages/components/nodes/llms/AWSBedrock/AWSBedrock.ts index 7b095fb95..4516e0441 100644 --- a/packages/components/nodes/llms/AWSBedrock/AWSBedrock.ts +++ b/packages/components/nodes/llms/AWSBedrock/AWSBedrock.ts @@ -6,10 +6,6 @@ import { getBaseClasses, getCredentialData, getCredentialParam } from '../../../ import { BaseBedrockInput } from '@langchain/community/dist/utils/bedrock' /** - * I had to run the following to build the component - * and get the icon copied over to the dist directory - * Flowise/packages/components > yarn build - * * @author Michael Connor */ class AWSBedrock_LLMs implements INode { diff --git a/packages/components/nodes/llms/HuggingFaceInference/core.ts b/packages/components/nodes/llms/HuggingFaceInference/core.ts index 0d74bbe7d..eb99d4a30 100644 --- a/packages/components/nodes/llms/HuggingFaceInference/core.ts +++ b/packages/components/nodes/llms/HuggingFaceInference/core.ts @@ -107,7 +107,7 @@ export class HuggingFaceInference extends LLM implements HFInput { const { HfInference } = await import('@huggingface/inference') return { HfInference } } catch (e) { - throw new Error('Please install huggingface as a dependency with, e.g. `yarn add @huggingface/inference`') + throw new Error('Please install huggingface as a dependency with, e.g. `pnpm add @huggingface/inference`') } } }