Skip to content

Commit c48522e

Browse files
updated deprecated message
1 parent 1a10f8b commit c48522e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

python/semantic_kernel/planners/function_calling_stepwise_planner/function_calling_stepwise_planner.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
logger: logging.Logger = logging.getLogger(__name__)
5858

5959

60-
@deprecated("Will be removed in a future version, use function calling instead.")
60+
@deprecated("This is no longer maintained and will be removed after June 1, 2025. Use function calling instead.")
6161
class FunctionCallingStepwisePlanner(KernelBaseModel):
6262
"""A Function Calling Stepwise Planner."""
6363

python/semantic_kernel/planners/plan.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
logger: logging.Logger = logging.getLogger(__name__)
2828

2929

30-
@deprecated("Will be removed in a future version, use function calling instead.")
30+
@deprecated("This is no longer maintained and will be removed after June 1, 2025. Use function calling instead.")
3131
class Plan:
3232
"""A plan for the kernel."""
3333

python/semantic_kernel/planners/sequential_planner/sequential_planner.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def read_file(file_path: str) -> str:
3737
return file.read()
3838

3939

40-
@deprecated("Will be removed in a future version, use function calling instead.")
40+
@deprecated("This is no longer maintained and will be removed after June 1, 2025. Use function calling instead.")
4141
class SequentialPlanner:
4242
"""Sequential planner class."""
4343

0 commit comments

Comments
 (0)