Spaces:
Runtime error
Runtime error
gkrthk
commited on
Commit
·
14a65ab
1
Parent(s):
08981b3
fix error
Browse files- confluence_qa.py +1 -1
confluence_qa.py
CHANGED
@@ -22,7 +22,7 @@ class ConfluenceQA:
|
|
22 |
loader = ConfluenceLoader(
|
23 |
url=config.confluence_url, username=config.username, api_key=config.api_key
|
24 |
)
|
25 |
-
documents = loader.load(include_attachments=config.
|
26 |
text_splitter = RecursiveCharacterTextSplitter(chunk_size=1000, chunk_overlap=150)
|
27 |
documents = text_splitter.split_documents(documents)
|
28 |
# text_splitter = TokenTextSplitter(chunk_size=1000, chunk_overlap=10) # This the encoding for text-embedding-ada-002
|
|
|
22 |
loader = ConfluenceLoader(
|
23 |
url=config.confluence_url, username=config.username, api_key=config.api_key
|
24 |
)
|
25 |
+
documents = loader.load(include_attachments=config.include_attachments, limit=50, space_key=config.space_key)
|
26 |
text_splitter = RecursiveCharacterTextSplitter(chunk_size=1000, chunk_overlap=150)
|
27 |
documents = text_splitter.split_documents(documents)
|
28 |
# text_splitter = TokenTextSplitter(chunk_size=1000, chunk_overlap=10) # This the encoding for text-embedding-ada-002
|