Skip to content

Commit ca2ba9e

Browse files
fix(ark-runtime): fix the type of annotation
1 parent b84588d commit ca2ba9e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

volcenginesdkarkruntime/types/responses/response_output_text_annotation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#
1010
# This modified file is released under the same license.
1111

12-
from typing import Any, Dict, List, Optional
12+
from typing import Dict, List, Optional
1313

1414
from typing_extensions import Literal
1515

@@ -59,5 +59,5 @@ class ResponseOutputTextAnnotation(BaseModel):
5959
chunk_id: Optional[int] = None
6060
"""The chunk id of the doc_citation"""
6161

62-
chunk_attachment: List[Dict[str, Any]]
62+
chunk_attachment: List[Dict[str, object]]
6363
"""The chunk_attachment of the doc_citation"""

0 commit comments

Comments
 (0)