-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error When Using CLI #3
Comments
Seems not related to the daily limit. My limit is already met too but I didn't crash. Could you please provide more detailed information such as the stack trace? Since the CLI library // src/BingChat.Cli/Commands/ConversationCommand.cs
public override async Task<int> ExecuteAsync(CommandContext context, Settings settings)
{
try
{
// The execution code...
}
catch (Exception e)
{
Console.WriteLine(e.StackTrace);
return 1;
}
} Then |
Here is the stack trace:
|
I eventually found the problem. I'm in China and Bing Chat doesn't serve China. If I had used the original IP address directly, I would have had the same problem.
But when I used a US proxy, the problem resolved. If you make sure the correct cookie is set and you still keep seeing this, maybe Bing Chat doesn't serve your region. You can use a proxy and try again. |
|
So basically I get a similar error but only with short inputs. If I input
but if I have a longer input it works just fine. |
Current behavior
After sending a message, the following error is thrown:
Error: Object reference not set to an instance of an object.
Then the program crashes.
Expected Behavior:
Bing AI responds to user message.
Reproduction steps:
dotnet run --project src/BingChat.Cli/BingChat.Cli.csproj
Log
Closing Notes:
Very interesting API though. Curious to see if it can get through the censoring.
The text was updated successfully, but these errors were encountered: