Replies: 2 comments 2 replies
-
If you look at the code, we start by adding max_pages pages to the docs object that is the ouput of Dirty Trick:
|
Beta Was this translation helpful? Give feedback.
2 replies
-
How to retreive documents from all spaces, not only the specified space? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
loader = ConfluenceLoader(
#url="https://templates.atlassian.net/wiki",
#username="",
#api_key=""
url="https://xxx.atlassian.net/wiki",
username="test,
api_key="xxxxx"
)
docs = loader.load(space_key="~410423377", page_ids=["3012689927"], include_attachments=False, limit=100,max_pages=500)
we are using confluence loader to load pages with specified page ids, however we find it will not only load page 3012689927 but also other pages in the same space, do you know how to fix it?
however when I change limit=1,max_pages=1, it loads the exact page I want
Beta Was this translation helpful? Give feedback.
All reactions