mirror of
https://github.com/carlrobertoh/ProxyAI.git
synced 2026-04-28 03:30:48 +00:00
fix: respect non-streaming executor mode for custom openai subagents
This commit is contained in:
parent
f15edcf2c4
commit
34a83a9854
1 changed files with 1 additions and 1 deletions
|
|
@ -235,7 +235,7 @@ class CustomOpenAILLMClient(
|
|||
): String {
|
||||
val state = requireChatState()
|
||||
val customParams: CustomOpenAIParams = params.toCustomOpenAIParams(state)
|
||||
val streamRequest = state.shouldStream()
|
||||
val streamRequest = stream && state.shouldStream()
|
||||
val additionalProperties = buildCustomOpenAIAdditionalProperties(
|
||||
body = state.body,
|
||||
messages = messages,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue