Skip to content

Commit 24a566b

Browse files
updating message ID length to 50
1 parent a73311c commit 24a566b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/nat/front_ends/fastapi/response_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ async def generate_responses_api_streaming(
233233
_logger = logging.getLogger(__name__)
234234

235235
response_id = f"resp_{uuid_module.uuid4().hex}{uuid_module.uuid4().hex}"[:55]
236-
message_id = f"msg_{uuid_module.uuid4().hex}{uuid_module.uuid4().hex}"[:55]
236+
message_id = f"msg_{uuid_module.uuid4().hex}{uuid_module.uuid4().hex}"[:56]
237237
output_index = 0
238238
content_index = 0
239239
accumulated_text = ""

0 commit comments

Comments
 (0)