File size: 333 Bytes
0bbe8e9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
from fastapi import FastAPI
from backend.routes import chat
app = FastAPI(
title="Coca-Cola Vietnam AI Agent",
version="1.0.0",
)
# Đăng ký router
app.include_router(chat.router)
# if __name__ == "__main__":
# import uvicorn
# uvicorn.run("server:app", host="127.0.0.1", port=8000, reload=True)
|