Deployment AI în producție cu FastAPI
Matt Eckerle
Software and Data Engineering Leader


✓ Python de bază: funcții, clase, module, structuri de date

✓ Python de bază: funcții, clase, module, structuri de date
✓ Concepte HTTP & REST API

✓ Python de bază: funcții, clase, module, structuri de date
✓ Concepte HTTP & REST API
✓ Utilizarea framework-ului FastAPI
✓ Noțiuni de bază de Machine Learning


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} este un parametru de cale.int) pentru validare automată.
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 pentru endpoint-ul 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
Deployment AI în producție cu FastAPI