You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 17, 2025. It is now read-only.
default=True, description="whether to preserve markdown formatting in the output. Default is `true`."
38
-
)
39
-
keep_newlines: Optional[StrictBool] =Field(
40
-
default=True,
41
-
description="whether to retain newline characters in the output for better readability. Default is `true`.",
42
-
)
43
-
document_name: StrictStr=Field(
44
-
description="The name that will be used to store the confluence db in the key value db and the vectordatabase (metadata.document)."
45
-
)
46
-
__properties: ClassVar[List[str]] = [
47
-
"url",
48
-
"token",
49
-
"space_key",
50
-
"include_attachments",
51
-
"keep_markdown_format",
52
-
"keep_newlines",
53
-
"document_name",
54
-
]
34
+
include_attachments: Optional[StrictBool] =Field(default=False, description="whether to include file attachments (e.g., images, documents) in the parsed content. Default is `false`.")
35
+
keep_markdown_format: Optional[StrictBool] =Field(default=True, description="whether to preserve markdown formatting in the output. Default is `true`.")
36
+
keep_newlines: Optional[StrictBool] =Field(default=True, description="whether to retain newline characters in the output for better readability. Default is `true`.")
37
+
document_name: StrictStr=Field(description="The name that will be used to store the confluence db in the key value db and the vectordatabase (metadata.document).")
38
+
confluence_kwargs: Optional[List[KeyValuePair]] =Field(default=None, description="Additional kwargs like verify_ssl")
default=True, description="whether to preserve markdown formatting in the output. Default is `true`."
42
-
)
43
-
keep_newlines: Optional[StrictBool] =Field(
44
-
default=True,
45
-
description="whether to retain newline characters in the output for better readability. Default is `true`.",
46
-
)
47
-
document_name: StrictStr=Field(
48
-
description="The name that will be used to store the confluence db in the key value db and the vectordatabase (metadata.document)."
49
-
)
50
-
__properties: ClassVar[List[str]] = [
51
-
"url",
52
-
"token",
53
-
"space_key",
54
-
"include_attachments",
55
-
"keep_markdown_format",
56
-
"keep_newlines",
57
-
"document_name",
58
-
]
38
+
include_attachments: Optional[StrictBool] =Field(default=False, description="whether to include file attachments (e.g., images, documents) in the parsed content. Default is `false`.")
39
+
keep_markdown_format: Optional[StrictBool] =Field(default=True, description="whether to preserve markdown formatting in the output. Default is `true`.")
40
+
keep_newlines: Optional[StrictBool] =Field(default=True, description="whether to retain newline characters in the output for better readability. Default is `true`.")
41
+
document_name: StrictStr=Field(description="The name that will be used to store the confluence db in the key value db and the vectordatabase (metadata.document).")
42
+
confluence_kwargs: Optional[List[KeyValuePair]] =Field(default=None, description="Additional kwargs like verify_ssl")
0 commit comments