vellum-ai 0.2.2 → 0.3.2
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/Client.d.ts +2 -13
- package/Client.js +11 -22
- package/api/client/requests/GenerateBodyRequest.d.ts +1 -8
- package/api/client/requests/SearchRequestBodyRequest.d.ts +0 -4
- package/api/client/requests/SubmitCompletionActualsRequest.d.ts +1 -1
- package/api/resources/deployments/client/Client.js +3 -3
- package/api/resources/deployments/client/requests/DeploymentsListRequest.d.ts +0 -3
- package/api/resources/documentIndexes/client/Client.d.ts +17 -3
- package/api/resources/documentIndexes/client/Client.js +19 -5
- package/api/resources/documentIndexes/client/requests/DocumentIndexCreateRequest.d.ts +17 -3
- package/api/resources/documents/client/Client.d.ts +8 -0
- package/api/resources/documents/client/Client.js +12 -4
- package/api/resources/modelVersions/client/Client.js +1 -1
- package/api/resources/registeredPrompts/client/Client.d.ts +2 -12
- package/api/resources/registeredPrompts/client/Client.js +3 -13
- package/api/resources/registeredPrompts/client/requests/RegisterPromptRequestRequest.d.ts +2 -12
- package/api/resources/sandboxes/client/Client.d.ts +8 -8
- package/api/resources/sandboxes/client/Client.js +10 -10
- package/api/resources/sandboxes/client/requests/UpsertSandboxScenarioRequestRequest.d.ts +8 -9
- package/api/resources/testSuites/client/Client.js +2 -2
- package/api/resources/workflowDeployments/client/Client.js +1 -1
- package/api/types/ApiNodeResult.d.ts +3 -0
- package/api/types/CodeExecutionNodeResult.d.ts +3 -0
- package/api/types/ConditionalNodeResult.d.ts +3 -0
- package/api/types/FulfilledWorkflowNodeResultEvent.d.ts +15 -0
- package/api/types/InitiatedWorkflowNodeResultEvent.d.ts +15 -0
- package/api/types/{ChatHistoryVariableValue.d.ts → NodeOutputCompiledChatHistoryValue.d.ts} +2 -1
- package/api/types/NodeOutputCompiledErrorValue.d.ts +8 -0
- package/api/types/NodeOutputCompiledJsonValue.d.ts +7 -0
- package/api/types/{NumberVariableValue.d.ts → NodeOutputCompiledNumberValue.d.ts} +2 -1
- package/api/types/{SearchResultsVariableValue.d.ts → NodeOutputCompiledSearchResultsValue.d.ts} +2 -1
- package/api/types/NodeOutputCompiledStringValue.d.ts +7 -0
- package/api/types/NodeOutputCompiledValue.d.ts +25 -0
- package/api/types/PromptNodeResult.d.ts +3 -0
- package/api/types/RejectedWorkflowNodeResultEvent.d.ts +15 -0
- package/api/types/SandboxScenario.d.ts +0 -1
- package/api/types/SearchNodeResult.d.ts +3 -0
- package/api/types/StreamingWorkflowNodeResultEvent.d.ts +16 -0
- package/api/types/TemplatingNodeResult.d.ts +3 -0
- package/api/types/TerminalNodeResult.d.ts +3 -0
- package/api/types/WorkflowExecutionNodeResultEvent.d.ts +3 -0
- package/api/types/WorkflowExecutionWorkflowResultEvent.d.ts +3 -0
- package/api/types/WorkflowNodeResultEvent.d.ts +14 -9
- package/api/types/WorkflowOutput.d.ts +1 -4
- package/api/types/WorkflowResultEventOutputDataChatHistory.d.ts +3 -0
- package/api/types/WorkflowResultEventOutputDataError.d.ts +3 -0
- package/api/types/WorkflowResultEventOutputDataJson.d.ts +3 -0
- package/api/types/WorkflowResultEventOutputDataNumber.d.ts +3 -0
- package/api/types/WorkflowResultEventOutputDataSearchResults.d.ts +3 -0
- package/api/types/WorkflowResultEventOutputDataString.d.ts +3 -0
- package/api/types/index.d.ts +11 -11
- package/api/types/index.js +11 -11
- package/dist/Client.d.ts +2 -13
- package/dist/Client.js +11 -22
- package/dist/api/client/requests/GenerateBodyRequest.d.ts +1 -8
- package/dist/api/client/requests/SearchRequestBodyRequest.d.ts +0 -4
- package/dist/api/client/requests/SubmitCompletionActualsRequest.d.ts +1 -1
- package/dist/api/resources/deployments/client/Client.js +3 -3
- package/dist/api/resources/deployments/client/requests/DeploymentsListRequest.d.ts +0 -3
- package/dist/api/resources/documentIndexes/client/Client.d.ts +17 -3
- package/dist/api/resources/documentIndexes/client/Client.js +19 -5
- package/dist/api/resources/documentIndexes/client/requests/DocumentIndexCreateRequest.d.ts +17 -3
- package/dist/api/resources/documents/client/Client.d.ts +8 -0
- package/dist/api/resources/documents/client/Client.js +12 -4
- package/dist/api/resources/modelVersions/client/Client.js +1 -1
- package/dist/api/resources/registeredPrompts/client/Client.d.ts +2 -12
- package/dist/api/resources/registeredPrompts/client/Client.js +3 -13
- package/dist/api/resources/registeredPrompts/client/requests/RegisterPromptRequestRequest.d.ts +2 -12
- package/dist/api/resources/sandboxes/client/Client.d.ts +8 -8
- package/dist/api/resources/sandboxes/client/Client.js +10 -10
- package/dist/api/resources/sandboxes/client/requests/UpsertSandboxScenarioRequestRequest.d.ts +8 -9
- package/dist/api/resources/testSuites/client/Client.js +2 -2
- package/dist/api/resources/workflowDeployments/client/Client.js +1 -1
- package/dist/api/types/ApiNodeResult.d.ts +3 -0
- package/dist/api/types/CodeExecutionNodeResult.d.ts +3 -0
- package/dist/api/types/ConditionalNodeResult.d.ts +3 -0
- package/dist/api/types/FulfilledWorkflowNodeResultEvent.d.ts +15 -0
- package/dist/api/types/InitiatedWorkflowNodeResultEvent.d.ts +15 -0
- package/dist/api/types/{ChatHistoryVariableValue.d.ts → NodeOutputCompiledChatHistoryValue.d.ts} +2 -1
- package/dist/api/types/NodeOutputCompiledErrorValue.d.ts +8 -0
- package/dist/api/types/NodeOutputCompiledJsonValue.d.ts +7 -0
- package/dist/api/types/{NumberVariableValue.d.ts → NodeOutputCompiledNumberValue.d.ts} +2 -1
- package/dist/api/types/{SearchResultsVariableValue.d.ts → NodeOutputCompiledSearchResultsValue.d.ts} +2 -1
- package/dist/api/types/NodeOutputCompiledStringValue.d.ts +7 -0
- package/dist/api/types/NodeOutputCompiledValue.d.ts +25 -0
- package/dist/api/types/PromptNodeResult.d.ts +3 -0
- package/dist/api/types/RejectedWorkflowNodeResultEvent.d.ts +15 -0
- package/dist/api/types/SandboxScenario.d.ts +0 -1
- package/dist/api/types/SearchNodeResult.d.ts +3 -0
- package/dist/api/types/StreamingWorkflowNodeResultEvent.d.ts +16 -0
- package/dist/api/types/TemplatingNodeResult.d.ts +3 -0
- package/dist/api/types/TerminalNodeResult.d.ts +3 -0
- package/dist/api/types/WorkflowExecutionNodeResultEvent.d.ts +3 -0
- package/dist/api/types/WorkflowExecutionWorkflowResultEvent.d.ts +3 -0
- package/dist/api/types/WorkflowNodeResultEvent.d.ts +14 -9
- package/dist/api/types/WorkflowOutput.d.ts +1 -4
- package/dist/api/types/WorkflowResultEventOutputDataChatHistory.d.ts +3 -0
- package/dist/api/types/WorkflowResultEventOutputDataError.d.ts +3 -0
- package/dist/api/types/WorkflowResultEventOutputDataJson.d.ts +3 -0
- package/dist/api/types/WorkflowResultEventOutputDataNumber.d.ts +3 -0
- package/dist/api/types/WorkflowResultEventOutputDataSearchResults.d.ts +3 -0
- package/dist/api/types/WorkflowResultEventOutputDataString.d.ts +3 -0
- package/dist/api/types/index.d.ts +11 -11
- package/dist/api/types/index.js +11 -11
- package/dist/serialization/resources/sandboxes/client/requests/UpsertSandboxScenarioRequestRequest.d.ts +0 -1
- package/dist/serialization/resources/sandboxes/client/requests/UpsertSandboxScenarioRequestRequest.js +0 -3
- package/dist/serialization/types/FulfilledWorkflowNodeResultEvent.d.ts +17 -0
- package/dist/serialization/types/FulfilledWorkflowNodeResultEvent.js +49 -0
- package/dist/serialization/types/InitiatedWorkflowNodeResultEvent.d.ts +17 -0
- package/dist/serialization/types/InitiatedWorkflowNodeResultEvent.js +49 -0
- package/dist/serialization/types/NodeOutputCompiledChatHistoryValue.d.ts +13 -0
- package/{serialization/types/ChatHistoryVariableValue.js → dist/serialization/types/NodeOutputCompiledChatHistoryValue.js} +3 -2
- package/dist/serialization/types/NodeOutputCompiledErrorValue.d.ts +13 -0
- package/dist/serialization/types/{SandboxMetricInputParams.js → NodeOutputCompiledErrorValue.js} +4 -3
- package/dist/serialization/types/NodeOutputCompiledJsonValue.d.ts +13 -0
- package/{serialization/types/EvaluationParams.js → dist/serialization/types/NodeOutputCompiledJsonValue.js} +4 -3
- package/dist/serialization/types/NodeOutputCompiledNumberValue.d.ts +13 -0
- package/{serialization/types/NumberVariableValue.js → dist/serialization/types/NodeOutputCompiledNumberValue.js} +3 -2
- package/dist/serialization/types/NodeOutputCompiledSearchResultsValue.d.ts +13 -0
- package/dist/serialization/types/{SearchResultsVariableValue.js → NodeOutputCompiledSearchResultsValue.js} +3 -2
- package/dist/serialization/types/NodeOutputCompiledStringValue.d.ts +13 -0
- package/dist/serialization/types/{EvaluationParamsRequest.js → NodeOutputCompiledStringValue.js} +4 -3
- package/dist/serialization/types/NodeOutputCompiledValue.d.ts +28 -0
- package/dist/serialization/types/{VariableValue.js → NodeOutputCompiledValue.js} +8 -10
- package/dist/serialization/types/RejectedWorkflowNodeResultEvent.d.ts +17 -0
- package/dist/serialization/types/{WorkflowOutputArray.js → RejectedWorkflowNodeResultEvent.js} +7 -4
- package/dist/serialization/types/SandboxScenario.d.ts +0 -1
- package/dist/serialization/types/SandboxScenario.js +0 -1
- package/dist/serialization/types/StreamingWorkflowNodeResultEvent.d.ts +18 -0
- package/dist/serialization/types/StreamingWorkflowNodeResultEvent.js +48 -0
- package/dist/serialization/types/WorkflowExecutionNodeResultEvent.js +1 -1
- package/dist/serialization/types/WorkflowNodeResultEvent.d.ts +13 -10
- package/dist/serialization/types/WorkflowNodeResultEvent.js +10 -11
- package/dist/serialization/types/WorkflowOutput.d.ts +1 -4
- package/dist/serialization/types/WorkflowOutput.js +0 -1
- package/dist/serialization/types/index.d.ts +11 -11
- package/dist/serialization/types/index.js +11 -11
- package/package.json +1 -1
- package/serialization/resources/sandboxes/client/requests/UpsertSandboxScenarioRequestRequest.d.ts +0 -1
- package/serialization/resources/sandboxes/client/requests/UpsertSandboxScenarioRequestRequest.js +0 -3
- package/serialization/types/FulfilledWorkflowNodeResultEvent.d.ts +17 -0
- package/serialization/types/FulfilledWorkflowNodeResultEvent.js +49 -0
- package/serialization/types/InitiatedWorkflowNodeResultEvent.d.ts +17 -0
- package/serialization/types/InitiatedWorkflowNodeResultEvent.js +49 -0
- package/serialization/types/NodeOutputCompiledChatHistoryValue.d.ts +13 -0
- package/{dist/serialization/types/ChatHistoryVariableValue.js → serialization/types/NodeOutputCompiledChatHistoryValue.js} +3 -2
- package/serialization/types/NodeOutputCompiledErrorValue.d.ts +13 -0
- package/{dist/serialization/types/SandboxMetricInputParamsRequest.js → serialization/types/NodeOutputCompiledErrorValue.js} +4 -3
- package/serialization/types/NodeOutputCompiledJsonValue.d.ts +13 -0
- package/serialization/types/NodeOutputCompiledJsonValue.js +34 -0
- package/serialization/types/NodeOutputCompiledNumberValue.d.ts +13 -0
- package/{dist/serialization/types/NumberVariableValue.js → serialization/types/NodeOutputCompiledNumberValue.js} +3 -2
- package/serialization/types/NodeOutputCompiledSearchResultsValue.d.ts +13 -0
- package/serialization/types/{SearchResultsVariableValue.js → NodeOutputCompiledSearchResultsValue.js} +3 -2
- package/serialization/types/NodeOutputCompiledStringValue.d.ts +13 -0
- package/{dist/serialization/types/EvaluationParams.js → serialization/types/NodeOutputCompiledStringValue.js} +4 -3
- package/serialization/types/NodeOutputCompiledValue.d.ts +28 -0
- package/serialization/types/{VariableValue.js → NodeOutputCompiledValue.js} +8 -10
- package/serialization/types/RejectedWorkflowNodeResultEvent.d.ts +17 -0
- package/serialization/types/{WorkflowOutputArray.js → RejectedWorkflowNodeResultEvent.js} +7 -4
- package/serialization/types/SandboxScenario.d.ts +0 -1
- package/serialization/types/SandboxScenario.js +0 -1
- package/serialization/types/StreamingWorkflowNodeResultEvent.d.ts +18 -0
- package/serialization/types/StreamingWorkflowNodeResultEvent.js +48 -0
- package/serialization/types/WorkflowExecutionNodeResultEvent.js +1 -1
- package/serialization/types/WorkflowNodeResultEvent.d.ts +13 -10
- package/serialization/types/WorkflowNodeResultEvent.js +10 -11
- package/serialization/types/WorkflowOutput.d.ts +1 -4
- package/serialization/types/WorkflowOutput.js +0 -1
- package/serialization/types/index.d.ts +11 -11
- package/serialization/types/index.js +11 -11
- package/api/types/ArrayEnum.d.ts +0 -4
- package/api/types/ArrayVariableValue.d.ts +0 -7
- package/api/types/EvaluationParams.d.ts +0 -7
- package/api/types/EvaluationParamsRequest.d.ts +0 -7
- package/api/types/SandboxMetricInputParams.d.ts +0 -7
- package/api/types/SandboxMetricInputParamsRequest.d.ts +0 -7
- package/api/types/VariableValue.d.ts +0 -31
- package/api/types/WorkflowOutputArray.d.ts +0 -13
- package/dist/api/types/ArrayEnum.d.ts +0 -4
- package/dist/api/types/ArrayVariableValue.d.ts +0 -7
- package/dist/api/types/EvaluationParams.d.ts +0 -7
- package/dist/api/types/EvaluationParamsRequest.d.ts +0 -7
- package/dist/api/types/SandboxMetricInputParams.d.ts +0 -7
- package/dist/api/types/SandboxMetricInputParamsRequest.d.ts +0 -7
- package/dist/api/types/VariableValue.d.ts +0 -31
- package/dist/api/types/WorkflowOutputArray.d.ts +0 -13
- package/dist/serialization/types/ArrayEnum.d.ts +0 -10
- package/dist/serialization/types/ArrayEnum.js +0 -31
- package/dist/serialization/types/ArrayVariableValue.d.ts +0 -12
- package/dist/serialization/types/ArrayVariableValue.js +0 -42
- package/dist/serialization/types/ChatHistoryVariableValue.d.ts +0 -12
- package/dist/serialization/types/EvaluationParams.d.ts +0 -12
- package/dist/serialization/types/EvaluationParamsRequest.d.ts +0 -12
- package/dist/serialization/types/NumberVariableValue.d.ts +0 -12
- package/dist/serialization/types/SandboxMetricInputParams.d.ts +0 -12
- package/dist/serialization/types/SandboxMetricInputParamsRequest.d.ts +0 -12
- package/dist/serialization/types/SearchResultsVariableValue.d.ts +0 -12
- package/dist/serialization/types/VariableValue.d.ts +0 -34
- package/dist/serialization/types/WorkflowOutputArray.d.ts +0 -14
- package/serialization/types/ArrayEnum.d.ts +0 -10
- package/serialization/types/ArrayEnum.js +0 -31
- package/serialization/types/ArrayVariableValue.d.ts +0 -12
- package/serialization/types/ArrayVariableValue.js +0 -42
- package/serialization/types/ChatHistoryVariableValue.d.ts +0 -12
- package/serialization/types/EvaluationParams.d.ts +0 -12
- package/serialization/types/EvaluationParamsRequest.d.ts +0 -12
- package/serialization/types/EvaluationParamsRequest.js +0 -33
- package/serialization/types/NumberVariableValue.d.ts +0 -12
- package/serialization/types/SandboxMetricInputParams.d.ts +0 -12
- package/serialization/types/SandboxMetricInputParams.js +0 -42
- package/serialization/types/SandboxMetricInputParamsRequest.d.ts +0 -12
- package/serialization/types/SandboxMetricInputParamsRequest.js +0 -42
- package/serialization/types/SearchResultsVariableValue.d.ts +0 -12
- package/serialization/types/VariableValue.d.ts +0 -34
- package/serialization/types/WorkflowOutputArray.d.ts +0 -14
- /package/api/types/{ArrayEnum.js → FulfilledWorkflowNodeResultEvent.js} +0 -0
- /package/api/types/{ArrayVariableValue.js → InitiatedWorkflowNodeResultEvent.js} +0 -0
- /package/api/types/{ChatHistoryVariableValue.js → NodeOutputCompiledChatHistoryValue.js} +0 -0
- /package/api/types/{EvaluationParams.js → NodeOutputCompiledErrorValue.js} +0 -0
- /package/api/types/{EvaluationParamsRequest.js → NodeOutputCompiledJsonValue.js} +0 -0
- /package/api/types/{NumberVariableValue.js → NodeOutputCompiledNumberValue.js} +0 -0
- /package/api/types/{SandboxMetricInputParams.js → NodeOutputCompiledSearchResultsValue.js} +0 -0
- /package/api/types/{SandboxMetricInputParamsRequest.js → NodeOutputCompiledStringValue.js} +0 -0
- /package/api/types/{SearchResultsVariableValue.js → NodeOutputCompiledValue.js} +0 -0
- /package/api/types/{VariableValue.js → RejectedWorkflowNodeResultEvent.js} +0 -0
- /package/api/types/{WorkflowOutputArray.js → StreamingWorkflowNodeResultEvent.js} +0 -0
- /package/dist/api/types/{ArrayEnum.js → FulfilledWorkflowNodeResultEvent.js} +0 -0
- /package/dist/api/types/{ArrayVariableValue.js → InitiatedWorkflowNodeResultEvent.js} +0 -0
- /package/dist/api/types/{ChatHistoryVariableValue.js → NodeOutputCompiledChatHistoryValue.js} +0 -0
- /package/dist/api/types/{EvaluationParams.js → NodeOutputCompiledErrorValue.js} +0 -0
- /package/dist/api/types/{EvaluationParamsRequest.js → NodeOutputCompiledJsonValue.js} +0 -0
- /package/dist/api/types/{NumberVariableValue.js → NodeOutputCompiledNumberValue.js} +0 -0
- /package/dist/api/types/{SandboxMetricInputParams.js → NodeOutputCompiledSearchResultsValue.js} +0 -0
- /package/dist/api/types/{SandboxMetricInputParamsRequest.js → NodeOutputCompiledStringValue.js} +0 -0
- /package/dist/api/types/{SearchResultsVariableValue.js → NodeOutputCompiledValue.js} +0 -0
- /package/dist/api/types/{VariableValue.js → RejectedWorkflowNodeResultEvent.js} +0 -0
- /package/dist/api/types/{WorkflowOutputArray.js → StreamingWorkflowNodeResultEvent.js} +0 -0
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as serializers from "..";
|
|
5
|
-
import * as Vellum from "../../api";
|
|
6
|
-
import * as core from "../../core";
|
|
7
|
-
export declare const ChatHistoryVariableValue: core.serialization.ObjectSchema<serializers.ChatHistoryVariableValue.Raw, Vellum.ChatHistoryVariableValue>;
|
|
8
|
-
export declare namespace ChatHistoryVariableValue {
|
|
9
|
-
interface Raw {
|
|
10
|
-
value?: serializers.ChatMessage.Raw[] | null;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as serializers from "..";
|
|
5
|
-
import * as Vellum from "../../api";
|
|
6
|
-
import * as core from "../../core";
|
|
7
|
-
export declare const EvaluationParams: core.serialization.ObjectSchema<serializers.EvaluationParams.Raw, Vellum.EvaluationParams>;
|
|
8
|
-
export declare namespace EvaluationParams {
|
|
9
|
-
interface Raw {
|
|
10
|
-
target?: string | null;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as serializers from "..";
|
|
5
|
-
import * as Vellum from "../../api";
|
|
6
|
-
import * as core from "../../core";
|
|
7
|
-
export declare const EvaluationParamsRequest: core.serialization.ObjectSchema<serializers.EvaluationParamsRequest.Raw, Vellum.EvaluationParamsRequest>;
|
|
8
|
-
export declare namespace EvaluationParamsRequest {
|
|
9
|
-
interface Raw {
|
|
10
|
-
target?: string | null;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as serializers from "..";
|
|
5
|
-
import * as Vellum from "../../api";
|
|
6
|
-
import * as core from "../../core";
|
|
7
|
-
export declare const NumberVariableValue: core.serialization.ObjectSchema<serializers.NumberVariableValue.Raw, Vellum.NumberVariableValue>;
|
|
8
|
-
export declare namespace NumberVariableValue {
|
|
9
|
-
interface Raw {
|
|
10
|
-
value?: number | null;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as serializers from "..";
|
|
5
|
-
import * as Vellum from "../../api";
|
|
6
|
-
import * as core from "../../core";
|
|
7
|
-
export declare const SandboxMetricInputParams: core.serialization.ObjectSchema<serializers.SandboxMetricInputParams.Raw, Vellum.SandboxMetricInputParams>;
|
|
8
|
-
export declare namespace SandboxMetricInputParams {
|
|
9
|
-
interface Raw {
|
|
10
|
-
params?: serializers.EvaluationParams.Raw | null;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as serializers from "..";
|
|
5
|
-
import * as Vellum from "../../api";
|
|
6
|
-
import * as core from "../../core";
|
|
7
|
-
export declare const SandboxMetricInputParamsRequest: core.serialization.ObjectSchema<serializers.SandboxMetricInputParamsRequest.Raw, Vellum.SandboxMetricInputParamsRequest>;
|
|
8
|
-
export declare namespace SandboxMetricInputParamsRequest {
|
|
9
|
-
interface Raw {
|
|
10
|
-
params?: serializers.EvaluationParamsRequest.Raw | null;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as serializers from "..";
|
|
5
|
-
import * as Vellum from "../../api";
|
|
6
|
-
import * as core from "../../core";
|
|
7
|
-
export declare const SearchResultsVariableValue: core.serialization.ObjectSchema<serializers.SearchResultsVariableValue.Raw, Vellum.SearchResultsVariableValue>;
|
|
8
|
-
export declare namespace SearchResultsVariableValue {
|
|
9
|
-
interface Raw {
|
|
10
|
-
value?: serializers.SearchResult.Raw[] | null;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as serializers from "..";
|
|
5
|
-
import * as Vellum from "../../api";
|
|
6
|
-
import * as core from "../../core";
|
|
7
|
-
export declare const VariableValue: core.serialization.Schema<serializers.VariableValue.Raw, Vellum.VariableValue>;
|
|
8
|
-
export declare namespace VariableValue {
|
|
9
|
-
type Raw = VariableValue.String | VariableValue.Number | VariableValue.Json | VariableValue.ChatHistory | VariableValue.SearchResults | VariableValue.Error | VariableValue.Array | VariableValue.FunctionCall;
|
|
10
|
-
interface String extends serializers.StringVariableValue.Raw {
|
|
11
|
-
type: "STRING";
|
|
12
|
-
}
|
|
13
|
-
interface Number extends serializers.NumberVariableValue.Raw {
|
|
14
|
-
type: "NUMBER";
|
|
15
|
-
}
|
|
16
|
-
interface Json extends serializers.JsonVariableValue.Raw {
|
|
17
|
-
type: "JSON";
|
|
18
|
-
}
|
|
19
|
-
interface ChatHistory extends serializers.ChatHistoryVariableValue.Raw {
|
|
20
|
-
type: "CHAT_HISTORY";
|
|
21
|
-
}
|
|
22
|
-
interface SearchResults extends serializers.SearchResultsVariableValue.Raw {
|
|
23
|
-
type: "SEARCH_RESULTS";
|
|
24
|
-
}
|
|
25
|
-
interface Error extends serializers.ErrorVariableValue.Raw {
|
|
26
|
-
type: "ERROR";
|
|
27
|
-
}
|
|
28
|
-
interface Array extends serializers.ArrayVariableValue.Raw {
|
|
29
|
-
type: "ARRAY";
|
|
30
|
-
}
|
|
31
|
-
interface FunctionCall extends serializers.FunctionCallVariableValue.Raw {
|
|
32
|
-
type: "FUNCTION_CALL";
|
|
33
|
-
}
|
|
34
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as serializers from "..";
|
|
5
|
-
import * as Vellum from "../../api";
|
|
6
|
-
import * as core from "../../core";
|
|
7
|
-
export declare const WorkflowOutputArray: core.serialization.ObjectSchema<serializers.WorkflowOutputArray.Raw, Vellum.WorkflowOutputArray>;
|
|
8
|
-
export declare namespace WorkflowOutputArray {
|
|
9
|
-
interface Raw {
|
|
10
|
-
id: string;
|
|
11
|
-
name: string;
|
|
12
|
-
value: serializers.VariableValue.Raw[];
|
|
13
|
-
}
|
|
14
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as serializers from "..";
|
|
5
|
-
import * as Vellum from "../../api";
|
|
6
|
-
import * as core from "../../core";
|
|
7
|
-
export declare const ArrayEnum: core.serialization.Schema<serializers.ArrayEnum.Raw, Vellum.ArrayEnum>;
|
|
8
|
-
export declare namespace ArrayEnum {
|
|
9
|
-
type Raw = "ARRAY";
|
|
10
|
-
}
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/**
|
|
3
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
-
*/
|
|
5
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
-
if (k2 === undefined) k2 = k;
|
|
7
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
-
}
|
|
11
|
-
Object.defineProperty(o, k2, desc);
|
|
12
|
-
}) : (function(o, m, k, k2) {
|
|
13
|
-
if (k2 === undefined) k2 = k;
|
|
14
|
-
o[k2] = m[k];
|
|
15
|
-
}));
|
|
16
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
-
}) : function(o, v) {
|
|
19
|
-
o["default"] = v;
|
|
20
|
-
});
|
|
21
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
-
if (mod && mod.__esModule) return mod;
|
|
23
|
-
var result = {};
|
|
24
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
-
__setModuleDefault(result, mod);
|
|
26
|
-
return result;
|
|
27
|
-
};
|
|
28
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
-
exports.ArrayEnum = void 0;
|
|
30
|
-
const core = __importStar(require("../../core"));
|
|
31
|
-
exports.ArrayEnum = core.serialization.stringLiteral("ARRAY");
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as serializers from "..";
|
|
5
|
-
import * as Vellum from "../../api";
|
|
6
|
-
import * as core from "../../core";
|
|
7
|
-
export declare const ArrayVariableValue: core.serialization.ObjectSchema<serializers.ArrayVariableValue.Raw, Vellum.ArrayVariableValue>;
|
|
8
|
-
export declare namespace ArrayVariableValue {
|
|
9
|
-
interface Raw {
|
|
10
|
-
value: serializers.VariableValue.Raw[];
|
|
11
|
-
}
|
|
12
|
-
}
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/**
|
|
3
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
-
*/
|
|
5
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
-
if (k2 === undefined) k2 = k;
|
|
7
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
-
}
|
|
11
|
-
Object.defineProperty(o, k2, desc);
|
|
12
|
-
}) : (function(o, m, k, k2) {
|
|
13
|
-
if (k2 === undefined) k2 = k;
|
|
14
|
-
o[k2] = m[k];
|
|
15
|
-
}));
|
|
16
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
-
}) : function(o, v) {
|
|
19
|
-
o["default"] = v;
|
|
20
|
-
});
|
|
21
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
-
if (mod && mod.__esModule) return mod;
|
|
23
|
-
var result = {};
|
|
24
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
-
__setModuleDefault(result, mod);
|
|
26
|
-
return result;
|
|
27
|
-
};
|
|
28
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
29
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
30
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
31
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
32
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
33
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
34
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
35
|
-
});
|
|
36
|
-
};
|
|
37
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
38
|
-
exports.ArrayVariableValue = void 0;
|
|
39
|
-
const core = __importStar(require("../../core"));
|
|
40
|
-
exports.ArrayVariableValue = core.serialization.object({
|
|
41
|
-
value: core.serialization.list(core.serialization.lazy(() => __awaiter(void 0, void 0, void 0, function* () { return (yield Promise.resolve().then(() => __importStar(require("..")))).VariableValue; }))),
|
|
42
|
-
});
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as serializers from "..";
|
|
5
|
-
import * as Vellum from "../../api";
|
|
6
|
-
import * as core from "../../core";
|
|
7
|
-
export declare const ChatHistoryVariableValue: core.serialization.ObjectSchema<serializers.ChatHistoryVariableValue.Raw, Vellum.ChatHistoryVariableValue>;
|
|
8
|
-
export declare namespace ChatHistoryVariableValue {
|
|
9
|
-
interface Raw {
|
|
10
|
-
value?: serializers.ChatMessage.Raw[] | null;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as serializers from "..";
|
|
5
|
-
import * as Vellum from "../../api";
|
|
6
|
-
import * as core from "../../core";
|
|
7
|
-
export declare const EvaluationParams: core.serialization.ObjectSchema<serializers.EvaluationParams.Raw, Vellum.EvaluationParams>;
|
|
8
|
-
export declare namespace EvaluationParams {
|
|
9
|
-
interface Raw {
|
|
10
|
-
target?: string | null;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as serializers from "..";
|
|
5
|
-
import * as Vellum from "../../api";
|
|
6
|
-
import * as core from "../../core";
|
|
7
|
-
export declare const EvaluationParamsRequest: core.serialization.ObjectSchema<serializers.EvaluationParamsRequest.Raw, Vellum.EvaluationParamsRequest>;
|
|
8
|
-
export declare namespace EvaluationParamsRequest {
|
|
9
|
-
interface Raw {
|
|
10
|
-
target?: string | null;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/**
|
|
3
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
-
*/
|
|
5
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
-
if (k2 === undefined) k2 = k;
|
|
7
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
-
}
|
|
11
|
-
Object.defineProperty(o, k2, desc);
|
|
12
|
-
}) : (function(o, m, k, k2) {
|
|
13
|
-
if (k2 === undefined) k2 = k;
|
|
14
|
-
o[k2] = m[k];
|
|
15
|
-
}));
|
|
16
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
-
}) : function(o, v) {
|
|
19
|
-
o["default"] = v;
|
|
20
|
-
});
|
|
21
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
-
if (mod && mod.__esModule) return mod;
|
|
23
|
-
var result = {};
|
|
24
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
-
__setModuleDefault(result, mod);
|
|
26
|
-
return result;
|
|
27
|
-
};
|
|
28
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
-
exports.EvaluationParamsRequest = void 0;
|
|
30
|
-
const core = __importStar(require("../../core"));
|
|
31
|
-
exports.EvaluationParamsRequest = core.serialization.object({
|
|
32
|
-
target: core.serialization.string().optional(),
|
|
33
|
-
});
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as serializers from "..";
|
|
5
|
-
import * as Vellum from "../../api";
|
|
6
|
-
import * as core from "../../core";
|
|
7
|
-
export declare const NumberVariableValue: core.serialization.ObjectSchema<serializers.NumberVariableValue.Raw, Vellum.NumberVariableValue>;
|
|
8
|
-
export declare namespace NumberVariableValue {
|
|
9
|
-
interface Raw {
|
|
10
|
-
value?: number | null;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as serializers from "..";
|
|
5
|
-
import * as Vellum from "../../api";
|
|
6
|
-
import * as core from "../../core";
|
|
7
|
-
export declare const SandboxMetricInputParams: core.serialization.ObjectSchema<serializers.SandboxMetricInputParams.Raw, Vellum.SandboxMetricInputParams>;
|
|
8
|
-
export declare namespace SandboxMetricInputParams {
|
|
9
|
-
interface Raw {
|
|
10
|
-
params?: serializers.EvaluationParams.Raw | null;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/**
|
|
3
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
-
*/
|
|
5
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
-
if (k2 === undefined) k2 = k;
|
|
7
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
-
}
|
|
11
|
-
Object.defineProperty(o, k2, desc);
|
|
12
|
-
}) : (function(o, m, k, k2) {
|
|
13
|
-
if (k2 === undefined) k2 = k;
|
|
14
|
-
o[k2] = m[k];
|
|
15
|
-
}));
|
|
16
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
-
}) : function(o, v) {
|
|
19
|
-
o["default"] = v;
|
|
20
|
-
});
|
|
21
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
-
if (mod && mod.__esModule) return mod;
|
|
23
|
-
var result = {};
|
|
24
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
-
__setModuleDefault(result, mod);
|
|
26
|
-
return result;
|
|
27
|
-
};
|
|
28
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
29
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
30
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
31
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
32
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
33
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
34
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
35
|
-
});
|
|
36
|
-
};
|
|
37
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
38
|
-
exports.SandboxMetricInputParams = void 0;
|
|
39
|
-
const core = __importStar(require("../../core"));
|
|
40
|
-
exports.SandboxMetricInputParams = core.serialization.object({
|
|
41
|
-
params: core.serialization.lazyObject(() => __awaiter(void 0, void 0, void 0, function* () { return (yield Promise.resolve().then(() => __importStar(require("..")))).EvaluationParams; })).optional(),
|
|
42
|
-
});
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as serializers from "..";
|
|
5
|
-
import * as Vellum from "../../api";
|
|
6
|
-
import * as core from "../../core";
|
|
7
|
-
export declare const SandboxMetricInputParamsRequest: core.serialization.ObjectSchema<serializers.SandboxMetricInputParamsRequest.Raw, Vellum.SandboxMetricInputParamsRequest>;
|
|
8
|
-
export declare namespace SandboxMetricInputParamsRequest {
|
|
9
|
-
interface Raw {
|
|
10
|
-
params?: serializers.EvaluationParamsRequest.Raw | null;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/**
|
|
3
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
-
*/
|
|
5
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
-
if (k2 === undefined) k2 = k;
|
|
7
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
-
}
|
|
11
|
-
Object.defineProperty(o, k2, desc);
|
|
12
|
-
}) : (function(o, m, k, k2) {
|
|
13
|
-
if (k2 === undefined) k2 = k;
|
|
14
|
-
o[k2] = m[k];
|
|
15
|
-
}));
|
|
16
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
-
}) : function(o, v) {
|
|
19
|
-
o["default"] = v;
|
|
20
|
-
});
|
|
21
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
-
if (mod && mod.__esModule) return mod;
|
|
23
|
-
var result = {};
|
|
24
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
-
__setModuleDefault(result, mod);
|
|
26
|
-
return result;
|
|
27
|
-
};
|
|
28
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
29
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
30
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
31
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
32
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
33
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
34
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
35
|
-
});
|
|
36
|
-
};
|
|
37
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
38
|
-
exports.SandboxMetricInputParamsRequest = void 0;
|
|
39
|
-
const core = __importStar(require("../../core"));
|
|
40
|
-
exports.SandboxMetricInputParamsRequest = core.serialization.object({
|
|
41
|
-
params: core.serialization.lazyObject(() => __awaiter(void 0, void 0, void 0, function* () { return (yield Promise.resolve().then(() => __importStar(require("..")))).EvaluationParamsRequest; })).optional(),
|
|
42
|
-
});
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as serializers from "..";
|
|
5
|
-
import * as Vellum from "../../api";
|
|
6
|
-
import * as core from "../../core";
|
|
7
|
-
export declare const SearchResultsVariableValue: core.serialization.ObjectSchema<serializers.SearchResultsVariableValue.Raw, Vellum.SearchResultsVariableValue>;
|
|
8
|
-
export declare namespace SearchResultsVariableValue {
|
|
9
|
-
interface Raw {
|
|
10
|
-
value?: serializers.SearchResult.Raw[] | null;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as serializers from "..";
|
|
5
|
-
import * as Vellum from "../../api";
|
|
6
|
-
import * as core from "../../core";
|
|
7
|
-
export declare const VariableValue: core.serialization.Schema<serializers.VariableValue.Raw, Vellum.VariableValue>;
|
|
8
|
-
export declare namespace VariableValue {
|
|
9
|
-
type Raw = VariableValue.String | VariableValue.Number | VariableValue.Json | VariableValue.ChatHistory | VariableValue.SearchResults | VariableValue.Error | VariableValue.Array | VariableValue.FunctionCall;
|
|
10
|
-
interface String extends serializers.StringVariableValue.Raw {
|
|
11
|
-
type: "STRING";
|
|
12
|
-
}
|
|
13
|
-
interface Number extends serializers.NumberVariableValue.Raw {
|
|
14
|
-
type: "NUMBER";
|
|
15
|
-
}
|
|
16
|
-
interface Json extends serializers.JsonVariableValue.Raw {
|
|
17
|
-
type: "JSON";
|
|
18
|
-
}
|
|
19
|
-
interface ChatHistory extends serializers.ChatHistoryVariableValue.Raw {
|
|
20
|
-
type: "CHAT_HISTORY";
|
|
21
|
-
}
|
|
22
|
-
interface SearchResults extends serializers.SearchResultsVariableValue.Raw {
|
|
23
|
-
type: "SEARCH_RESULTS";
|
|
24
|
-
}
|
|
25
|
-
interface Error extends serializers.ErrorVariableValue.Raw {
|
|
26
|
-
type: "ERROR";
|
|
27
|
-
}
|
|
28
|
-
interface Array extends serializers.ArrayVariableValue.Raw {
|
|
29
|
-
type: "ARRAY";
|
|
30
|
-
}
|
|
31
|
-
interface FunctionCall extends serializers.FunctionCallVariableValue.Raw {
|
|
32
|
-
type: "FUNCTION_CALL";
|
|
33
|
-
}
|
|
34
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as serializers from "..";
|
|
5
|
-
import * as Vellum from "../../api";
|
|
6
|
-
import * as core from "../../core";
|
|
7
|
-
export declare const WorkflowOutputArray: core.serialization.ObjectSchema<serializers.WorkflowOutputArray.Raw, Vellum.WorkflowOutputArray>;
|
|
8
|
-
export declare namespace WorkflowOutputArray {
|
|
9
|
-
interface Raw {
|
|
10
|
-
id: string;
|
|
11
|
-
name: string;
|
|
12
|
-
value: serializers.VariableValue.Raw[];
|
|
13
|
-
}
|
|
14
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/dist/api/types/{ChatHistoryVariableValue.js → NodeOutputCompiledChatHistoryValue.js}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/dist/api/types/{SandboxMetricInputParams.js → NodeOutputCompiledSearchResultsValue.js}
RENAMED
|
File without changes
|
/package/dist/api/types/{SandboxMetricInputParamsRequest.js → NodeOutputCompiledStringValue.js}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|