Add azure-responses provider and fix ordered list styling (#10267)

- Include azure-responses case in provider options switch
- Set decimal list-style for ordered lists in markdown
This commit is contained in:
SuYao 2025-09-20 00:24:29 +08:00 committed by GitHub
parent 5d8e706c0b
commit 97e9e42173
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 0 deletions

View File

@ -84,6 +84,7 @@ export function buildProviderOptions(
case 'openai':
case 'openai-chat':
case 'azure':
case 'azure-responses':
providerSpecificOptions = {
...buildOpenAIProviderOptions(assistant, model, capabilities),
serviceTier: serviceTierSetting

View File

@ -76,6 +76,10 @@
list-style: initial;
}
.markdown ol {
list-style: decimal;
}
.markdown ul,
.markdown ol {
padding-left: 1.5em;