OpenAPI2Callables is a Python library for parsing and projecting OpenAPI endpoints into OpenAI/GenericLLM compatible Tools.
It's designed to be flexible enough for non-LLM directed usage as well.
OpenAPI is a widely used standard for describing RESTful APIs. OpenAI specified a fairly simple tool calling API. OpenAPI2Callables bridges the gap between OpenAPI and OpenAI by providing a way to parse OpenAPI schemas and project them into OpenAI compatible tool definitions and provide a 'proxy' to those OpenAPI functions from a calling service.
i.e. One can separate responsibilities from a tool calling service (toolshed?), and the actual LLM interacting client function, such as a chatservice or a local CLI.
Here's an example of the interaction between a User, an App, a Toolshed, and an LLM:
The User interacts exclusively with the App. On initialisation of the App, the App uses OpenAPI2Callables to query and parse the OpenAPI schema from the Toolshed. The App then projects the OpenAPI schema into OpenAI compatible tool definitions. When the User asks a question, the App calls the LLM with the question, including the tools generated.
The LLM may then call the App with a tool call, including the tool ID and arguments. The App then calls the Toolshed with the tool call (via the APITool.call interface, i.e. 'tool(*args,**kwargs)), and the Toolshed returns the result. The App then returns the result to the LLM, which then returns a synthesised result to the User (via the App, again).
sequenceDiagram
actor User
participant App
participant Toolshed
critical OpenAPI2Callables(toolshed/openapi.json)
activate Toolshed
App ->> Toolshed: `GET /openapi.json`
Toolshed ->> App: {schema}
deactivate Toolshed
App ->> App: OpenAPI2Callables(schema) -> [APITool(operationId='get_widgets_bandled'...]
end
User->>App: "How many widgets were bangled in the past week?"
App ->> LLM: {'role':'user', 'content': "How many widgets were bangled in the past week?", tools=[APITool(operationId='get_widgets_bandled'...)...]}
activate LLM
LLM ->> App: `ToolCall(function='get_widgets_bangled', arguments={"since":"2025-02-02"}, id=1)`
deactivate LLM
critical Call get_widgets_bangled
activate App
App ->> App: tools['get_widgets_bangled'](since='2025-02-02')
App ->> Toolshed: `get toolshed/get_widgets_bangled?since=2025-02-02`
activate Toolshed
Toolshed ->> App: "{widget1:0, widget2:500, widget3:...}"
deactivate Toolshed
deactivate App
end
App ->> LLM: {'role':'tool', 'tool_id':1, 'content': "{widget1:0, widget2:500, widget3:...}"}
activate LLM
LLM ->> App: {'role':'assistant', 'content':`There have been 500+...= 28,462 widgets bangled since 2025-02-02`}
deactivate LLM
App ->> User: `There have been 500+...= 28,462 widgets bangled since 2025-02-02`
- Parse OpenAPI JSON/YAML schemas and extract basic parameter and response configurations
- Host a sample server for testing and demonstration
- Project tool definitions into OpenAI compatible tool definitions
- Provide runtime callbacks for tool execution
You can install OpenAPI2Callables using pip:
pip install openapi2callables
Here's a simple example of how to use OpenAPI2Callables:
from openapi2callables import parse_spec, get_spec, APITool
# Load an OpenAPI specification
spec_url = "https://example.com/api/openapi.json"
spec = get_spec(spec_url)
# Parse the specification
tools = parse_spec(spec)
# Use the parsed tools in your application
tools = {}
for tool in tool_specs:
print(f"Tool: {tool.name}")
print(f"Description: {tool.description}")
print(f"Parameters: {tool.parameters}")
print("---")
tools[tool.name] = APITool(tool)
# Use the tools in your application
response = tools["get_user"](user_id=123)
print(response)OpenAPI2Callables also provides a command-line interface:
openapi2callables parse https://example.com/api/openapi.json # Parse an OpenAPI specification and dump the specs to the console, mostly for debugging
openapi2callables serve https://example.com/api/openapi.json # Start a sample server for testing and demonstration
Contributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the MIT License - see the LICENSE file for details.
- Provide request authorization passthrough
- Enhance error handling and validation
- Add support for more complex OpenAPI features
- Improve documentation and examples
