Our company uses Gravitee. I have my ML written in Python. I need to make available via API. How can I do it? I think I can use FastAPI to expose my code as an API. Will it be possible to "marry" gravitee and my part? Would it be better to use something else instead of FastAPI?
Thanks for any advice
If I understand correctly, yes, you can create an API with FastAPI like:
Secondly, deploy it somewhere to be able to call your API internally in your company. Which mean that you should call your API like:
And then, register your new API into gravitee like explain here and for example configure the rate limiting to manage your bill related to the resource needed by your ML API ;)
Note that if you also have an Access Management available, you can manage authentication without implementing it.
Hope it's help.