Nikolai Pismennyi
Nikolai Pismennyi
@kristapratico Any progress on this? Makes the SDK unusable with Azure + Async filter as it causes runtime errors.
[keenborder786](https://github.com/keenborder786) > [@p3nnst8r](https://github.com/p3nnst8r) I don't know what you are trying to achieve, but essentially, `with_structured_output` returns a `RunnableSequence` that consists of the following two Runnables: `RunnableBinding (where ChatOpenAI is binding,...
@heberuriegas I found this hack to be working with streaming: ```python llm_with_tools = llm.bind_tools( tools, strict=True, response_format={ "type": "json_schema", "json_schema": { "name": "", "strict": True, "schema": ResponsePydanticSchema.model_json_schema(), }, }, )...