From aef705021f6e78d9d312bdb624af3728544ee0da Mon Sep 17 00:00:00 2001 From: kqlio67 Date: Tue, 15 Oct 2024 21:07:41 +0300 Subject: Updated(g4f/Provider/ChatifyAI.py) --- g4f/Provider/ChatifyAI.py | 4 ---- 1 file changed, 4 deletions(-) (limited to 'g4f/Provider') diff --git a/g4f/Provider/ChatifyAI.py b/g4f/Provider/ChatifyAI.py index a999afac..7e43b065 100644 --- a/g4f/Provider/ChatifyAI.py +++ b/g4f/Provider/ChatifyAI.py @@ -65,19 +65,15 @@ class ChatifyAI(AsyncGeneratorProvider, ProviderModelMixin): response.raise_for_status() response_text = await response.text() - # Фільтруємо та форматуємо відповідь filtered_response = cls.filter_response(response_text) yield filtered_response @staticmethod def filter_response(response_text: str) -> str: - # Розділяємо рядок на частини parts = response_text.split('"') - # Вибираємо лише текстові частини (кожна друга частина) text_parts = parts[1::2] - # Об'єднуємо текстові частини clean_text = ''.join(text_parts) return clean_text -- cgit v1.2.3