Project restructuring..

This commit is contained in:
timothyafolami
2024-08-14 23:09:10 +01:00
parent dbcb8da015
commit ae151a2eff
17 changed files with 281 additions and 26 deletions
+2 -2
View File
@@ -4,8 +4,8 @@ sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
from fastapi import FastAPI, HTTPException
from fastapi.middleware.cors import CORSMiddleware
from pydantic import BaseModel
from data_ingestion.utils import search, load_embedded_data
from data_ingestion.data_ingest import load_data
from utils import search, load_embedded_data
from data_ingest import load_data
app = FastAPI()