Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
1f0f836
fix: Support the VLM pipeline in docling
erichare Sep 8, 2025
2dc2399
fix: Add VLM support and opencv dep
erichare Sep 8, 2025
df10355
[autofix.ci] apply automated fixes
autofix-ci[bot] Sep 8, 2025
7767daa
[autofix.ci] apply automated fixes (attempt 2/3)
autofix-ci[bot] Sep 8, 2025
95ace2d
Update comments and fix ruff errors
erichare Sep 9, 2025
d052356
[autofix.ci] apply automated fixes
autofix-ci[bot] Sep 9, 2025
1bab5d3
Merge branch 'release-1.6.0' into fix-vlm-docling
erichare Sep 9, 2025
7caa6bd
Hide OCR engine when VLM selected
erichare Sep 9, 2025
653ae4b
Merge branch 'release-1.6.0' into fix-vlm-docling
erichare Sep 9, 2025
b8ecc79
[autofix.ci] apply automated fixes
autofix-ci[bot] Sep 9, 2025
8432d64
[autofix.ci] apply automated fixes (attempt 2/3)
autofix-ci[bot] Sep 9, 2025
52efcab
Fix VLM pipeline
erichare Sep 9, 2025
ded1dc0
[autofix.ci] apply automated fixes
autofix-ci[bot] Sep 9, 2025
779d3ac
Merge branch 'release-1.6.0' into fix-vlm-docling
erichare Sep 9, 2025
a0ef14f
Add type annotation for visited and excluded
erichare Sep 9, 2025
2a94c88
Merge branch 'release-1.6.0' into fix-vlm-docling
erichare Sep 9, 2025
878deff
Merge branch 'release-1.6.0' into fix-vlm-docling
erichare Sep 9, 2025
3998017
Merge branch 'release-1.6.0' into fix-vlm-docling
erichare Sep 11, 2025
b1cf265
Merge branch 'release-1.6.0' into fix-vlm-docling
jordanrfrazier Sep 11, 2025
2ddc95d
Merge branch 'release-1.6.0' into fix-vlm-docling
erichare Sep 11, 2025
1a1cde5
Merge branch 'release-1.6.0' into fix-vlm-docling
erichare Sep 11, 2025
d5445e8
Merge branch 'release-1.6.0' into fix-vlm-docling
erichare Sep 11, 2025
5c8ed17
Merge branch 'release-1.6.0' into fix-vlm-docling
erichare Sep 11, 2025
0fe4866
Merge branch 'release-1.6.0' into fix-vlm-docling
erichare Sep 11, 2025
ac89031
Merge branch 'release-1.6.0' into fix-vlm-docling
jordanrfrazier Sep 11, 2025
b202d3e
Merge branch 'release-1.6.0' into fix-vlm-docling
erichare Sep 11, 2025
ac29f07
Merge branch 'release-1.6.0' into fix-vlm-docling
erichare Sep 11, 2025
94c287d
[autofix.ci] apply automated fixes
autofix-ci[bot] Sep 11, 2025
49455d9
Small fix for the templates
erichare Sep 11, 2025
422a7de
Merge branch 'release-1.6.0' into fix-vlm-docling
erichare Sep 11, 2025
b250916
Update Vector Store RAG.json
erichare Sep 11, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[autofix.ci] apply automated fixes
  • Loading branch information
autofix-ci[bot] authored Sep 8, 2025
commit df10355c68574002a738cd2cb8ec84de2928b2ab
8 changes: 3 additions & 5 deletions src/backend/base/langflow/components/data/file.py
Original file line number Diff line number Diff line change
Expand Up @@ -600,8 +600,7 @@
if not hasattr(df, "text"):
if hasattr(df, "error"):
raise ValueError(df.error[0])
else:
raise ValueError("No content generated.")
raise ValueError("No content generated.")

Check failure on line 603 in src/backend/base/langflow/components/data/file.py

View workflow job for this annotation

GitHub Actions / Ruff Style Check (3.13)

Ruff (EM101)

src/backend/base/langflow/components/data/file.py:603:30: EM101 Exception must not use a string literal, assign to variable first

Check failure on line 603 in src/backend/base/langflow/components/data/file.py

View workflow job for this annotation

GitHub Actions / Ruff Style Check (3.13)

Ruff (TRY003)

src/backend/base/langflow/components/data/file.py:603:19: TRY003 Avoid specifying long messages outside the exception class

return df

Expand All @@ -613,7 +612,6 @@
if not hasattr(df, "text"):
if hasattr(df, "error"):
raise ValueError(df.error[0])
else:
raise ValueError("No content generated.")

raise ValueError("No content generated.")

Check failure on line 615 in src/backend/base/langflow/components/data/file.py

View workflow job for this annotation

GitHub Actions / Ruff Style Check (3.13)

Ruff (EM101)

src/backend/base/langflow/components/data/file.py:615:30: EM101 Exception must not use a string literal, assign to variable first

Check failure on line 615 in src/backend/base/langflow/components/data/file.py

View workflow job for this annotation

GitHub Actions / Ruff Style Check (3.13)

Ruff (TRY003)

src/backend/base/langflow/components/data/file.py:615:19: TRY003 Avoid specifying long messages outside the exception class

return Message(text=str(df.text[0]))
Loading