-
Notifications
You must be signed in to change notification settings - Fork 43
Java: Remove SK planners from codebase #326
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
base: main
Are you sure you want to change the base?
Conversation
Co-authored-by: karianna <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR removes all Semantic Kernel Java planner components and related references, aligning with the .NET version removal.
- Removed planner extension dependencies from
pom.xml
- Deleted planner test resource files and sample prompt templates
- Updated Javadoc and README files to drop planner mentions
Reviewed Changes
Copilot reviewed 9 out of 9 changed files in this pull request and generated no comments.
Show a summary per file
File | Description |
---|---|
semantickernel-api/src/test/resources/com/microsoft/semantickernel/planner/stepwiseplanner/response*.txt | Deleted obsolete planner test response fixtures |
semantickernel-api/src/main/java/com/microsoft/semantickernel/semanticfunctions/InputParameter.java | Removed “planner” from parameter description in Javadoc |
samples/semantickernel-concepts/semantickernel-syntax-examples/.../require_context_variable_planner_prompt.txt | Deleted planner sample prompt file |
samples/semantickernel-concepts/README.md | Removed link to Handlebars planner blog post |
pom.xml | Removed semantickernel-sequentialplanner-extension and semantickernel-actionplanner-extension dependencies |
README.md | Cleaned up planner references and updated infographic caption |
@johnoliver Might need to elevate me to a full reviewer |
@johnoliver - looks like I'm still not a qualifying reviewer |
Following the same pattern as the .NET version where SK planners were first stopped from being published and later removed from the codebase, this PR removes all planner-related references and artifacts from the Java Semantic Kernel codebase.
Changes Made
Removed Dependencies:
semantickernel-sequentialplanner-extension
andsemantickernel-actionplanner-extension
dependency references from main POM.xmlRemoved Files:
/semantickernel-api/src/test/resources/com/microsoft/semantickernel/planner/
Updated Documentation:
README.md
to remove planner references while maintaining the essence of SK's orchestration capabilitiesREADME.md
to remove link to planner documentation blog postInputParameter.java
comment to remove planner referenceVerification
./mvnw clean package -Pbug-check
The removal is clean and comprehensive, ensuring no orphaned references remain while preserving all other functionality.
Fixes #323.
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.