Skip to content

Commit d3077b6

Browse files
author
liuhuiqi.7
committed
feat(ark e2e): fix indent
Change-Id: I9c55894fce6b0bae44df645b7696cc357fff9e49
1 parent 41b020f commit d3077b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

volcenginesdkarkruntime/resources/chat/completions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def _decrypt_chunk(self, key: bytes, nonce: bytes, resp: Stream[ChatCompletionCh
7171
if chunk.choices is not None:
7272
for index, choice in enumerate(chunk.choices):
7373
if choice.delta is not None and choice.delta.content is not None:
74-
choice.delta.content = aes_gcm_decrypt_base64_string(key, nonce, choice.delta.content)
74+
choice.delta.content = aes_gcm_decrypt_base64_string(key, nonce, choice.delta.content)
7575
chunk.choices[index] = choice
7676
yield chunk
7777

0 commit comments

Comments
 (0)