docs: note input_audio coming soon, no conversion needed

The LLMContext format already matches the expected Responses API
shape for input_audio, so no adapter conversion will be needed
once OpenAI enables support.
This commit is contained in:
Paul Kompfner
2026-03-19 15:36:23 -04:00
parent 6424c36666
commit ea1534f9f8

View File

@@ -246,6 +246,9 @@ class OpenAIResponsesLLMAdapter(BaseLLMAdapter[OpenAIResponsesLLMInvocationParam
}
)
else:
# Pass through unknown types as-is
# Pass through other types as-is. Note: "input_audio" is not
# yet supported by the Responses API (coming soon per OpenAI
# docs) but the LLMContext format already matches the expected
# shape, so it should work once support is enabled.
result.append(part)
return result