fix: Modify openAPI description (#3231)

This commit is contained in:
shaohuzhang1 2025-06-10 21:03:50 +08:00 committed by GitHub
parent 87ab2178bf
commit e0bfe0cd73
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -27,9 +27,9 @@ class ApplicationChatRecord(APIView):
@extend_schema( @extend_schema(
methods=['GET'], methods=['GET'],
description=_("Get the conversation list"), description=_("Get the conversation record list"),
summary=_("Get the conversation list"), summary=_("Get the conversation record list"),
operation_id=_("Get the conversation list"), # type: ignore operation_id=_("Get the conversation record list"), # type: ignore
request=ApplicationChatRecordQueryAPI.get_request(), request=ApplicationChatRecordQueryAPI.get_request(),
parameters=ApplicationChatRecordQueryAPI.get_parameters(), parameters=ApplicationChatRecordQueryAPI.get_parameters(),
responses=ApplicationChatRecordQueryAPI.get_response(), responses=ApplicationChatRecordQueryAPI.get_response(),