Code Update

This commit is contained in:
2026-01-24 04:01:05 +00:00
parent c87279ed52
commit aad7e6e08d
13 changed files with 18 additions and 469 deletions

View File

@@ -5,9 +5,8 @@ from .routes.rag import rag_bp
def create_app():
app = Flask(__name__)
CORS(app) # Enable CORS for all routes
CORS(app)
# Register Blueprints
app.register_blueprint(main_bp)
app.register_blueprint(rag_bp, url_prefix='/api/rag')