* Fast.ai support is in beta now, check out the example notebook here: https://colab.research.google.com/github/bentoml/gallery/blob/master/fast-ai/pet-classification/notebook.ipynb
* Improved OpenAPI docs endpoint:
* DataframeHandler allows specifying input types now - users can also generate API Client library that respects the expected input format for each BentoML API service user defined, e.g.:
python
class MyClassifier(BentoService):
api(DataframeHandler, input_types=['int8', 'int8', 'float', 'str', 'bool'])
def predict(self, df):
...
or specifying both column name & type:
api(DataframeHandler, input_types={'id': 'string', 'age': 'int' })
def predict(self, df):
...
* API server index page now provides web UI for testing API endpoints and shows instructions for how to generate Client API library:
![image](https://user-images.githubusercontent.com/489344/61011095-e60d5500-a32d-11e9-8856-d9a6abe6d2fc.png)
![image](https://user-images.githubusercontent.com/489344/61011104-ec9bcc80-a32d-11e9-8d2e-ea3bd1a8b28c.png)