mirror of
https://github.com/fastapi/fastapi.git
synced 2025-12-26 15:51:02 -05:00
9 lines
154 B
Python
9 lines
154 B
Python
from fastapi import FastAPI
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.post("/index-weights/")
|
|
async def create_index_weights(weights: dict[int, float]):
|
|
return weights
|