Skip to content

Commit

Permalink
fix(py): fix dataset created_at (#1485)
Browse files Browse the repository at this point in the history
stop sending timezone-less created_at time. backend handles setting this
  • Loading branch information
baskaryan authored Feb 4, 2025
1 parent 392ce0b commit b5a04e3
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion python/langsmith/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
Expand Down

0 comments on commit b5a04e3

Please sign in to comment.