mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-05 00:01:00 +00:00
68 lines
2.4 KiB
Python
68 lines
2.4 KiB
Python
from __future__ import annotations
|
|
|
|
from ..typing import CreateResult, Messages
|
|
from .base_provider import BaseProvider, format_prompt
|
|
|
|
import json
|
|
from ..requests import Session, get_session_from_browser
|
|
|
|
class Pi(BaseProvider):
|
|
url = "https://pi.ai/talk"
|
|
working = True
|
|
supports_stream = True
|
|
|
|
@classmethod
|
|
def create_completion(
|
|
cls,
|
|
model: str,
|
|
messages: Messages,
|
|
stream: bool,
|
|
session: Session = None,
|
|
proxy: str = None,
|
|
timeout: int = 180,
|
|
conversation_id: str = None,
|
|
**kwargs
|
|
) -> CreateResult:
|
|
if not session:
|
|
session = get_session_from_browser(url=cls.url, proxy=proxy, timeout=timeout)
|
|
if not conversation_id:
|
|
conversation_id = cls.start_conversation(session)
|
|
answer = cls.ask(session, messages, conversation_id)
|
|
for line in answer:
|
|
if "text" in line:
|
|
yield line["text"]
|
|
|
|
@classmethod
|
|
def start_conversation(cls, session: Session) -> str:
|
|
response = session.post('https://pi.ai/api/chat/start', data="{}", headers={
|
|
'accept': 'application/json',
|
|
'x-api-version': '3'
|
|
})
|
|
if 'Just a moment' in response.text:
|
|
raise RuntimeError('Error: Cloudflare detected')
|
|
return response.json()['conversations'][0]['sid']
|
|
|
|
def get_chat_history(session: Session, conversation_id: str):
|
|
params = {
|
|
'conversation': conversation_id,
|
|
}
|
|
response = session.get('https://pi.ai/api/chat/history', params=params)
|
|
if 'Just a moment' in response.text:
|
|
raise RuntimeError('Error: Cloudflare detected')
|
|
return response.json()
|
|
|
|
def ask(session: Session, messages: Messages, conversation_id: str):
|
|
json_data = {
|
|
'text': format_prompt(messages),
|
|
'conversation': conversation_id,
|
|
'mode': 'BASE',
|
|
}
|
|
response = session.post('https://pi.ai/api/chat', json=json_data, stream=True)
|
|
for line in response.iter_lines():
|
|
if b'Just a moment' in line:
|
|
raise RuntimeError('Error: Cloudflare detected')
|
|
if line.startswith(b'data: {"text":'):
|
|
yield json.loads(line.split(b'data: ')[1])
|
|
elif line.startswith(b'data: {"title":'):
|
|
yield json.loads(line.split(b'data: ')[1])
|
|
|