We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd8c118 commit ab79710Copy full SHA for ab79710
langfuse/openai.py
@@ -977,3 +977,10 @@ async def close(self) -> None:
977
Automatically called if the response body is read to completion.
978
"""
979
await self.response.close()
980
+
981
+ async def aclose(self) -> None:
982
+ """Close the response and release the connection.
983
984
+ Automatically called if the response body is read to completion.
985
+ """
986
+ await self.response.aclose()
0 commit comments