Test / server.py
UKielz's picture
Upload 14 files
0bbe8e9 verified
raw
history blame contribute delete
333 Bytes
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)