Skip to content
This repository was archived by the owner on Jul 17, 2025. It is now read-only.
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
1,886 changes: 1,077 additions & 809 deletions admin-api-lib/poetry.lock

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion admin-api-lib/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ flake8-tidy-imports = "^4.10.0"
black = "^25.1.0"
# flake8-logging-format = "^2024.24.12"
# flake8-docstrings = "^1.7.0"
pytest-asyncio = "^1.0.0"

[tool.poetry.dependencies]
rag-core-lib = {path = "../rag-core-lib"}
Expand All @@ -103,7 +104,7 @@ python-dateutil = "^2.9.0.post0"
tenacity = "9.1.2"
boto3 = "^1.38.10"
tqdm = "^4.67.1"
langfuse = "^2.60.4"
langfuse = "3.0.0"
redis = "^6.0.0"
pyyaml = "^6.0.2"
python-multipart = "^0.0.20"
Expand Down
3 changes: 3 additions & 0 deletions admin-api-lib/pytest.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[pytest]
addopts = --asyncio-mode=auto
plugins = pytest-asyncio
239 changes: 220 additions & 19 deletions rag-core-api/poetry.lock

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

1 change: 1 addition & 0 deletions rag-core-api/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ pytest-asyncio = "^0.26.0"
langchain-community = "0.3.23"
fastembed = "^0.6.1"
langdetect = "^1.0.9"
langfuse = "3.0.0"


[tool.poetry.group.dev.dependencies]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from langfuse import Langfuse
from langfuse.api.core.api_error import ApiError
from langfuse.api.resources.commons.errors.not_found_error import NotFoundError
from langfuse.client import DatasetClient
from langfuse._client.datasets import DatasetClient
from ragas.llms import LangchainLLMWrapper
from ragas.metrics import (
answer_correctness,
Expand Down
Loading
Loading