feat: add fc agent mode support

This commit is contained in:
Novice Lee
2025-01-08 07:41:17 +08:00
parent fb7b2c8ff3
commit b56d2b739b
8 changed files with 107 additions and 83 deletions

View File

@ -14,12 +14,10 @@ class PluginAgentStrategy(BaseAgentStrategy):
"""
tenant_id: str
plugin_unique_identifier: str
declaration: AgentStrategyEntity
def __init__(self, tenant_id: str, plugin_unique_identifier: str, declaration: AgentStrategyEntity):
def __init__(self, tenant_id: str, declaration: AgentStrategyEntity):
self.tenant_id = tenant_id
self.plugin_unique_identifier = plugin_unique_identifier
self.declaration = declaration
def get_parameters(self) -> Sequence[AgentStrategyParameter]: