EdgeGPT
Extension for Text Generation Webui based on EdgeGPT by acheong08, a reverse engineered API of Microsoft's Bing Chat AI. Now you can give a sort of Internet access to your characters, easily, quickly and free.
How to Run
-
Clone oobabooga's original repository and follow the instructions until you can chat with a chatbot.
-
Open the extensions folder and clone here this repo:
git clone https://github.com/GiusTex/EdgeGPT.git- Activate the
textgenconda environment (from the linked instructions, or TextGenerationWebui\installer_files\env if you used the one-click installer), then if you see in console:(path\to\textgen) path\to\text-generation-webui\extensions>or(path\to\TextGenerationWebui\installer_files\env) path\to\TextGenerationWebui\text-generation-webui\extensions>, run the following commands to install EdgeGPT:
pip install -r EdgeGPT/requirements.txtHow to update
- Open
cmd_windows.bat(orLinuxormacOSdepending on the platform you have) and typepip install EdgeGPT==0.10.11. - Go in the EdgeGPT extension folder, copy the path, then in the
cmd.batfile typecd your\copied\path git pull.
Features
- Changeable keyword to activate Bing when you need and how you want
- Button to leave activated Bing
- 5 debug buttons to show or print different parts of the prompt
- Works in chat-mode, so you can use your desired characters
- Editable Bing context within the webui
- Bing conversation style (creative,balanced,precise). No inside the webui
- It works on Colab now, without cookies. I uploaded a colab you can test, scroll down to open it
- Added an option to use cookies
Keyword
Start the prompt with Hey Bing, the default keyword to activate Bing when you need, and Bing will search and give an answer, that will be fed to the character memory before it answers you.
Debug buttons
If the bot answer doesn't suit you, you can turn on "Show Bing Output" to show the Bing output in the webui, sometimes it doesn't answer well and need better search words.
You can also print in the console other prompt parts (user input, whole prompt, "raw" Bing output, Bing output + custom context):
Chat-mode
It works with "chat, streaming, non-streaming, listen" modes.
Change keyword
Change the Bing activation word within the webui, from EdgeGPT options (punctuation marks are not supported, they give error).
Edit Bing context
Now you can customize the context around the Bing output.
Overwrite Activation Word
Added Overwrite Activation Word, while this is turned on Bing will always answer you without the need of an activation word, if you don't want to mess your prompt with a keyword that doesn't fit in.
Bing conversation style
You can choose 3 Bing conversation styles between
creative,balancedorprecisefrom EdgeGPT options.
Colab
I merged and created a colab version of the text-generation-webui where you can use the new EdgeGPT (it works on Colab without cookies), and use different models and extensions:
Cookies
Since many people had login issues, now there is an option to use cookies, thanks to Simplegram and some other edits of mine, you can turn them on from EdgeGPT options. To use them follow the instructions here.
How it works
Inside the function "input_modifier" the code looks for the chosen word:
BingOutput = re.search(ChosenWord, UserInput)Then, if it finds it, it adds it to "custom_generate_chat_prompt" at line 172 and then it calls the function:
#Adding BingString
async def EdgeGPT():
global UserInput
global RawBingString
global PrintRawBingString
bot = await Chatbot.create()
response = await bot.ask(prompt=UserInput, conversation_style=ConversationStyle.creative)
# Select only the bot response from the response dictionary
for message in response["item"]["messages"]:
if message["author"] == "bot":
bot_response = message["text"]
# Remove [^#^] citations in response
RawBingString = re.sub('\[\^\d+\^\]', '', str(bot_response))
await bot.close()
return RawBingString
# Different ways to run the same EdgeGPT function:
# From chosen word
if(BingOutput!=None) and not OverwriteWord:
asyncio.run(EdgeGPT())
# of from OverwriteWord button
elif OverwriteWord:
asyncio.run(EdgeGPT())
# When Bing has given his answer we print (if requested) and save the output
if RawBingString != None and not "":
# Add Bing output to character memory
rows.append(BingString)And at the end it takes RawBingString and adds it Bing context (useful to tell the character what to do with the informations), generating BingString. If you want you can also change the context around the RawBingString from the webui within EdgeGPT options > EdgeGPT context, to better suit your desidered answer.
Weaknesses:
Being still a new application, you are welcome to make tests to find your optimal result, be it clearing the conversation, changing the context around the Bing output, or something else.
- Sometimes the character ignores the Bing output, even if it is in his memory, in this case asking "Can you repeat me [whatever you asked]" may help.
- The character could start his answer with
:, but after some messages it goes away. - If you get a
captcha erroryou can try writing something onbing.comto complete the captcha, and if you still get the error you can use thecookies option(after writing something onbing.com).
Contributing
Pull requests, suggestions and bug reports are welcome, but as I'm not a programmer I can't guarantee I'll be of help.







