rig-openapi-tools 0.1.6

Turn any OpenAPI spec into LLM-callable tools for rig
Documentation
openapi: "3.0.0"
info:
  title: JSONPlaceholder
  version: "1.0"
servers:
  - url: https://jsonplaceholder.typicode.com

paths:
  /users/{id}:
    get:
      operationId: getUser
      summary: Get a user by id
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: The user id
      responses:
        "200":
          description: A user object