Skip to content

Commit

Permalink
Fix directory name in the manual_extraction example. #27 (#58)
Browse files Browse the repository at this point in the history
Fix directory name in the `manual_extraction` example.
  • Loading branch information
badmonster0 authored Mar 7, 2025
1 parent 379bc30 commit db34659
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/manual_extraction/manual_extraction.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def manual_extraction_flow(flow_builder: cocoindex.FlowBuilder, data_scope: coco
"""
Define an example flow that extracts manual information from a Markdown.
"""
data_scope["documents"] = flow_builder.add_source(cocoindex.sources.LocalFile(path="pdf_files", binary=True))
data_scope["documents"] = flow_builder.add_source(cocoindex.sources.LocalFile(path="manuals", binary=True))

manual_infos = data_scope.add_collector()

Expand Down

0 comments on commit db34659

Please sign in to comment.