|
import json, requests |
|
import gradio as gr |
|
import uuid |
|
|
|
|
|
|
|
def generate_uuid(): |
|
random_uuid = uuid.uuid4() |
|
random_uuid_str = str(random_uuid) |
|
formatted_uuid = f"{random_uuid_str[0:8]}-{random_uuid_str[9:13]}-{random_uuid_str[14:18]}-{random_uuid_str[19:23]}-{random_uuid_str[24:]}" |
|
return formatted_uuid |
|
|
|
|
|
|
|
def delete_conversation(user_id,channel_id,cookie): |
|
url = f"https://claude.ai/api/organizations/{user_id}/chat_conversations/{channel_id}" |
|
|
|
payload = json.dumps(f"{channel_id}") |
|
headers = { |
|
'User-Agent':'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1823.82', |
|
'Accept-Language': 'en-US,en;q=0.5', |
|
'Content-Type': 'application/json', |
|
'Content-Length': '38', |
|
'Referer': 'https://claude.ai/chats', |
|
'Origin': 'https://claude.ai', |
|
'Sec-Fetch-Dest': 'empty', |
|
'Sec-Fetch-Mode': 'cors', |
|
'Sec-Fetch-Site': 'same-origin', |
|
'Connection': 'keep-alive', |
|
'Cookie': f'{cookie}', |
|
'TE': 'trailers' |
|
} |
|
|
|
response = requests.delete(url, headers=headers, data=payload) |
|
|
|
if response.status_code == 204: |
|
return True |
|
else: |
|
return False |
|
|
|
def create_new_chat(user_id,cookie): |
|
url = f"https://claude.ai/api/organizations/{user_id}/chat_conversations" |
|
uuid = generate_uuid() |
|
|
|
payload = json.dumps({"uuid": uuid, "name": ""}) |
|
headers = { |
|
'User-Agent':'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1823.82', |
|
'Accept-Language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6', |
|
'Referer': 'https://claude.ai/chats', |
|
'Content-Type': 'application/json', |
|
'Origin': 'https://claude.ai', |
|
'Connection': 'keep-alive', |
|
'Cookie': cookie, |
|
'Sec-Fetch-Dest': 'empty', |
|
'Sec-Fetch-Mode': 'cors', |
|
'Sec-Fetch-Site': 'same-origin', |
|
} |
|
|
|
|
|
|
|
|
|
response = requests.post(url, headers=headers, data=payload) |
|
print(f"新的对话页面:{response.json()}") |
|
|
|
|
|
return response.json() |
|
|
|
def request_to_v2(message, cookie, user_id,context=[]): |
|
|
|
response_json = create_new_chat(user_id,cookie) |
|
channel_id = response_json.get('uuid',"") |
|
print(channel_id) |
|
|
|
|
|
timeout = 5*60 |
|
context = [message] |
|
headers = { |
|
|
|
|
|
|
|
|
|
'Content-Type': 'application/json', |
|
'Origin': 'https://claude.ai', |
|
'Referer': f'https://claude.ai/chat/{channel_id}', |
|
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36', |
|
'Cookie': cookie, |
|
'Accept-Language': 'zh-CN,zh;q=0.9,en;q=0.8', |
|
|
|
'Accept': 'text/event-stream, text/event-stream', |
|
'Sec-Ch-Ua': '"Not.A/Brand";v="8", "Chromium";v="114", "Google Chrome";v="114"', |
|
'Sec-Ch-Ua-Mobile': '?0', |
|
'Sec-Ch-Ua-Platform': '"Windows"', |
|
'Sec-Fetch-Dest': 'empty', |
|
'Sec-Fetch-Mode': 'cors', |
|
'Sec-Fetch-Site': 'same-origin', |
|
'Connection': 'keep-alive', |
|
} |
|
post_msg_url = 'https://claude.ai/api/append_message' |
|
post_msg_data = { |
|
"completion":{ |
|
"incremental":True, |
|
"prompt": message, |
|
"timezone":"Asia/Shanghai", |
|
"model":"claude-2" |
|
}, |
|
"organization_uuid": user_id, |
|
"conversation_uuid": channel_id, |
|
"text": message, |
|
"attachments": [] |
|
} |
|
post_msg_data = json.dumps(post_msg_data) |
|
|
|
|
|
try: |
|
response = requests.post(post_msg_url, headers=headers, data=post_msg_data, verify=False, stream=False,timeout = timeout) |
|
bots = "" |
|
print("a"*100) |
|
for data in response.iter_lines(): |
|
if data: |
|
|
|
data_str = data.decode('utf-8') |
|
|
|
data_str = data_str.replace("data: ", "") |
|
data_json = json.loads(data_str) |
|
|
|
bots += data_json["completion"] |
|
print(bots) |
|
context += [bots] |
|
responses = [(u, b) for u, b in zip(context[::2], context[1::2])] |
|
return responses, context |
|
|
|
except Exception as e: |
|
print(">>>>>> 查询失败") |
|
print(e) |
|
response =">>>>>> 查询失败\n报错信息为:"+ str(e) |
|
context += [response] |
|
responses = [(u, b) for u, b in zip(context[::2], context[1::2])] |
|
|
|
return responses, context |
|
|
|
finally: |
|
ds = delete_conversation(user_id,channel_id,cookie) |
|
if ds: |
|
print(f"成功删除") |
|
else: |
|
print(f"删除失败") |
|
|
|
|
|
|
|
with gr.Blocks() as dialog_app: |
|
gr.HTML("""<h1 align="center">Claude2-API-xiaolv</h1>""") |
|
with gr.Tab("Claude2 API xiaolv"): |
|
gr.Markdown(""" |
|
## 需要传入的参数有: |
|
1.cookie:intercom-device-id-lupk8zyo=....... |
|
2.user_id:对应 organization_uuid |
|
3.channel_id:对应 conversation_uuid |
|
""") |
|
|
|
with gr.Row(): |
|
with gr.Column(scale=0.4): |
|
cookies = gr.Textbox(lines=2, label="输入cookies") |
|
user_id = gr.Textbox(lines=2, label="输入user_id/organization_uuid") |
|
|
|
|
|
with gr.Column(scale=0.6): |
|
chatbot = gr.Chatbot([]) |
|
|
|
state = gr.State([]) |
|
|
|
with gr.Row(): |
|
inputs = gr.Textbox( |
|
label="输入问题", |
|
placeholder="请输入你的文本,确保已经正确填入cookies、user_id、channel_id" |
|
) |
|
inputs.submit(request_to_v2, [inputs, cookies, user_id,state], [chatbot, state]) |
|
send = gr.Button("发送请求.....") |
|
send.click(request_to_v2, [inputs, cookies, user_id,state], [chatbot, state], api_name="xiaolvgpt", show_progress=True) |
|
|
|
|
|
gr.Markdown(""" |
|
清除历史记录是,请输入:```/resrt```""") |
|
|
|
|
|
|
|
|
|
dialog_app.launch(show_error=True) |
|
|
|
|
|
|
|
|