update release

This commit is contained in:
duanfuxiang 2025-08-21 00:56:01 +08:00
parent 9a848489e3
commit b66d3ab21f
2 changed files with 2 additions and 1 deletions

View File

@ -83,7 +83,7 @@ export class OpenAICompatibleProvider implements BaseLLMProvider {
)
}
const extraParams = this.getExtraParams(false) // 非流式调用
const extraParams = this.getExtraParams(false, model.modelId) // 非流式调用
return this.adapter.generateResponse(this.client as OpenAI, request, options, extraParams)
}

View File

@ -355,6 +355,7 @@ export const ComboBoxComponent: React.FC<ComboBoxComponentProps> = ({
e.preventDefault();
// 延迟聚焦到搜索输入框
setTimeout(() => {
// @ts-expect-error - currentTarget is HTMLElement
const input = e.currentTarget.querySelector('input');
input?.focus();
}, 0);