mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-09-02 09:37:03 +00:00
feat(model): Support Qwen1.5-32B (#1385)
This commit is contained in:
@@ -6,6 +6,7 @@ def is_datetime(value):
|
||||
|
||||
|
||||
def convert_datetime_in_row(row):
|
||||
return [value.strftime('%Y-%m-%d %H:%M:%S') if is_datetime(value)
|
||||
else value for value in row]
|
||||
|
||||
return [
|
||||
value.strftime("%Y-%m-%d %H:%M:%S") if is_datetime(value) else value
|
||||
for value in row
|
||||
]
|
||||
|
Reference in New Issue
Block a user