Spaces:
Sleeping
Sleeping
Commit
·
95f9304
1
Parent(s):
133eabe
refactor: move scripts
Browse files
src/scientific_rag/cli.py
CHANGED
|
@@ -3,8 +3,8 @@ from pathlib import Path
|
|
| 3 |
from loguru import logger
|
| 4 |
import typer
|
| 5 |
|
| 6 |
-
from scientific_rag.
|
| 7 |
-
from scientific_rag.
|
| 8 |
|
| 9 |
|
| 10 |
app = typer.Typer(name="scientific-rag", help="Scientific RAG data pipeline CLI", add_completion=False)
|
|
|
|
| 3 |
from loguru import logger
|
| 4 |
import typer
|
| 5 |
|
| 6 |
+
from scientific_rag.scripts.chunk_data import chunk_data
|
| 7 |
+
from scientific_rag.scripts.index_qdrant import index_qdrant
|
| 8 |
|
| 9 |
|
| 10 |
app = typer.Typer(name="scientific-rag", help="Scientific RAG data pipeline CLI", add_completion=False)
|
src/scientific_rag/{application/scripts → scripts}/chunk_data.py
RENAMED
|
File without changes
|
src/scientific_rag/{application/scripts → scripts}/index_qdrant.py
RENAMED
|
File without changes
|