chore: format

This commit is contained in:
Timothy Jaeryang Baek
2026-05-11 02:29:13 +09:00
parent 39777e35d8
commit c951b4f262
69 changed files with 143 additions and 29 deletions

View File

@@ -471,9 +471,7 @@ class ChatTable:
if msg.get('parentId') and msg['parentId'] not in messages_map
}
async def backfill_messages_by_chat_id(
self, chat_id: str, user_id: str, messages: dict[str, dict]
) -> None:
async def backfill_messages_by_chat_id(self, chat_id: str, user_id: str, messages: dict[str, dict]) -> None:
"""Write messages to the ``chat_message`` table so future lookups
use the fast path. Errors are logged but never raised.
"""
@@ -509,9 +507,9 @@ class ChatTable:
# Graph has gaps — enrich from the legacy embedded history.
log.info(
'Chat %s: %d unresolved parent reference(s) in chat_message — '
'enriching from legacy history',
id, len(unresolved_ids),
'Chat %s: %d unresolved parent reference(s) in chat_message — enriching from legacy history',
id,
len(unresolved_ids),
)
chat = await self.get_chat_by_id(id)
if chat:

View File

@@ -425,15 +425,12 @@ async def get_model_by_id(id: str, user=Depends(get_verified_user), db: AsyncSes
)
)
if (
write_access
or await AccessGrants.has_access(
user_id=user.id,
resource_type='model',
resource_id=model.id,
permission='read',
db=db,
)
if write_access or await AccessGrants.has_access(
user_id=user.id,
resource_type='model',
resource_id=model.id,
permission='read',
db=db,
):
model_dict = model.model_dump()
# Strip params (system prompt and other admin-curated config)

View File

@@ -484,9 +484,7 @@ async def update_tools_by_id(
if form_data.content != tools.content:
if user.role != 'admin' and not (
await has_permission(user.id, 'workspace.tools', request.app.state.config.USER_PERMISSIONS, db=db)
or await has_permission(
user.id, 'workspace.tools_import', request.app.state.config.USER_PERMISSIONS, db=db
)
or await has_permission(user.id, 'workspace.tools_import', request.app.state.config.USER_PERMISSIONS, db=db)
):
raise HTTPException(
status_code=status.HTTP_401_UNAUTHORIZED,