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 ef804bd commit 32a04ffCopy full SHA for 32a04ff
guardrails/classes/llm/llm_response.py
@@ -56,7 +56,7 @@ def to_interface(self) -> ILLMResponse:
56
async_stream_output.append(so)
57
awaited_stream_output.append(str(async_to_sync(so)))
58
59
- self.async_stream_output = aiter(async_stream_output) # type: ignore
+ self.async_stream_output = aiter(async_stream_output) # type: ignore # noqa: F821
60
61
return ILLMResponse(
62
prompt_token_count=self.prompt_token_count, # type: ignore - pyright doesn't understand aliases
0 commit comments