Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion infrastructure/rag/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: |
ask question about their content and the rag will answer them.
type: application
version: 3.4.0
appVersion: "v3.4.0"
appVersion: "v4.0.0"
dependencies:
- name: langfuse
repository: https://langfuse.github.io/langfuse-k8s
Expand Down
46 changes: 22 additions & 24 deletions libs/admin-api-lib/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions libs/admin-api-lib/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "admin-api-lib"
version = "4.0.0.post20260122141916"
version = "4.0.0"
description = "The admin backend is responsible for the document management. This includes deletion, upload and returning the source document."
authors = [
"STACKIT GmbH & Co. KG <[email protected]>",
Expand Down Expand Up @@ -113,7 +113,7 @@ flake8-docstrings = "^1.7.0"
debugpy = "^1.8.14"

[tool.poetry.dependencies]
rag-core-lib = {path = "../rag-core-lib"}
rag-core-lib = "==4.0.0"
python = "^3.13"
uvicorn = "^0.37.0"
fastapi = "^0.121.2"
Expand Down
10 changes: 5 additions & 5 deletions libs/extractor-api-lib/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion libs/extractor-api-lib/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "extractor-api-lib"
version = "4.0.0.post20260122141916"
version = "4.0.0"
description = "Extracts the content of documents, websites, etc and maps it to a common format."
authors = [
"STACKIT GmbH & Co. KG <[email protected]>",
Expand Down
44 changes: 21 additions & 23 deletions libs/rag-core-api/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions libs/rag-core-api/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "rag-core-api"
version = "4.0.0.post20260122141916"
version = "4.0.0"
description = "The rag-core-api contains the API layer for the RAG template for document retrieval, question answering, knowledge base management in the vector database and more."
packages = [{ include = "rag_core_api", from = "src" }]
authors = [
Expand All @@ -20,7 +20,7 @@ homepage = "https://pypi.org/project/rag-core-api"

[tool.poetry.dependencies]
python = "^3.13"
rag-core-lib = { path = "../rag-core-lib", develop = true}
rag-core-lib = "==4.0.0"
uvicorn = "^0.37.0"
langchain-qdrant = "^1.1.0"
dependency-injector = "^4.46.0"
Expand Down
2 changes: 1 addition & 1 deletion libs/rag-core-lib/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "rag-core-lib"
version = "4.0.0.post20260122141916"
version = "4.0.0"
description = "The rag-core-lib contains the shared components of at least two of the rag libs."
authors = [
"STACKIT GmbH & Co. KG <[email protected]>",
Expand Down
14 changes: 7 additions & 7 deletions services/admin-backend/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions services/admin-backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ python = "^3.13"
setuptools = "<80.9"

[tool.poetry.group.prod.dependencies]
admin-api-lib = "==3.4.0"
rag-core-lib = "==3.4.0"
admin-api-lib = "==4.0.0"
rag-core-lib = "==4.0.0"

[tool.poetry.group.prod-local.dependencies]
# Use local path for Tilt/development with production Dockerfile
Expand Down
Loading