diff --git a/packages/components/nodes/embeddings/TensorFlowEmbedding/TensorFlow.svg b/packages/components/nodes/embeddings/TensorFlowEmbedding/TensorFlow.svg
deleted file mode 100644
index a38e1aa02..000000000
--- a/packages/components/nodes/embeddings/TensorFlowEmbedding/TensorFlow.svg
+++ /dev/null
@@ -1,19 +0,0 @@
-
\ No newline at end of file
diff --git a/packages/components/nodes/embeddings/TensorFlowEmbedding/TensorFlowEmbedding.ts b/packages/components/nodes/embeddings/TensorFlowEmbedding/TensorFlowEmbedding.ts
deleted file mode 100644
index f6dcb5cef..000000000
--- a/packages/components/nodes/embeddings/TensorFlowEmbedding/TensorFlowEmbedding.ts
+++ /dev/null
@@ -1,34 +0,0 @@
-import { INode } from '../../../src/Interface'
-import { getBaseClasses } from '../../../src/utils'
-import '@tensorflow/tfjs-node'
-import { TensorFlowEmbeddings, TensorFlowEmbeddingsParams } from 'langchain/embeddings/tensorflow'
-
-class TensorFlowEmbedding_Embeddings implements INode {
- label: string
- name: string
- type: string
- icon: string
- category: string
- description: string
- baseClasses: string[]
-
- constructor() {
- this.label = 'TensorFlow Embeddings'
- this.name = 'tensorFlowEmbeddings'
- this.type = 'TensorFlowEmbeddings'
- this.icon = 'TensorFlow.svg'
- this.category = 'Embeddings'
- this.description = 'TensorFlow.js to generate embeddings for a given text'
- this.baseClasses = [this.type, ...getBaseClasses(TensorFlowEmbeddings)]
- }
-
- async init(): Promise {
- const obj: Partial = {}
-
- const model = new TensorFlowEmbeddings(obj)
-
- return model
- }
-}
-
-module.exports = { nodeClass: TensorFlowEmbedding_Embeddings }
diff --git a/packages/components/package.json b/packages/components/package.json
index b559baba3..b51f85346 100644
--- a/packages/components/package.json
+++ b/packages/components/package.json
@@ -20,10 +20,6 @@
"@huggingface/inference": "1",
"@pinecone-database/pinecone": "^0.0.12",
"@supabase/supabase-js": "^2.21.0",
- "@tensorflow-models/universal-sentence-encoder": "^1.3.3",
- "@tensorflow/tfjs-converter": "^4.6.0",
- "@tensorflow/tfjs-core": "^4.6.0",
- "@tensorflow/tfjs-node": "^4.6.0",
"axios": "^0.27.2",
"cheerio": "^1.0.0-rc.12",
"chromadb": "^1.3.1",