Spaces:
Sleeping
Sleeping
“vinit5112”
commited on
Commit
·
1433a41
1
Parent(s):
141c4a6
rag not found
Browse files- backend/__init__.py +1 -0
- backend/backend_api.py +2 -2
backend/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
|
backend/backend_api.py
CHANGED
|
@@ -11,8 +11,8 @@ import logging
|
|
| 11 |
from contextlib import asynccontextmanager
|
| 12 |
|
| 13 |
# Import your existing RAG system
|
| 14 |
-
from rag import RAG
|
| 15 |
-
from vector_store import VectorStore
|
| 16 |
|
| 17 |
# Configure logging
|
| 18 |
logging.basicConfig(level=logging.INFO)
|
|
|
|
| 11 |
from contextlib import asynccontextmanager
|
| 12 |
|
| 13 |
# Import your existing RAG system
|
| 14 |
+
from .rag import RAG
|
| 15 |
+
from .vector_store import VectorStore
|
| 16 |
|
| 17 |
# Configure logging
|
| 18 |
logging.basicConfig(level=logging.INFO)
|