Skip to content

Commit 813a5e0

Browse files
authored
fix: docling is now default parser (#5)
1 parent f5af98a commit 813a5e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/create_ragbits_app/templates/rag/template_config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ def build_context(self, context: dict) -> dict: # noqa: PLR6301
7575
elif vector_store == "Postgresql with pgvector":
7676
ragbits_extras.append("pgvector")
7777

78-
if parser == "docling":
79-
ragbits_extras.append("docling")
78+
if parser == "unstructured":
79+
ragbits_extras.append("unstructured")
8080

8181
if hybrid_search:
8282
ragbits_extras.append("fastembed")

0 commit comments

Comments
 (0)