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:
Charles Yao
2025-11-20 21:18:14 -06:00
committed by GitHub
parent 5e93a61865
commit 39de9e7248

View File

@ -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)