From 4b892e89390281669d64a8e5b7c9395458069b39 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Feb 2025 22:23:30 +0000 Subject: [PATCH 1/5] build(deps): bump transformers from 4.48.0 to 4.49.0 in /application Bumps [transformers](https://github.com/huggingface/transformers) from 4.48.0 to 4.49.0. - [Release notes](https://github.com/huggingface/transformers/releases) - [Commits](https://github.com/huggingface/transformers/compare/v4.48.0...v4.49.0) --- updated-dependencies: - dependency-name: transformers dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- application/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/requirements.txt b/application/requirements.txt index ffb96ecd..a59e2660 100644 --- a/application/requirements.txt +++ b/application/requirements.txt @@ -81,7 +81,7 @@ tiktoken==0.8.0 tokenizers==0.21.0 torch==2.5.1 tqdm==4.67.1 -transformers==4.48.0 +transformers==4.49.0 typing-extensions==4.12.2 typing-inspect==0.9.0 tzdata==2024.2 From cb0bceacfac223578852360700dd63280cec9e87 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Feb 2025 22:23:48 +0000 Subject: [PATCH 2/5] build(deps): bump elasticsearch from 8.17.0 to 8.17.1 in /application Bumps [elasticsearch](https://github.com/elastic/elasticsearch-py) from 8.17.0 to 8.17.1. - [Release notes](https://github.com/elastic/elasticsearch-py/releases) - [Commits](https://github.com/elastic/elasticsearch-py/compare/v8.17.0...v8.17.1) --- updated-dependencies: - dependency-name: elasticsearch dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- application/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/requirements.txt b/application/requirements.txt index ffb96ecd..74f0d1aa 100644 --- a/application/requirements.txt +++ b/application/requirements.txt @@ -7,7 +7,7 @@ docx2txt==0.8 duckduckgo-search==7.4.2 ebooklib==0.18 elastic-transport==8.17.0 -elasticsearch==8.17.0 +elasticsearch==8.17.1 escodegen==1.0.11 esprima==4.0.1 esutils==1.0.1 From edbd08be8a2b48d76977b38ffac828ad06cd8cfc Mon Sep 17 00:00:00 2001 From: asminkarki012 Date: Tue, 25 Feb 2025 21:52:39 +0545 Subject: [PATCH 3/5] docs: Ensure --env-file .env is included for environment variable loading --- docs/pages/Deploying/Docker-Deploying.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/pages/Deploying/Docker-Deploying.mdx b/docs/pages/Deploying/Docker-Deploying.mdx index 559fa4e3..7bb70729 100644 --- a/docs/pages/Deploying/Docker-Deploying.mdx +++ b/docs/pages/Deploying/Docker-Deploying.mdx @@ -84,11 +84,11 @@ There are two Ollama optional files: **CPU:** ```bash - docker compose -f deployment/docker-compose.yaml -f deployment/optional/docker-compose.optional.ollama-cpu.yaml up -d + docker compose --env-file .env -f deployment/docker-compose.yaml -f deployment/optional/docker-compose.optional.ollama-cpu.yaml up -d ``` **GPU:** ```bash - docker compose -f deployment/docker-compose.yaml -f deployment/optional/docker-compose.optional.ollama-gpu.yaml up -d + docker compose --env-file .env -f deployment/docker-compose.yaml -f deployment/optional/docker-compose.optional.ollama-gpu.yaml up -d ``` 3. **Pull the Ollama Model:** @@ -132,4 +132,4 @@ Whenever you modify the `.env` file or any Docker Compose files, you need to res ## Further Configuration -This guide covers the basic Docker deployment of DocsGPT. For detailed information on configuring various aspects of DocsGPT, such as LLM providers, models, vector stores, and more, please refer to the comprehensive [DocsGPT Settings Guide](/Deploying/DocsGPT-Settings). \ No newline at end of file +This guide covers the basic Docker deployment of DocsGPT. For detailed information on configuring various aspects of DocsGPT, such as LLM providers, models, vector stores, and more, please refer to the comprehensive [DocsGPT Settings Guide](/Deploying/DocsGPT-Settings). From 1d1efc00b507dd37fb70c6dbfcf8f99306453007 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 25 Feb 2025 20:38:17 +0000 Subject: [PATCH 4/5] build(deps): bump qdrant-client from 1.12.2 to 1.13.2 in /application Bumps [qdrant-client](https://github.com/qdrant/qdrant-client) from 1.12.2 to 1.13.2. - [Release notes](https://github.com/qdrant/qdrant-client/releases) - [Commits](https://github.com/qdrant/qdrant-client/compare/v1.12.2...v1.13.2) --- updated-dependencies: - dependency-name: qdrant-client dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- application/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/requirements.txt b/application/requirements.txt index d24e866b..fd4f623f 100644 --- a/application/requirements.txt +++ b/application/requirements.txt @@ -70,7 +70,7 @@ pypdf==5.2.0 python-dateutil==2.9.0.post0 python-dotenv==1.0.1 python-pptx==1.0.2 -qdrant-client==1.12.2 +qdrant-client==1.13.2 redis==5.2.1 referencing==0.30.2 regex==2024.11.6 From 0aae53524cc97ed468c25030d851980c24f5b119 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 25 Feb 2025 20:38:23 +0000 Subject: [PATCH 5/5] build(deps): bump lxml from 5.3.0 to 5.3.1 in /application Bumps [lxml](https://github.com/lxml/lxml) from 5.3.0 to 5.3.1. - [Release notes](https://github.com/lxml/lxml/releases) - [Changelog](https://github.com/lxml/lxml/blob/master/CHANGES.txt) - [Commits](https://github.com/lxml/lxml/compare/lxml-5.3.0...lxml-5.3.1) --- updated-dependencies: - dependency-name: lxml dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- application/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/requirements.txt b/application/requirements.txt index d24e866b..5e6a6f5d 100644 --- a/application/requirements.txt +++ b/application/requirements.txt @@ -37,7 +37,7 @@ langchain-openai==0.3.0 langchain-text-splitters==0.3.5 langsmith==0.2.10 lazy-object-proxy==1.10.0 -lxml==5.3.0 +lxml==5.3.1 markupsafe==3.0.2 marshmallow==3.26.1 mpmath==1.3.0