From b5a04e3bacf76ba63354e76ae947829f1a384e3e Mon Sep 17 00:00:00 2001 From: Bagatur <22008038+baskaryan@users.noreply.github.com> Date: Tue, 4 Feb 2025 09:45:33 -0800 Subject: [PATCH] fix(py): fix dataset created_at (#1485) stop sending timezone-less created_at time. backend handles setting this --- python/langsmith/client.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python/langsmith/client.py b/python/langsmith/client.py index b23f88a12..f2d84a70b 100644 --- a/python/langsmith/client.py +++ b/python/langsmith/client.py @@ -3210,7 +3210,6 @@ def create_dataset( dataset: Dict[str, Any] = { "name": dataset_name, "data_type": data_type.value, - "created_at": datetime.datetime.now().isoformat(), "transformations": transformations, "extra": {"metadata": metadata} if metadata else None, }