I’m passing string parameters to my plugin for example a search term.
In my OpenAPI YAML I have:
- name: search
in: query
description: The search term to filter search results by.
required: true
schema:
type: string
Would ChatGPT respect the string type set in OpenAPI? Do I also need to sanitize in my for example against xss in my code?