mirror of
https://github.com/rjNemo/fastapi
synced 2026-06-06 02:26:46 +00:00
8 lines
154 B
Python
8 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
|