From 8335359c96d16aa87ab31bb359f1d0e5798bb448 Mon Sep 17 00:00:00 2001 From: H Lohaus Date: Sat, 6 Apr 2024 20:24:39 +0200 Subject: Update async.py --- g4f/client/async.py | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/g4f/client/async.py b/g4f/client/async.py index 7c421ee7..6b23a9d5 100644 --- a/g4f/client/async.py +++ b/g4f/client/async.py @@ -16,21 +16,7 @@ from . import get_model_and_provider, get_last_provider from .Provider.BingCreateImages import BingCreateImages from .Provider.needs_auth import Gemini, OpenaiChat from .Provider.You import You - -def read_json(text: str) -> dict: - """ - Parses JSON code block from a string. - - Args: - text (str): A string containing a JSON code block. - - Returns: - dict: A dictionary parsed from the JSON code block. - """ - match = re.search(r"```(json|)\n(?P[\S\s]+?)\n```", text) - if match: - return match.group("code") - return text +from .helper import read_json def iter_response( response: iter[str], -- cgit v1.2.3