使用 FastAPI 將 AI 佈署到生產環境
Matt Eckerle
Software and Data Engineering Leader


✓ 基礎 Python:函式、類別、模組、資料結構

✓ 基礎 Python:函式、類別、模組、資料結構
✓ HTTP 與 REST API 概念

✓ 基礎 Python:函式、類別、模組、資料結構
✓ HTTP 與 REST API 概念
✓ 使用 FastAPI 框架
✓ 機器學習基礎


GET https://example.com/?item_id=1

from fastapi import FastAPI
app = FastAPI()
@app.get("/item/{item_id}")
async def read_item(item_id: int):
return {"item_id": item_id}
{item_id} 是路徑參數。int)自動驗證。
POST https://example.com

from fastapi import FastAPI from pydantic import BaseModel app = FastAPI() db = {}class Item(BaseModel): name: str price: float@app.post("/items", status_code=201)def create_item(item: Item): db[item.name] = item.model_dump() return {"message": f"Created {item.name}"}
@app.post 宣告 POST 端點

from fastapi import FastAPI, HTTPException app = FastAPI() @app.get("/item/{item_id}") async def read_item(item_id: int): if item_id == 4242: #An invalid order number raise HTTPException(status_code=404, detail="Item not found") return {"item_id": item_id}@app.post("/items") async def create_item(item: Item): # Simulating item creation return {"message": f"Created {item.name}"}, 201
使用 FastAPI 將 AI 佈署到生產環境