Shopify_AI / app /main.py
Prerna43's picture
shopify_ai
80ef840
Raw
History Blame Contribute Delete
414 Bytes
from fastapi import FastAPI
from app.api.routes import router
from app.utils.config import get_settings
def create_app() -> FastAPI:
settings = get_settings()
app = FastAPI(
title=settings.app_name,
version="0.1.0",
description="Agentic Shopify customer support prototype with policy RAG and escalation.",
)
app.include_router(router)
return app
app = create_app()