We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da96ccf commit cbdf4b7Copy full SHA for cbdf4b7
apps/application/serializers/chat_serializers.py
@@ -189,7 +189,8 @@ def to_row(row: Dict):
189
f"{improve_paragraph_list[index].get('title')}\n{improve_paragraph_list[index].get('content')}"
190
for index in range(len(improve_paragraph_list))]),
191
row.get('message_tokens') + row.get('answer_tokens'), row.get('run_time'),
192
- str(row.get('create_time'))]
+ str(row.get('create_time').strftime('%Y-%m-%d %H:%M:%S')
193
+ )]
194
195
def export(self, data, with_valid=True):
196
if with_valid:
0 commit comments