Skip to content

Commit db1902c

Browse files
committed
planner integration tests
1 parent 7687599 commit db1902c

File tree

2 files changed

+398
-2
lines changed

2 files changed

+398
-2
lines changed

src/backend/kernel_agents/planner_agent.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from semantic_kernel.functions import KernelFunction
1010
from semantic_kernel.functions.kernel_arguments import KernelArguments
1111

12-
from kernel_agents.agent_utils import load_tools_config, get_tools_from_config
12+
from kernel_agents.agent_base import BaseAgent
1313
from context.cosmos_memory_kernel import CosmosMemoryContext
1414
from models.messages_kernel import (
1515
AgentMessage,
@@ -74,7 +74,7 @@ def __init__(
7474
self._agent_tools_list = agent_tools_list or []
7575

7676
# Load configuration
77-
config = load_tools_config("planner", config_path)
77+
config = BaseAgent.load_tools_config("planner", config_path)
7878
self._system_message = config.get(
7979
"system_message",
8080
"You are a Planner agent responsible for creating and managing plans. You analyze tasks, break them down into steps, and assign them to the appropriate specialized agents."

0 commit comments

Comments
 (0)