Remove get_simple_embedding from node.py for pocketflow-rag example

This commit is contained in:
Dan Bravender 2025-04-20 16:42:43 -04:00
parent 7b97105438
commit 0e72aa3526
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
from pocketflow import Node, Flow, BatchNode
import numpy as np
import faiss
from utils import call_llm, get_embedding, get_simple_embedding, fixed_size_chunk
from utils import call_llm, get_embedding, fixed_size_chunk
# Nodes for the offline flow
class ChunkDocumentsNode(BatchNode):