Skip to content
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

Math Planner in the Semantic Kernel documentation Computes the value incorrectly when a sequential planner is used #57

Open
sramaswami11 opened this issue Oct 27, 2023 · 0 comments

Comments

@sramaswami11
Copy link

Please refer to the following semantic kernel documentation page url :
https://learn.microsoft.com/en-us/semantic-kernel/ai-orchestration/planners/?tabs=Csharp
When I used the code given in this page (which matches with the github repository) for MathPlugin and the code under the program.cs to instantiate a SequentialPlanner and run the plan, the result was incorrect.
The ask was "If my investment of 2130.23 dollars increased by 23%, how much would I have after I spent $5 on a latte?";
and the result was 46.1 (but the right answer should be 2615.1829

However when I changed the code to use a StepwisePlanner instead (keeping the MathPlugin unchanged) this seems to yield the right result (2615.1829)

Here is my code change:
var planner = new StepwisePlanner(kernel);
var ask = "If my investment of 2130.23 dollars increased by 23%, how much would I have after I spent $5 on a latte?";
var plan = planner.CreatePlan(ask);

Not sure why the SequentialPlanner failed to compute the result correctly.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant