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

Moving from ini to toml with config #28

Merged
merged 38 commits into from
Nov 14, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
c0264fe
make file and poetry build
ArturOle Oct 22, 2024
029189c
modification of dockerfiles
ArturOle Oct 22, 2024
e6450a7
Correction of dockerfiles
ArturOle Oct 22, 2024
4df056e
Adding curl to dockerfiles
ArturOle Oct 22, 2024
2da6312
Adding poetry to the PATH
ArturOle Oct 22, 2024
bb64db8
Using Docker's ENV for env var passing
ArturOle Oct 22, 2024
ec482e4
path correction
ArturOle Oct 22, 2024
79b6d1c
ENV not executing, trying different ordering
ArturOle Oct 22, 2024
36461a3
Correction of poetry build
ArturOle Oct 22, 2024
cd922de
Changing execution of test
ArturOle Oct 22, 2024
cfa6819
Correction of docker compose for unit-tests
ArturOle Oct 22, 2024
7b132db
Checking running poetry run pytest with directory
ArturOle Oct 22, 2024
0a38ed2
Test path correction
ArturOle Oct 22, 2024
fd41c46
deprecation correction
ArturOle Oct 22, 2024
0ca69ab
poetry lock update
ArturOle Oct 22, 2024
92f56a9
Deletion of reqs dir
ArturOle Oct 22, 2024
77d0682
Deploy version for arm server deployment
ArturOle Oct 27, 2024
96e7708
correcting indentation error
ArturOle Oct 27, 2024
8ab7ed2
Correcting text splitter parameters
ArturOle Oct 27, 2024
a40dd28
Replacing pytorch and transformers with fastembed
ArturOle Oct 30, 2024
c60d108
Test correction
ArturOle Oct 30, 2024
246a34e
Unit test correction, code adjustment
ArturOle Oct 30, 2024
2ca415f
Additional tests and the setter method for text splitter
ArturOle Oct 30, 2024
b495317
test correction
ArturOle Oct 30, 2024
9167676
Correction to the test correction (To be squashed)
ArturOle Oct 30, 2024
c06e54c
Correcting user expirience of TextSplitter and adding tests
ArturOle Oct 31, 2024
4f8c7ce
Adding fasttext-language detection
ArturOle Oct 31, 2024
17231fb
update poetry lock
ArturOle Nov 5, 2024
48951f2
Merge remote-tracking branch 'origin/master' into staging
ArturOle Nov 5, 2024
d2cded5
Dual lenguage support for eng and pol. Future multi lang implementati…
ArturOle Nov 11, 2024
5e22097
Merge branch 'feat/multi_language_support' into staging
ArturOle Nov 11, 2024
3450c7b
Merge branch 'master' into staging
ArturOle Nov 11, 2024
3c77d22
Moving from ini file to toml
ArturOle Nov 13, 2024
b61a921
Correcting tests and adjusting code for toml-based shared DTO object
ArturOle Nov 13, 2024
4d5509c
Version bump
ArturOle Nov 13, 2024
66b702d
Merge branch 'feat/exodus_to_toml' into staging
ArturOle Nov 13, 2024
acbb021
logging in exeption handling set to error level
ArturOle Nov 13, 2024
34ecb39
Merge branch 'master' into staging
ArturOle Nov 14, 2024
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
Using Docker's ENV for env var passing
  • Loading branch information
ArturOle committed Oct 22, 2024
commit bb64db80e646d8b33a338b52b1ced023f13bc947
2 changes: 1 addition & 1 deletion docker/build_dev/dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ CMD ["bash"]
RUN apt-get update
RUN apt-get install -y python3 python3-pip curl
RUN curl -sSL https://install.python-poetry.org | python3 -
RUN export PATH="/root/.local/bin:$PATH"
ENV PATH="/opt/gtk/bin:$PATH"

WORKDIR /ragger
COPY . /ragger
Expand Down
2 changes: 1 addition & 1 deletion docker/integration_tests/dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ CMD ["bash"]
RUN apt-get update --fix-missing
RUN apt-get install -y python3 python3-pip git ca-certificates lsb-release ubuntu-keyring software-properties-common curl
RUN curl -sSL https://install.python-poetry.org | python3 -
RUN export PATH="/root/.local/bin:$PATH"
ENV PATH="/opt/gtk/bin:$PATH"

RUN update-ca-certificates --fresh
RUN export SSL_CERT_DIR=/etc/ssl/certs
Expand Down
2 changes: 1 addition & 1 deletion docker/unit_tests/dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ CMD ["bash"]
RUN apt-get update
RUN apt-get install -y python3 python3-pip git curl
RUN curl -sSL https://install.python-poetry.org | python3 -
RUN export PATH="/root/.local/bin:$PATH"
ENV PATH="/opt/gtk/bin:$PATH"
RUN apt install -y tesseract-ocr
RUN apt install -y libtesseract-dev
RUN apt install -y poppler-utils
Expand Down
Loading