langsmith
Advanced tools
Comparing version 0.3.9-rc.3 to 0.3.9-rc.4
@@ -340,3 +340,3 @@ /* eslint-disable import/no-extraneous-dependencies */ | ||
const testInput = inputs; | ||
const testOutput = referenceOutputs; | ||
const testOutput = referenceOutputs ?? {}; | ||
const testFeedback = []; | ||
@@ -428,3 +428,3 @@ const onFeedbackLogged = (feedback) => testFeedback.push(feedback); | ||
inputs, | ||
outputs: referenceOutputs, | ||
outputs: referenceOutputs ?? {}, | ||
metadata: {}, | ||
@@ -431,0 +431,0 @@ createdAt, |
@@ -13,3 +13,3 @@ import { CreateProjectParams } from "../../client.js"; | ||
inputs: I; | ||
referenceOutputs: O; | ||
referenceOutputs?: O; | ||
config?: LangSmithJestlikeWrapperConfig; | ||
@@ -16,0 +16,0 @@ }; |
{ | ||
"name": "langsmith", | ||
"version": "0.3.9-rc.3", | ||
"version": "0.3.9-rc.4", | ||
"description": "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform.", | ||
@@ -5,0 +5,0 @@ "packageManager": "yarn@1.22.19", |
Sorry, the diff of this file is not supported yet
1004641