โครงการนี้ถูกเก็บถาวรแล้ว เนื่องจากสถานการณ์ส่วนตัว ฉันจึงไม่มีเวลาดูแลพื้นที่เก็บข้อมูลนี้
วิศวกรรมย้อนกลับคุณลักษณะการแชทของ Bing เวอร์ชันใหม่
อังกฤษ - 简体中文 - 繁體中文 - Español - 日本語
python3 -m pip install EdgeGPT --upgrade
- อาจจะไม่จำเป็นอีกต่อไป !!!
ในบางภูมิภาค Microsoft ได้เปิดให้ทุกคนใช้ฟีเจอร์แชท ได้ ดังนั้นคุณอาจ ข้ามขั้นตอนนี้ ได้ คุณสามารถตรวจสอบสิ่งนี้ได้ด้วยเบราว์เซอร์ (โดยที่ user-agent ตั้งค่าให้สะท้อน Edge) โดย พยายามเริ่มแชทโดยไม่ต้องเข้าสู่ระบบ
นอกจากนี้ยังพบว่าอาจ ขึ้นอยู่กับที่อยู่ IP ของคุณ ตัวอย่างเช่น หากคุณพยายามเข้าถึงฟีเจอร์แชทจาก IP ที่ทราบว่า อยู่ในช่วงดาต้าเซ็นเตอร์ (vServers, เซิร์ฟเวอร์รูท, VPN, พรอกซีทั่วไป, ...) คุณอาจต้องเข้าสู่ระบบ ในขณะที่สามารถ เข้าถึงคุณสมบัติต่างๆ ได้ดีจากที่อยู่ IP ที่บ้านของคุณ
หากคุณได้รับข้อผิดพลาดต่อไปนี้ คุณสามารถลอง ระบุคุกกี้ และดูว่าใช้งานได้หรือไม่:
Exception: Authentication failed. You have not been accepted into the beta.
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36 Edg/111.0.1661.51
) คุณสามารถทำสิ่งนี้ได้อย่างง่ายดายด้วยส่วนขยายเช่น "User-Agent Switcher and Manager" สำหรับ Chrome และ Firefoxbing_cookies_*.json
bing_cookies_*.json
เพื่อให้กลไกการประมวลผลคุกกี้ภายในสามารถรับรู้ได้ cookies = json . loads ( open ( "./path/to/cookies.json" , encoding = "utf-8" ). read ()) # might omit cookies option
bot = await Chatbot . create ( cookies = cookies )
$ python3 -m EdgeGPT.EdgeGPT -h
EdgeGPT - A demo of reverse engineering the Bing GPT chatbot
Repo: github.com/acheong08/EdgeGPT
By: Antonio Cheong
!help for help
Type !exit to exit
usage: EdgeGPT.py [-h] [--enter-once] [--search-result] [--no-stream] [--rich] [--proxy PROXY] [--wss-link WSS_LINK]
[--style {creative,balanced,precise}] [--prompt PROMPT] [--cookie-file COOKIE_FILE]
[--history-file HISTORY_FILE] [--locale LOCALE]
options:
-h, --help show this help message and exit
--enter-once
--search-result
--no-stream
--rich
--proxy PROXY Proxy URL (e.g. socks5://127.0.0.1:1080)
--wss-link WSS_LINK WSS URL(e.g. wss://sydney.bing.com/sydney/ChatHub)
--style {creative,balanced,precise}
--prompt PROMPT prompt to start with
--cookie-file COOKIE_FILE
path to cookie file
--history-file HISTORY_FILE
path to history file
--locale LOCALE your locale (e.g. en-US, zh-CN, en-IE, en-GB)
(จีน/สหรัฐฯ/อังกฤษ/นอร์เวย์ได้ปรับปรุงการรองรับภาษา)
Chatbot
และ asyncio
เพื่อการควบคุมที่ละเอียดยิ่งขึ้นใช้ Async เพื่อประสบการณ์ที่ดีที่สุด เช่น:
import asyncio , json
from EdgeGPT . EdgeGPT import Chatbot , ConversationStyle
async def main ():
bot = await Chatbot . create () # Passing cookies is "optional", as explained above
response = await bot . ask ( prompt = "Hello world" , conversation_style = ConversationStyle . creative , simplify_response = True )
print ( json . dumps ( response , indent = 2 )) # Returns
"""
{
"text": str,
"author": str,
"sources": list[dict],
"sources_text": str,
"suggestions": list[str],
"messages_left": int
}
"""
await bot . close ()
if __name__ == "__main__" :
asyncio . run ( main ())
Query
และ Cookie
สร้างแบบสอบถาม Bing Chat AI แบบง่าย (โดยใช้รูปแบบการสนทนาที่ 'แม่นยำ' เป็นค่าเริ่มต้น) และดูเฉพาะข้อความหลักแทนที่จะเป็นการตอบสนอง API ทั้งหมด:
อย่าลืมจัดเก็บคุกกี้ของคุณในรูปแบบเฉพาะ: bing_cookies_*.json
from EdgeGPT . EdgeUtils import Query , Cookie
q = Query ( "What are you? Give your answer as Python code" )
print ( q )
ไดเร็กทอรีเริ่มต้นสำหรับจัดเก็บไฟล์คุกกี้คือ HOME/bing_cookies
แต่คุณสามารถเปลี่ยนได้ด้วย:
Cookie . dir_path = Path ( r"..." )
หรือเปลี่ยนรูปแบบการสนทนาหรือไฟล์คุกกี้ที่จะใช้:
q = Query (
"What are you? Give your answer as Python code" ,
style = "creative" , # or: 'balanced', 'precise'
cookie_file = "./bing_cookies_alternative.json"
)
# Use `help(Query)` to see other supported parameters.
แยกเอาต์พุตข้อความ ตัวอย่างโค้ด รายการแหล่งที่มา/ข้อมูลอ้างอิง หรือคำถามที่ตามมาที่แนะนำจากการตอบกลับอย่างรวดเร็วโดยใช้คุณลักษณะต่อไปนี้:
q . output # Also: print(q)
q . sources
q . sources_dict
q . suggestions
q . code
q . code_blocks
q . code_block_formatsgiven )
รับพรอมต์ดั้งเดิมและรูปแบบการสนทนาที่คุณระบุ:
q . prompt
q . ignore_cookies
q . style
q . simplify_response
q . locale
repr ( q )
เข้าถึงแบบสอบถามก่อนหน้าที่เกิดขึ้นตั้งแต่การนำเข้า Query
:
Query . index # A list of Query objects; updated dynamically
Query . image_dir_path
และสุดท้าย คลาส Cookie
รองรับไฟล์คุกกี้หลายไฟล์ ดังนั้นหากคุณสร้างไฟล์คุกกี้เพิ่มเติมโดยใช้หลักการตั้งชื่อ bing_cookies_*.json
ข้อความค้นหาของคุณจะลองใช้ไฟล์ถัดไปโดยอัตโนมัติ (เรียงตามตัวอักษร) หากคุณเกินโควต้าคำขอรายวันของคุณ ( ปัจจุบันตั้งไว้ที่ 200)
นี่คือคุณสมบัติหลักที่คุณสามารถเข้าถึงได้:
Cookie . current_file_index
Cookie . current_file_path
Cookie . current_data
Cookie . dir_path
Cookie . search_pattern
Cookie . files
Cookie . image_token
Cookie . import_next
Cookie . rotate_cookies
Cookie . ignore_files
Cookie . supplied_files
Cookie . request_count
สิ่งนี้จะถือว่าคุณมีไฟล์ Cookies.json ในไดเร็กทอรีการทำงานปัจจุบันของคุณ
docker run --rm -it -v $( pwd ) /cookies.json:/cookies.json:ro -e COOKIE_FILE= ' /cookies.json ' ghcr.io/acheong08/edgegpt
คุณสามารถเพิ่มแฟล็กพิเศษได้ดังต่อไปนี้
docker run --rm -it -v $( pwd ) /cookies.json:/cookies.json:ro -e COOKIE_FILE= ' /cookies.json ' ghcr.io/acheong08/edgegpt --rich --style creative
$ python3 -m ImageGen.ImageGen -h
usage: ImageGen.py [-h] [-U U] [--cookie-file COOKIE_FILE] --prompt PROMPT [--output-dir OUTPUT_DIR] [--quiet] [--asyncio]
optional arguments:
-h, --help show this help message and exit
-U U Auth cookie from browser
--cookie-file COOKIE_FILE
File containing auth cookie
--prompt PROMPT Prompt to generate images for
--output-dir OUTPUT_DIR
Output directory
--quiet Disable pipeline messages
--asyncio Run ImageGen using asyncio
ImageQuery
สร้างภาพตามพรอมต์ง่ายๆ และดาวน์โหลดไปยังไดเร็กทอรีการทำงานปัจจุบัน:
from EdgeGPT . EdgeUtils import ImageQuery
q = ImageQuery ( "Meerkats at a garden party in Devon" )
เปลี่ยนไดเร็กทอรีดาวน์โหลดสำหรับรูปภาพในอนาคตทั้งหมดในเซสชันนี้:
Query.image_dirpath = Path("./to_another_folder")
ImageGen
และ asyncio
เพื่อการควบคุมที่ละเอียดยิ่งขึ้น from EdgeGPT . ImageGen import ImageGen
import argparse
import json
async def async_image_gen ( args ) -> None :
async with ImageGenAsync ( args . U , args . quiet ) as image_generator :
images = await image_generator . get_images ( args . prompt )
await image_generator . save_images ( images , output_dir = args . output_dir )
if __name__ == "__main__" :
parser = argparse . ArgumentParser ()
parser . add_argument ( "-U" , help = "Auth cookie from browser" , type = str )
parser . add_argument ( "--cookie-file" , help = "File containing auth cookie" , type = str )
parser . add_argument (
"--prompt" ,
help = "Prompt to generate images for" ,
type = str ,
required = True ,
)
parser . add_argument (
"--output-dir" ,
help = "Output directory" ,
type = str ,
default = "./output" ,
)
parser . add_argument (
"--quiet" , help = "Disable pipeline messages" , action = "store_true"
)
parser . add_argument (
"--asyncio" , help = "Run ImageGen using asyncio" , action = "store_true"
)
args = parser . parse_args ()
# Load auth cookie
with open ( args . cookie_file , encoding = "utf-8" ) as file :
cookie_json = json . load ( file )
for cookie in cookie_json :
if cookie . get ( "name" ) == "_U" :
args . U = cookie . get ( "value" )
break
if args . U is None :
raise Exception ( "Could not find auth cookie" )
if not args . asyncio :
# Create image generator
image_generator = ImageGen ( args . U , args . quiet )
image_generator . save_images (
image_generator . get_images ( args . prompt ),
output_dir = args . output_dir ,
)
else :
asyncio . run ( async_image_gen ( args ))
โครงการนี้เกิดขึ้นได้ต้องขอบคุณทุกคนที่มีส่วนร่วม