Skip to content

Commit 4547351

Browse files
committed
fix: Add png_url to chart response
1 parent f8fdad5 commit 4547351

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

asknews_sdk/dto/chat.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -375,3 +375,6 @@ class ChartResponse(BaseSchema):
375375
iterations_used: Optional[int] = None
376376
last_reasoning: Optional[str] = None
377377
last_parameters: Optional[ChartParameters] = None
378+
png_data: Optional[str] = Field(None, description="Base64-encoded PNG image data of the chart")
379+
png_url: Optional[str] = Field(None, description="URL to the PNG image of the chart")
380+
chart_url: Optional[str] = Field(None, description="URL to the chart JSON object in S3")

0 commit comments

Comments
 (0)