trying to improve compability with python versions < 3.8
pull/1272/head
abc 11 months ago
parent a7e1419d01
commit d4c8f3e8d5

@ -71,12 +71,11 @@ class AItianhu(AsyncGeneratorProvider):
if "detail" not in line:
raise RuntimeError(f"Response: {line}")
if content := line["detail"]["choices"][0]["delta"].get(
"content"
):
content = line["detail"]["choices"][0]["delta"].get("content")
if content:
yield content
@classmethod
@property
def params(cls):

@ -55,9 +55,8 @@ class GptForLove(AsyncGeneratorProvider):
except:
raise RuntimeError(f"Broken line: {line}")
if "detail" in line:
if content := line["detail"]["choices"][0]["delta"].get(
"content"
):
content = line["detail"]["choices"][0]["delta"].get("content")
if content:
yield content
elif "10分钟内提问超过了5次" in line:
raise RuntimeError("Rate limit reached")

@ -62,7 +62,9 @@ class GptGo(AsyncGeneratorProvider):
line = json.loads(line[len(start):-1])
if line["choices"][0]["finish_reason"] == "stop":
break
if content := line["choices"][0]["delta"].get("content"):
content = line["choices"][0]["delta"].get("content"):
if content:
yield content

@ -50,9 +50,8 @@ class Ylokh(AsyncGeneratorProvider):
if line.startswith("data: [DONE]"):
break
line = json.loads(line[6:])
if content := line["choices"][0]["delta"].get(
"content"
):
content = line["choices"][0]["delta"].get("content")
if content:
yield content
else:
chat = await response.json()

@ -69,7 +69,9 @@ class Ails(AsyncGeneratorProvider):
if line.startswith(start) and line != "data: [DONE]":
line = line[len(start):-1]
line = json.loads(line)
if token := line["choices"][0]["delta"].get("content"):
token = line["choices"][0]["delta"].get("content")
if token:
if "ai.ls" in token or "ai.ci" in token:
raise Exception(f"Response Error: {token}")
yield token

Loading…
Cancel
Save