Update rag_llamaindex.py
Browse files- rag_llamaindex.py +2 -2
rag_llamaindex.py
CHANGED
@@ -65,8 +65,8 @@ class LlamaIndexRAG(BaseRAG):
|
|
65 |
|
66 |
def get_service_context(config):
|
67 |
return ServiceContext.from_defaults(
|
68 |
-
chunk_overlap = config["chunk_overlap"],
|
69 |
-
chunk_size = config["chunk_size"],
|
70 |
llm = self.get_llm(config)
|
71 |
)
|
72 |
|
|
|
65 |
|
66 |
def get_service_context(config):
|
67 |
return ServiceContext.from_defaults(
|
68 |
+
#chunk_overlap = config["chunk_overlap"],
|
69 |
+
#chunk_size = config["chunk_size"],
|
70 |
llm = self.get_llm(config)
|
71 |
)
|
72 |
|