From 46bb246ecc6c82f40ddadd67d5ac115fb202d6d1 Mon Sep 17 00:00:00 2001 From: Yeuoly Date: Thu, 12 Dec 2024 18:27:43 +0800 Subject: [PATCH] refactor: rename agent to agent strategy --- api/core/agent/strategy/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/core/agent/strategy/plugin.py b/api/core/agent/strategy/plugin.py index 785879ad01..7cbd4503a7 100644 --- a/api/core/agent/strategy/plugin.py +++ b/api/core/agent/strategy/plugin.py @@ -1,7 +1,7 @@ from typing import Any, Generator, Optional, Sequence from core.agent.entities import AgentInvokeMessage -from core.agent.plugin_entities import AgentStrategyParameter, AgentStrategyEntity +from core.agent.plugin_entities import AgentStrategyEntity, AgentStrategyParameter from core.agent.strategy.base import BaseAgentStrategy from core.plugin.manager.agent import PluginAgentManager from core.tools.plugin_tool.tool import PluginTool