feat: mypy for all type check (#10921)

This commit is contained in:
yihong
2024-12-24 18:38:51 +08:00
committed by GitHub
parent c91e8b1737
commit 56e15d09a9
584 changed files with 3975 additions and 2826 deletions

View File

@@ -14,7 +14,7 @@ from .model import Account, App, Tenant
from .types import StringUUID
class BuiltinToolProvider(db.Model):
class BuiltinToolProvider(db.Model): # type: ignore[name-defined]
"""
This table stores the tool provider information for built-in tools for each tenant.
"""
@@ -41,10 +41,10 @@ class BuiltinToolProvider(db.Model):
@property
def credentials(self) -> dict:
return json.loads(self.encrypted_credentials)
return dict(json.loads(self.encrypted_credentials))
class PublishedAppTool(db.Model):
class PublishedAppTool(db.Model): # type: ignore[name-defined]
"""
The table stores the apps published as a tool for each person.
"""
@@ -86,7 +86,7 @@ class PublishedAppTool(db.Model):
return db.session.query(App).filter(App.id == self.app_id).first()
class ApiToolProvider(db.Model):
class ApiToolProvider(db.Model): # type: ignore[name-defined]
"""
The table stores the api providers.
"""
@@ -133,7 +133,7 @@ class ApiToolProvider(db.Model):
@property
def credentials(self) -> dict:
return json.loads(self.credentials_str)
return dict(json.loads(self.credentials_str))
@property
def user(self) -> Account | None:
@@ -144,7 +144,7 @@ class ApiToolProvider(db.Model):
return db.session.query(Tenant).filter(Tenant.id == self.tenant_id).first()
class ToolLabelBinding(db.Model):
class ToolLabelBinding(db.Model): # type: ignore[name-defined]
"""
The table stores the labels for tools.
"""
@@ -164,7 +164,7 @@ class ToolLabelBinding(db.Model):
label_name = db.Column(db.String(40), nullable=False)
class WorkflowToolProvider(db.Model):
class WorkflowToolProvider(db.Model): # type: ignore[name-defined]
"""
The table stores the workflow providers.
"""
@@ -218,7 +218,7 @@ class WorkflowToolProvider(db.Model):
return db.session.query(App).filter(App.id == self.app_id).first()
class ToolModelInvoke(db.Model):
class ToolModelInvoke(db.Model): # type: ignore[name-defined]
"""
store the invoke logs from tool invoke
"""
@@ -255,7 +255,7 @@ class ToolModelInvoke(db.Model):
updated_at = db.Column(db.DateTime, nullable=False, server_default=func.current_timestamp())
class ToolConversationVariables(db.Model):
class ToolConversationVariables(db.Model): # type: ignore[name-defined]
"""
store the conversation variables from tool invoke
"""
@@ -283,10 +283,10 @@ class ToolConversationVariables(db.Model):
@property
def variables(self) -> dict:
return json.loads(self.variables_str)
return dict(json.loads(self.variables_str))
class ToolFile(db.Model):
class ToolFile(db.Model): # type: ignore[name-defined]
__tablename__ = "tool_files"
__table_args__ = (
db.PrimaryKeyConstraint("id", name="tool_file_pkey"),