Document contracts using XML comments
masterWhen documenting contracts, convert OpenAPI description fields into C# XML <summary> tags. Follow these conversion rules:
- Markdown Links: Convert
[Link](url)to<see href="url">Link</see>. - Code Formatting: Convert backticks
`code`to<c>code</c>. - External References: Include a
<see href="...">link to the official OpenAI API reference and a link to the source definition in the GitHub repository.
/// <summary>
/// The format in which the generated images are returned. Must be one of <c>url</c> or <c>b64_json</c>.
/// <see href="https://platform.openai.com/docs/api-reference/images">Learn more</see>.
/// <see href="https://github.com/betalgo/openai/blob/master/Docs/openapi-split/components/schemas/createimagerequest.yml">
/// Source Definition
/// </see>
/// </summary>