Increased the character limitation

pull/22679/head
Kushagra Singhal 10 months ago committed by GitHub
parent bd2014d13b
commit b02c71146c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -254,7 +254,7 @@ class MCPToolProvider(Base):
# name of the mcp provider # name of the mcp provider
name: Mapped[str] = mapped_column(db.String(40), nullable=False) name: Mapped[str] = mapped_column(db.String(40), nullable=False)
# server identifier of the mcp provider # server identifier of the mcp provider
server_identifier: Mapped[str] = mapped_column(db.String(24), nullable=False) server_identifier: Mapped[str] = mapped_column(db.String(64), nullable=False)
# encrypted url of the mcp provider # encrypted url of the mcp provider
server_url: Mapped[str] = mapped_column(db.Text, nullable=False) server_url: Mapped[str] = mapped_column(db.Text, nullable=False)
# hash of server_url for uniqueness check # hash of server_url for uniqueness check
@ -358,7 +358,7 @@ class ToolModelInvoke(Base):
# type # type
tool_type = db.Column(db.String(40), nullable=False) tool_type = db.Column(db.String(40), nullable=False)
# tool name # tool name
tool_name = db.Column(db.String(40), nullable=False) tool_name = db.Column(db.String(128), nullable=False)
# invoke parameters # invoke parameters
model_parameters = db.Column(db.Text, nullable=False) model_parameters = db.Column(db.Text, nullable=False)
# prompt messages # prompt messages

Loading…
Cancel
Save