Hey all, I’m looking for a Python library that can translate JSON inputs, structured in the OpenAI function invocation format (including operationId
, parameters, etc.), into HTTP requests for various OpenAPI services. The library should be able to dynamically parse this specific JSON format and automatically construct the corresponding requests as defined in an OpenAPI schema of some service. This doesn’t sound like rocket science, and it is a bit of tedious work, so I’m hoping I don’t have to do it or repeat the work someone else has already done.
1 Like