intent-classifier-chatbot / model /api /start_server.py
SaherMuhamed's picture
add the fine tuned BERT model with FAST API integrated in the Flask app
11576c7
Raw
History Blame Contribute Delete
111 Bytes
import uvicorn
if __name__ == "__main__":
uvicorn.run("api:app", host="0.0.0.0", port=8000, reload=True)