feat: add "reasoning" as interleaved field option for vLLM providers (#30477)

Co-authored-by: Ben Sandbrook <1126483+delta9000@users.noreply.github.com>
Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com>
This commit is contained in:
Ben Sandbrook
2026-06-09 00:16:05 -04:00
committed by GitHub
parent 384a8f58c6
commit ab701d20eb
5 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -952,7 +952,7 @@ const ProviderModalities = Schema.Struct({
const ProviderInterleaved = Schema.Union([
Schema.Boolean,
Schema.Struct({
field: Schema.Literals(["reasoning_content", "reasoning_details"]),
field: Schema.Literals(["reasoning", "reasoning_content", "reasoning_details"]),
}),
])