Skip to content

Commit

Permalink
feat: make importing faster (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
lsorber authored Feb 12, 2025
1 parent 290e2c0 commit b9a6a28
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ memory-profiler = ">=0.61.0"
pdoc = ">=14.4.0"

[tool.poetry.scripts] # https://python-poetry.org/docs/pyproject/#scripts
raglite = "raglite:cli"
raglite = "raglite._cli:cli"

[tool.coverage.report] # https://coverage.readthedocs.io/en/latest/config.html#report
fail_under = 50
Expand Down
3 changes: 0 additions & 3 deletions src/raglite/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""RAGLite."""

from raglite._cli import cli
from raglite._config import RAGLiteConfig
from raglite._eval import answer_evals, evaluate, insert_evals
from raglite._insert import insert_document
Expand Down Expand Up @@ -38,6 +37,4 @@
"insert_evals",
"answer_evals",
"evaluate",
# CLI
"cli",
]

0 comments on commit b9a6a28

Please sign in to comment.