ak3ra commited on
Commit
1e49809
·
1 Parent(s): cfb1a62
Files changed (1) hide show
  1. rag/rag_pipeline.py +1 -0
rag/rag_pipeline.py CHANGED
@@ -4,6 +4,7 @@ import json
4
  from llama_index.core import Document, VectorStoreIndex
5
  from llama_index.core.node_parser import SentenceWindowNodeParser, SentenceSplitter
6
  from llama_index.core import PromptTemplate
 
7
 
8
 
9
  class RAGPipeline:
 
4
  from llama_index.core import Document, VectorStoreIndex
5
  from llama_index.core.node_parser import SentenceWindowNodeParser, SentenceSplitter
6
  from llama_index.core import PromptTemplate
7
+ from typing import List
8
 
9
 
10
  class RAGPipeline: