1
0
Fork 0
GPT4FREE/unfinished/bard/__init__.py

94 lines
3.9 KiB
Python
Raw Normal View History

2023-04-27 16:17:07 +00:00
from json import dumps, loads
from os import getenv
2023-04-27 14:43:59 +00:00
from random import randint
from re import search
from urllib.parse import urlencode
2023-04-16 16:43:26 +00:00
from bard.typings import BardResponse
2023-04-27 14:43:59 +00:00
from dotenv import load_dotenv
from requests import Session
2023-04-16 16:43:26 +00:00
2023-04-27 16:17:07 +00:00
load_dotenv()
2023-04-16 16:43:26 +00:00
token = getenv('1psid')
proxy = getenv('proxy')
temperatures = {
2023-04-27 16:17:07 +00:00
0: "Generate text strictly following known patterns, with no creativity.",
2023-04-16 16:43:26 +00:00
0.1: "Produce text adhering closely to established patterns, allowing minimal creativity.",
0.2: "Create text with modest deviations from familiar patterns, injecting a slight creative touch.",
0.3: "Craft text with a mild level of creativity, deviating somewhat from common patterns.",
0.4: "Formulate text balancing creativity and recognizable patterns for coherent results.",
0.5: "Generate text with a moderate level of creativity, allowing for a mix of familiarity and novelty.",
0.6: "Compose text with an increased emphasis on creativity, while partially maintaining familiar patterns.",
0.7: "Produce text favoring creativity over typical patterns for more original results.",
0.8: "Create text heavily focused on creativity, with limited concern for familiar patterns.",
0.9: "Craft text with a strong emphasis on unique and inventive ideas, largely ignoring established patterns.",
2023-04-27 16:17:07 +00:00
1: "Generate text with maximum creativity, disregarding any constraints of known patterns or structures."
2023-04-16 16:43:26 +00:00
}
2023-04-27 16:17:07 +00:00
2023-04-16 16:43:26 +00:00
class Completion:
def create(
2023-04-27 16:17:07 +00:00
prompt: str = 'hello world',
temperature: int = None,
conversation_id: str = '',
response_id: str = '',
choice_id: str = '') -> BardResponse:
2023-04-16 16:43:26 +00:00
if temperature:
prompt = f'''settings: follow these settings for your response: [temperature: {temperature} - {temperatures[temperature]}] | prompt : {prompt}'''
2023-04-27 16:17:07 +00:00
client = Session()
2023-04-16 16:43:26 +00:00
client.proxies = {
'http': f'http://{proxy}',
2023-04-27 16:17:07 +00:00
'https': f'http://{proxy}'} if proxy else None
2023-04-16 16:43:26 +00:00
client.headers = {
2023-04-27 16:17:07 +00:00
'authority': 'bard.google.com',
'content-type': 'application/x-www-form-urlencoded;charset=UTF-8',
'origin': 'https://bard.google.com',
'referer': 'https://bard.google.com/',
'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36',
'x-same-domain': '1',
'cookie': f'__Secure-1PSID={token}'
2023-04-16 16:43:26 +00:00
}
2023-04-27 16:17:07 +00:00
snlm0e = search(r'SNlM0e\":\"(.*?)\"',
client.get('https://bard.google.com/').text).group(1)
2023-04-16 16:43:26 +00:00
params = urlencode({
2023-04-27 16:17:07 +00:00
'bl': 'boq_assistant-bard-web-server_20230326.21_p0',
'_reqid': randint(1111, 9999),
'rt': 'c',
2023-04-16 16:43:26 +00:00
})
2023-04-27 14:43:59 +00:00
response = client.post(
f'https://bard.google.com/_/BardChatUi/data/assistant.lamda.BardFrontendService/StreamGenerate?{params}',
data={
'at': snlm0e,
'f.req': dumps([None, dumps([
[prompt],
None,
[conversation_id, response_id, choice_id],
])])
}
)
2023-04-27 16:17:07 +00:00
2023-04-16 16:43:26 +00:00
chat_data = loads(response.content.splitlines()[3])[0][2]
2023-04-27 16:17:07 +00:00
if not chat_data:
print('error, retrying')
Completion.create(prompt, temperature,
conversation_id, response_id, choice_id)
2023-04-16 16:43:26 +00:00
json_chat_data = loads(chat_data)
results = {
2023-04-27 16:17:07 +00:00
'content': json_chat_data[0][0],
'conversation_id': json_chat_data[1][0],
'response_id': json_chat_data[1][1],
'factualityQueries': json_chat_data[3],
'textQuery': json_chat_data[2][0] if json_chat_data[2] is not None else '',
'choices': [{'id': i[0], 'content': i[1]} for i in json_chat_data[4]],
2023-04-16 16:43:26 +00:00
}
return BardResponse(results)