refactor: rename agent to agent strategy

This commit is contained in:
Yeuoly 2024-12-12 18:27:43 +08:00
parent 3c628d0c26
commit 46bb246ecc
No known key found for this signature in database
GPG Key ID: A66E7E320FB19F61

View File

@ -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