#!/bin/bash

# SageMaker expect a 'serve' script to be found in the container which starts the model server.

# Start the FastAPI server using Uvicorn
exec uvicorn main:app --host 0.0.0.0 --port 8080