Skip to content

Commit 90f1258

Browse files
authored
python: fix issue of No module named 'semantic_kernel.planning' (microsoft#823)
### Motivation and Context <!-- Thank you for your contribution to the semantic-kernel repo! Please help reviewers and future users, providing the following information: 1. Why is this change required? 2. What problem does it solve? 3. What scenario does it contribute to? 4. If it fixes an open issue, please link to the issue here. --> python: fix the issue of `No module named 'semantic_kernel.planning'`. ### Description <!-- Describe your changes, the overall approach, the underlying design. These notes will help understanding how your code works. Thanks! --> Add __init__ file for the planning package.
1 parent f5b3958 commit 90f1258

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from semantic_kernel.planning.basic_planner import BasicPlanner
2+
from semantic_kernel.planning.plan import Plan
3+
4+
__all__ = [
5+
"BasicPlanner",
6+
"Plan",
7+
]

0 commit comments

Comments
 (0)