Merge pull request #34 from dbravender/fix-cookbook-rag

Remove get_simple_embedding from node.py for pocketflow-rag example
This commit is contained in:
Zachary Huang 2025-04-20 16:47:57 -04:00 committed by GitHub
commit 92fa92685c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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):