Skip to content

Instantly share code, notes, and snippets.

@cosmic-cortex
Last active January 29, 2020 12:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cosmic-cortex/cf7a7fcc7fdbe62209bcef874bb12317 to your computer and use it in GitHub Desktop.
Save cosmic-cortex/cf7a7fcc7fdbe62209bcef874bb12317 to your computer and use it in GitHub Desktop.
Skeleton of the predict endpoint
@app.post("/predict", response_model=PredictResponse)
def predict(input: PredictRequest):
return PredictResponse(data=[0.0])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment