Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Converters - add usage examples #6556

Merged
merged 28 commits into from
Dec 15, 2023
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
7555912
standardize converters inputs: first draft
anakin87 Dec 13, 2023
69aa402
fix precommit
anakin87 Dec 13, 2023
5508b36
fix precommit 2
anakin87 Dec 13, 2023
b3b5625
fix precommit 3
anakin87 Dec 13, 2023
4d71ba8
add default for optional param
anakin87 Dec 13, 2023
63752f0
rm leftover
anakin87 Dec 13, 2023
0ba43bd
install boilerpy in linting workflow
anakin87 Dec 14, 2023
50a7ae2
add boilerpy3 to the core dependencies
masci Dec 14, 2023
cc9bbbd
add reno
anakin87 Dec 14, 2023
5d05954
remove boilerpy3 installation from test workflow
julian-risch Dec 14, 2023
ca0a5e1
fix pylint: import order and unused import
julian-risch Dec 14, 2023
879e737
fix import order
julian-risch Dec 14, 2023
3b9da7a
add release note
masci Dec 14, 2023
cabbb11
better Tika docstring
anakin87 Dec 14, 2023
09c60ab
Merge branch 'massi/boilerpy3' into converters-standardize-sources
anakin87 Dec 14, 2023
b381194
rm boilerpy from linting
anakin87 Dec 14, 2023
ba8c1d0
leftover
anakin87 Dec 14, 2023
fd9d17f
Merge branch 'main' into converters-standardize-sources
anakin87 Dec 14, 2023
1c1b235
first impl for html
anakin87 Dec 14, 2023
989e48e
progressing on other components
anakin87 Dec 14, 2023
ab44436
fix test
anakin87 Dec 14, 2023
a212ddc
add tests - run with meta
anakin87 Dec 14, 2023
c5d6d29
release note
anakin87 Dec 14, 2023
6e9a853
reintroduce patches wrongly deleted
anakin87 Dec 14, 2023
22171e9
add patch in test
anakin87 Dec 14, 2023
5c894f0
fix tika test
anakin87 Dec 14, 2023
622f209
add usage examples
anakin87 Dec 15, 2023
b48a9fa
Merge branch 'main' into converters-add-usage-examples
anakin87 Dec 15, 2023
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
install boilerpy in linting workflow
  • Loading branch information
anakin87 committed Dec 14, 2023
commit 0ba43bd8dc2a87d81d84094b544341f3e7198598
2 changes: 1 addition & 1 deletion .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:

- name: Install Haystack
run: |
pip install .[dev,audio] langdetect transformers[torch,sentencepiece]==4.35.2 'sentence-transformers>=2.2.0' pypdf markdown-it-py mdit_plain tika 'azure-ai-formrecognizer>=3.2.0b2'
pip install .[dev,audio] langdetect transformers[torch,sentencepiece]==4.35.2 'sentence-transformers>=2.2.0' pypdf markdown-it-py mdit_plain tika 'azure-ai-formrecognizer>=3.2.0b2' boilerpy3

- name: Pylint
if: steps.files.outputs.any_changed == 'true'
Expand Down
Loading