langsmith 0.0.42 → 0.0.43

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/client.cjs CHANGED
@@ -616,7 +616,7 @@ class Client {
616
616
  return result;
617
617
  }
618
618
  async readDatasetOpenaiFinetuning({ datasetId, datasetName, }) {
619
- let path = "/datasets";
619
+ const path = "/datasets";
620
620
  if (datasetId !== undefined) {
621
621
  // do nothing
622
622
  }
package/dist/client.js CHANGED
@@ -590,7 +590,7 @@ export class Client {
590
590
  return result;
591
591
  }
592
592
  async readDatasetOpenaiFinetuning({ datasetId, datasetName, }) {
593
- let path = "/datasets";
593
+ const path = "/datasets";
594
594
  if (datasetId !== undefined) {
595
595
  // do nothing
596
596
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "langsmith",
3
- "version": "0.0.42",
3
+ "version": "0.0.43",
4
4
  "description": "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform.",
5
5
  "files": [
6
6
  "dist/",