From a2b803a56c9721cf4a3f8a265b78a1333f79a496 Mon Sep 17 00:00:00 2001 From: H Lohaus Date: Mon, 20 Nov 2023 17:35:18 +0100 Subject: [PATCH] Update AItianhu.py --- g4f/Provider/AItianhu.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/g4f/Provider/AItianhu.py b/g4f/Provider/AItianhu.py index 05ee5a20..34187694 100644 --- a/g4f/Provider/AItianhu.py +++ b/g4f/Provider/AItianhu.py @@ -72,7 +72,8 @@ class AItianhu(AsyncGeneratorProvider): if "detail" not in line: raise RuntimeError(f"Response: {line}") - if content := line["detail"]["choices"][0]["delta"].get( + content = line["detail"]["choices"][0]["delta"].get( "content" - ): - yield content \ No newline at end of file + ) + if content: + yield content