in aidial_sdk/chat_completion/chunks.py [0:0]
def to_dict(self):
return {
"choices": [
{
"index": self.choice_index,
"finish_reason": None,
"delta": {
"custom_content": {
"attachments": [
self.attachment_dict(self.attachment_index)
]
}
},
}
],
"usage": None,
}