openapi: 3.0.2 info: title: Miyagi Plugin API description: A sample Bing and ChatGPT plugin to demonstrate Azure hosting options version: 0.1.0 servers: - url: https://localhost:8000 paths: "/query": post: summary: Get financial advise operationId: get_query_results_skill description: For a given query, return a response parameters: - required: true schema: title: Question type: string name: question in: query responses: "200": description: Successful Response content: application/json: schema: title: Get financial advise type: object "422": description: Validation Error content: application/json: schema: "$ref": "#/components/schemas/HTTPValidationError" components: schemas: HTTPValidationError: title: HTTPValidationError type: object properties: detail: title: Detail type: array items: "$ref": "#/components/schemas/ValidationError" ValidationError: title: ValidationError required: - loc - msg - type type: object properties: loc: title: Location type: array items: anyOf: - type: string - type: integer msg: title: Message type: string type: title: Error Type type: string