We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This is done wrongly in math_words.json
As an example, I'll take the input What's seven times three to the power of eight?
What's seven times three to the power of eight?
Here chatterbot does this:
( 7 * ( 3 ^ 8 ) ) = 77 # Reasoning: 3 ^ 8 = 0011 ^ 1000 = 1011 = 11 7 * 11 = 77
Whereas it should do this:
( 7 * ( 3 ** 8 ) ) = 45927 # Reasoning: 3 ** 8 = 6561 7 * 6561 = 45927
The text was updated successfully, but these errors were encountered:
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Sorry, something went wrong.
No branches or pull requests
This is done wrongly in math_words.json
As an example, I'll take the input
What's seven times three to the power of eight?
Here chatterbot does this:
Whereas it should do this:
The text was updated successfully, but these errors were encountered: