diff --git a/pilot/openapi/api_v1/api_v1.py b/pilot/openapi/api_v1/api_v1.py index 8db64aa92..c9a4e0b87 100644 --- a/pilot/openapi/api_v1/api_v1.py +++ b/pilot/openapi/api_v1/api_v1.py @@ -138,9 +138,7 @@ async def dialogue_scenes(): @router.post("/v1/chat/dialogue/new", response_model=Result[ConversationVo]) -async def dialogue_new( - chat_mode: str = ChatScene.ChatNormal.value(), user_id: str = None -): +async def dialogue_new(chat_mode: str = ChatScene.ChatNormal.value(), user_id: str = None): conv_vo = __new_conversation(chat_mode, user_id) return Result.succ(conv_vo)