mirror of https://github.com/langgenius/dify.git
Update api/models/tools.py
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
This commit is contained in:
parent
5e93a61865
commit
39de9e7248
|
|
@ -133,7 +133,8 @@ class EndUserAuthenticationProvider(TypeBase):
|
|||
name: Mapped[str] = mapped_column(
|
||||
String(256),
|
||||
nullable=False,
|
||||
server_default=sa.text("'API KEY 1'::character varying"),
|
||||
server_default=sa.text("'API KEY 1'"),
|
||||
default="API KEY 1",
|
||||
)
|
||||
# id of the tenant
|
||||
tenant_id: Mapped[str] = mapped_column(StringUUID, nullable=False)
|
||||
|
|
|
|||
Loading…
Reference in New Issue