Skip to content

Commit

Permalink
Update loginUrl of BingChatBot to fix the bot
Browse files Browse the repository at this point in the history
The original URL (https://www.bing.com/new) now redirects to the Microsoft official website, preventing users from logging into the Bing ChatBot. This commit updates the URL to https://www.bing.com/chat, resolving the login issue.
  • Loading branch information
Haulyn5 authored and sunner committed Dec 17, 2023
1 parent d9db92e commit e8e06c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bots/microsoft/BingChatBot.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default class BingChatBot extends Bot {
static _className = "BingChatBot"; // Class name of the bot
static _model = "h3precise"; // Bing styles: h3imaginative, harmonyv3, h3precise
static _logoFilename = "bing-logo.svg"; // Place it in public/bots/
static _loginUrl = "https://www.bing.com/new";
static _loginUrl = "https://www.bing.com/chat";
static _userAgent =
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36 Edg/112.0.1722.48";

Expand Down

1 comment on commit e8e06c1

@vercel
Copy link

@vercel vercel bot commented on e8e06c1 Dec 17, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

chatall – ./

chatall-sunner.vercel.app
chatall-llm.vercel.app
chatall-git-main-sunner.vercel.app

Please sign in to comment.