Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 21
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/prompt-foundry%2Fprompt-foundry-sdk-4f2f102207a7920168c5275abfbec4b156a1f8cef6bee009d4b1dd21a3878eb8.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/prompt-foundry%2Fprompt-foundry-sdk-21244ccc5783139d80c623dfbcbe5f67c48291edd544e919bccb0fbb64780d90.yml
6 changes: 3 additions & 3 deletions src/resources/evaluation-assertions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export interface EvaluationAssertion {
*/
jsonPath: string | null;

targetValue: string;
targetValue: string | null;

/**
* The name of the tool to match. Only required when type is `TOOL_CALLED` or
Expand Down Expand Up @@ -106,7 +106,7 @@ export interface EvaluationAssertionCreateParams {
*/
jsonPath: string | null;

targetValue: string;
targetValue: string | null;

/**
* The name of the tool to match. Only required when type is `TOOL_CALLED` or
Expand Down Expand Up @@ -135,7 +135,7 @@ export interface EvaluationAssertionUpdateParams {
*/
jsonPath: string | null;

targetValue: string;
targetValue: string | null;

/**
* The name of the tool to match. Only required when type is `TOOL_CALLED` or
Expand Down