merge feat/plugins

This commit is contained in:
zxhlyh
2024-12-27 14:21:32 +08:00
324 changed files with 15188 additions and 8023 deletions

View File

@ -256,8 +256,8 @@ class ToolConversationVariables(Base):
updated_at = db.Column(db.DateTime, nullable=False, server_default=func.current_timestamp())
@property
def variables(self) -> dict:
return dict(json.loads(self.variables_str))
def variables(self) -> Any:
return json.loads(self.variables_str)
class ToolFile(Base):