vellum-ai 0.3.25 → 0.4.0
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.js +9 -9
- package/api/resources/deployments/client/Client.js +3 -3
- package/api/resources/documentIndexes/client/Client.js +6 -6
- package/api/resources/documents/client/Client.d.ts +7 -0
- package/api/resources/documents/client/Client.js +51 -4
- package/api/resources/folderEntities/client/Client.js +1 -1
- package/api/resources/modelVersions/client/Client.js +1 -1
- package/api/resources/registeredPrompts/client/Client.d.ts +2 -6
- package/api/resources/registeredPrompts/client/Client.js +3 -7
- package/api/resources/registeredPrompts/client/requests/RegisterPromptRequestRequest.d.ts +2 -6
- package/api/resources/sandboxes/client/Client.d.ts +1 -9
- package/api/resources/sandboxes/client/Client.js +3 -11
- package/api/resources/sandboxes/client/requests/UpsertSandboxScenarioRequestRequest.d.ts +2 -10
- package/api/resources/testSuiteRuns/client/Client.js +3 -3
- package/api/resources/testSuites/client/Client.js +3 -3
- package/api/resources/workflowDeployments/client/Client.js +2 -2
- package/api/types/ChatHistoryPromptTemplateBlock.d.ts +12 -0
- package/api/types/ChatHistoryPromptTemplateBlockRequest.d.ts +12 -0
- package/api/types/ChatMessageEnum.d.ts +4 -0
- package/api/types/ChatMessagePromptTemplateBlock.d.ts +12 -0
- package/api/types/ChatMessagePromptTemplateBlockProperties.d.ts +13 -0
- package/api/types/ChatMessagePromptTemplateBlockPropertiesRequest.d.ts +13 -0
- package/api/types/ChatMessagePromptTemplateBlockRequest.d.ts +12 -0
- package/api/types/ChatMessagePromptTemplateBlockRequest.js +5 -0
- package/api/types/FulfilledFunctionCallRequest.d.ts +13 -0
- package/api/types/FulfilledFunctionCallRequest.js +5 -0
- package/api/types/FunctionDefinitionEnum.d.ts +4 -0
- package/api/types/FunctionDefinitionEnum.js +5 -0
- package/api/types/FunctionDefinitionPromptTemplateBlock.d.ts +12 -0
- package/api/types/FunctionDefinitionPromptTemplateBlock.js +5 -0
- package/api/types/FunctionDefinitionPromptTemplateBlockProperties.d.ts +13 -0
- package/api/types/FunctionDefinitionPromptTemplateBlockProperties.js +5 -0
- package/api/types/FunctionDefinitionPromptTemplateBlockPropertiesRequest.d.ts +13 -0
- package/api/types/FunctionDefinitionPromptTemplateBlockPropertiesRequest.js +5 -0
- package/api/types/FunctionDefinitionPromptTemplateBlockRequest.d.ts +12 -0
- package/api/types/FunctionDefinitionPromptTemplateBlockRequest.js +5 -0
- package/api/types/JinjaEnum.d.ts +4 -0
- package/api/types/JinjaEnum.js +5 -0
- package/api/types/JinjaPromptTemplateBlock.d.ts +12 -0
- package/api/types/JinjaPromptTemplateBlock.js +5 -0
- package/api/types/JinjaPromptTemplateBlockProperties.d.ts +8 -0
- package/api/types/JinjaPromptTemplateBlockProperties.js +5 -0
- package/api/types/JinjaPromptTemplateBlockPropertiesRequest.d.ts +8 -0
- package/api/types/JinjaPromptTemplateBlockPropertiesRequest.js +5 -0
- package/api/types/JinjaPromptTemplateBlockRequest.d.ts +12 -0
- package/api/types/JinjaPromptTemplateBlockRequest.js +5 -0
- package/api/types/NamedScenarioInputChatHistoryVariableValueRequest.d.ts +11 -0
- package/api/types/NamedScenarioInputChatHistoryVariableValueRequest.js +5 -0
- package/api/types/NamedScenarioInputRequest.d.ts +13 -0
- package/api/types/NamedScenarioInputRequest.js +5 -0
- package/api/types/NamedScenarioInputStringVariableValueRequest.d.ts +10 -0
- package/api/types/NamedScenarioInputStringVariableValueRequest.js +5 -0
- package/api/types/NamedTestCaseFunctionCallVariableValue.d.ts +11 -0
- package/api/types/NamedTestCaseFunctionCallVariableValue.js +5 -0
- package/api/types/NamedTestCaseFunctionCallVariableValueRequest.d.ts +11 -0
- package/api/types/NamedTestCaseFunctionCallVariableValueRequest.js +5 -0
- package/api/types/NamedTestCaseVariableValue.d.ts +4 -1
- package/api/types/NamedTestCaseVariableValueRequest.d.ts +4 -1
- package/api/types/PromptTemplateBlock.d.ts +14 -5
- package/api/types/PromptTemplateBlockData.d.ts +1 -1
- package/api/types/PromptTemplateBlockDataRequest.d.ts +1 -1
- package/api/types/PromptTemplateBlockRequest.d.ts +14 -5
- package/api/types/ScenarioInput.d.ts +8 -5
- package/api/types/ScenarioInputChatHistoryVariableValue.d.ts +11 -0
- package/api/types/ScenarioInputChatHistoryVariableValue.js +5 -0
- package/api/types/ScenarioInputStringVariableValue.d.ts +10 -0
- package/api/types/ScenarioInputStringVariableValue.js +5 -0
- package/api/types/TestCaseFunctionCallVariableValue.d.ts +12 -0
- package/api/types/TestCaseFunctionCallVariableValue.js +5 -0
- package/api/types/TestCaseVariableValue.d.ts +4 -1
- package/api/types/TestSuiteRunExecutionFunctionCallOutput.d.ts +12 -0
- package/api/types/TestSuiteRunExecutionFunctionCallOutput.js +5 -0
- package/api/types/TestSuiteRunExecutionOutput.d.ts +4 -1
- package/api/types/VellumVariableType.d.ts +3 -1
- package/api/types/VellumVariableType.js +1 -0
- package/api/types/index.d.ts +27 -5
- package/api/types/index.js +27 -5
- package/dist/Client.js +9 -9
- package/dist/api/resources/deployments/client/Client.js +3 -3
- package/dist/api/resources/documentIndexes/client/Client.js +6 -6
- package/dist/api/resources/documents/client/Client.d.ts +7 -0
- package/dist/api/resources/documents/client/Client.js +51 -4
- package/dist/api/resources/folderEntities/client/Client.js +1 -1
- package/dist/api/resources/modelVersions/client/Client.js +1 -1
- package/dist/api/resources/registeredPrompts/client/Client.d.ts +2 -6
- package/dist/api/resources/registeredPrompts/client/Client.js +3 -7
- package/dist/api/resources/registeredPrompts/client/requests/RegisterPromptRequestRequest.d.ts +2 -6
- package/dist/api/resources/sandboxes/client/Client.d.ts +1 -9
- package/dist/api/resources/sandboxes/client/Client.js +3 -11
- package/dist/api/resources/sandboxes/client/requests/UpsertSandboxScenarioRequestRequest.d.ts +2 -10
- package/dist/api/resources/testSuiteRuns/client/Client.js +3 -3
- package/dist/api/resources/testSuites/client/Client.js +3 -3
- package/dist/api/resources/workflowDeployments/client/Client.js +2 -2
- package/dist/api/types/ChatHistoryPromptTemplateBlock.d.ts +12 -0
- package/dist/api/types/ChatHistoryPromptTemplateBlock.js +5 -0
- package/dist/api/types/ChatHistoryPromptTemplateBlockRequest.d.ts +12 -0
- package/dist/api/types/ChatHistoryPromptTemplateBlockRequest.js +5 -0
- package/dist/api/types/ChatMessageEnum.d.ts +4 -0
- package/dist/api/types/ChatMessageEnum.js +5 -0
- package/dist/api/types/ChatMessagePromptTemplateBlock.d.ts +12 -0
- package/dist/api/types/ChatMessagePromptTemplateBlock.js +5 -0
- package/dist/api/types/ChatMessagePromptTemplateBlockProperties.d.ts +13 -0
- package/dist/api/types/ChatMessagePromptTemplateBlockProperties.js +5 -0
- package/dist/api/types/ChatMessagePromptTemplateBlockPropertiesRequest.d.ts +13 -0
- package/dist/api/types/ChatMessagePromptTemplateBlockPropertiesRequest.js +5 -0
- package/dist/api/types/ChatMessagePromptTemplateBlockRequest.d.ts +12 -0
- package/dist/api/types/ChatMessagePromptTemplateBlockRequest.js +5 -0
- package/dist/api/types/FulfilledFunctionCallRequest.d.ts +13 -0
- package/dist/api/types/FulfilledFunctionCallRequest.js +5 -0
- package/dist/api/types/FunctionDefinitionEnum.d.ts +4 -0
- package/dist/api/types/FunctionDefinitionEnum.js +5 -0
- package/dist/api/types/FunctionDefinitionPromptTemplateBlock.d.ts +12 -0
- package/dist/api/types/FunctionDefinitionPromptTemplateBlock.js +5 -0
- package/dist/api/types/FunctionDefinitionPromptTemplateBlockProperties.d.ts +13 -0
- package/dist/api/types/FunctionDefinitionPromptTemplateBlockProperties.js +5 -0
- package/dist/api/types/FunctionDefinitionPromptTemplateBlockPropertiesRequest.d.ts +13 -0
- package/dist/api/types/FunctionDefinitionPromptTemplateBlockPropertiesRequest.js +5 -0
- package/dist/api/types/FunctionDefinitionPromptTemplateBlockRequest.d.ts +12 -0
- package/dist/api/types/FunctionDefinitionPromptTemplateBlockRequest.js +5 -0
- package/dist/api/types/JinjaEnum.d.ts +4 -0
- package/dist/api/types/JinjaEnum.js +5 -0
- package/dist/api/types/JinjaPromptTemplateBlock.d.ts +12 -0
- package/dist/api/types/JinjaPromptTemplateBlock.js +5 -0
- package/dist/api/types/JinjaPromptTemplateBlockProperties.d.ts +8 -0
- package/dist/api/types/JinjaPromptTemplateBlockProperties.js +5 -0
- package/dist/api/types/JinjaPromptTemplateBlockPropertiesRequest.d.ts +8 -0
- package/dist/api/types/JinjaPromptTemplateBlockPropertiesRequest.js +5 -0
- package/dist/api/types/JinjaPromptTemplateBlockRequest.d.ts +12 -0
- package/dist/api/types/JinjaPromptTemplateBlockRequest.js +5 -0
- package/dist/api/types/NamedScenarioInputChatHistoryVariableValueRequest.d.ts +11 -0
- package/dist/api/types/NamedScenarioInputChatHistoryVariableValueRequest.js +5 -0
- package/dist/api/types/NamedScenarioInputRequest.d.ts +13 -0
- package/dist/api/types/NamedScenarioInputRequest.js +5 -0
- package/dist/api/types/NamedScenarioInputStringVariableValueRequest.d.ts +10 -0
- package/dist/api/types/NamedScenarioInputStringVariableValueRequest.js +5 -0
- package/dist/api/types/NamedTestCaseFunctionCallVariableValue.d.ts +11 -0
- package/dist/api/types/NamedTestCaseFunctionCallVariableValue.js +5 -0
- package/dist/api/types/NamedTestCaseFunctionCallVariableValueRequest.d.ts +11 -0
- package/dist/api/types/NamedTestCaseFunctionCallVariableValueRequest.js +5 -0
- package/dist/api/types/NamedTestCaseVariableValue.d.ts +4 -1
- package/dist/api/types/NamedTestCaseVariableValueRequest.d.ts +4 -1
- package/dist/api/types/PromptTemplateBlock.d.ts +14 -5
- package/dist/api/types/PromptTemplateBlockData.d.ts +1 -1
- package/dist/api/types/PromptTemplateBlockDataRequest.d.ts +1 -1
- package/dist/api/types/PromptTemplateBlockRequest.d.ts +14 -5
- package/dist/api/types/ScenarioInput.d.ts +8 -5
- package/dist/api/types/ScenarioInputChatHistoryVariableValue.d.ts +11 -0
- package/dist/api/types/ScenarioInputChatHistoryVariableValue.js +5 -0
- package/dist/api/types/ScenarioInputStringVariableValue.d.ts +10 -0
- package/dist/api/types/ScenarioInputStringVariableValue.js +5 -0
- package/dist/api/types/TestCaseFunctionCallVariableValue.d.ts +12 -0
- package/dist/api/types/TestCaseFunctionCallVariableValue.js +5 -0
- package/dist/api/types/TestCaseVariableValue.d.ts +4 -1
- package/dist/api/types/TestSuiteRunExecutionFunctionCallOutput.d.ts +12 -0
- package/dist/api/types/TestSuiteRunExecutionFunctionCallOutput.js +5 -0
- package/dist/api/types/TestSuiteRunExecutionOutput.d.ts +4 -1
- package/dist/api/types/VellumVariableType.d.ts +3 -1
- package/dist/api/types/VellumVariableType.js +1 -0
- package/dist/api/types/index.d.ts +27 -5
- package/dist/api/types/index.js +27 -5
- package/dist/serialization/resources/sandboxes/client/requests/UpsertSandboxScenarioRequestRequest.d.ts +2 -2
- package/dist/serialization/resources/sandboxes/client/requests/UpsertSandboxScenarioRequestRequest.js +2 -2
- package/dist/serialization/types/ChatHistoryPromptTemplateBlock.d.ts +15 -0
- package/dist/serialization/types/ChatHistoryPromptTemplateBlock.js +36 -0
- package/dist/serialization/types/ChatHistoryPromptTemplateBlockRequest.d.ts +15 -0
- package/dist/serialization/types/ChatHistoryPromptTemplateBlockRequest.js +36 -0
- package/dist/serialization/types/ChatMessageEnum.d.ts +10 -0
- package/{serialization/types/ScenarioInputTypeEnum.js → dist/serialization/types/ChatMessageEnum.js} +2 -2
- package/dist/serialization/types/ChatMessagePromptTemplateBlock.d.ts +15 -0
- package/dist/serialization/types/ChatMessagePromptTemplateBlock.js +45 -0
- package/dist/serialization/types/ChatMessagePromptTemplateBlockProperties.d.ts +16 -0
- package/{serialization/types/PromptTemplateBlockProperties.js → dist/serialization/types/ChatMessagePromptTemplateBlockProperties.js} +4 -13
- package/dist/serialization/types/ChatMessagePromptTemplateBlockPropertiesRequest.d.ts +16 -0
- package/dist/serialization/types/{PromptTemplateBlockProperties.js → ChatMessagePromptTemplateBlockPropertiesRequest.js} +4 -13
- package/dist/serialization/types/ChatMessagePromptTemplateBlockRequest.d.ts +15 -0
- package/dist/serialization/types/ChatMessagePromptTemplateBlockRequest.js +45 -0
- package/dist/serialization/types/FulfilledFunctionCallRequest.d.ts +16 -0
- package/dist/serialization/types/FulfilledFunctionCallRequest.js +37 -0
- package/dist/serialization/types/FunctionDefinitionEnum.d.ts +10 -0
- package/dist/serialization/types/{BlockTypeEnum.js → FunctionDefinitionEnum.js} +2 -2
- package/dist/serialization/types/FunctionDefinitionPromptTemplateBlock.d.ts +16 -0
- package/{serialization/types/ScenarioInputRequest.js → dist/serialization/types/FunctionDefinitionPromptTemplateBlock.js} +7 -8
- package/dist/serialization/types/FunctionDefinitionPromptTemplateBlockProperties.d.ts +15 -0
- package/dist/serialization/types/FunctionDefinitionPromptTemplateBlockProperties.js +36 -0
- package/dist/serialization/types/FunctionDefinitionPromptTemplateBlockPropertiesRequest.d.ts +15 -0
- package/dist/serialization/types/FunctionDefinitionPromptTemplateBlockPropertiesRequest.js +36 -0
- package/dist/serialization/types/FunctionDefinitionPromptTemplateBlockRequest.d.ts +16 -0
- package/dist/serialization/types/FunctionDefinitionPromptTemplateBlockRequest.js +37 -0
- package/dist/serialization/types/JinjaEnum.d.ts +10 -0
- package/dist/serialization/types/{ScenarioInputTypeEnum.js → JinjaEnum.js} +2 -2
- package/dist/serialization/types/JinjaPromptTemplateBlock.d.ts +16 -0
- package/dist/serialization/types/JinjaPromptTemplateBlock.js +37 -0
- package/dist/serialization/types/JinjaPromptTemplateBlockProperties.d.ts +14 -0
- package/dist/serialization/types/JinjaPromptTemplateBlockProperties.js +35 -0
- package/dist/serialization/types/JinjaPromptTemplateBlockPropertiesRequest.d.ts +14 -0
- package/dist/serialization/types/JinjaPromptTemplateBlockPropertiesRequest.js +35 -0
- package/dist/serialization/types/JinjaPromptTemplateBlockRequest.d.ts +16 -0
- package/dist/serialization/types/JinjaPromptTemplateBlockRequest.js +37 -0
- package/dist/serialization/types/NamedScenarioInputChatHistoryVariableValueRequest.d.ts +14 -0
- package/dist/serialization/types/NamedScenarioInputChatHistoryVariableValueRequest.js +35 -0
- package/dist/serialization/types/NamedScenarioInputRequest.d.ts +18 -0
- package/dist/serialization/types/NamedScenarioInputRequest.js +41 -0
- package/dist/serialization/types/NamedScenarioInputStringVariableValueRequest.d.ts +13 -0
- package/dist/serialization/types/NamedScenarioInputStringVariableValueRequest.js +34 -0
- package/dist/serialization/types/NamedTestCaseFunctionCallVariableValue.d.ts +14 -0
- package/dist/serialization/types/NamedTestCaseFunctionCallVariableValue.js +35 -0
- package/dist/serialization/types/NamedTestCaseFunctionCallVariableValueRequest.d.ts +14 -0
- package/dist/serialization/types/NamedTestCaseFunctionCallVariableValueRequest.js +35 -0
- package/dist/serialization/types/NamedTestCaseVariableValue.d.ts +5 -1
- package/dist/serialization/types/NamedTestCaseVariableValue.js +2 -0
- package/dist/serialization/types/NamedTestCaseVariableValueRequest.d.ts +5 -1
- package/dist/serialization/types/NamedTestCaseVariableValueRequest.js +2 -0
- package/dist/serialization/types/PromptTemplateBlock.d.ts +16 -8
- package/dist/serialization/types/PromptTemplateBlock.js +13 -7
- package/dist/serialization/types/PromptTemplateBlockData.d.ts +1 -1
- package/dist/serialization/types/PromptTemplateBlockData.js +1 -1
- package/dist/serialization/types/PromptTemplateBlockDataRequest.d.ts +1 -1
- package/dist/serialization/types/PromptTemplateBlockDataRequest.js +1 -1
- package/dist/serialization/types/PromptTemplateBlockRequest.d.ts +16 -8
- package/dist/serialization/types/PromptTemplateBlockRequest.js +13 -7
- package/dist/serialization/types/ScenarioInput.d.ts +9 -8
- package/dist/serialization/types/ScenarioInput.js +10 -7
- package/dist/serialization/types/ScenarioInputChatHistoryVariableValue.d.ts +14 -0
- package/dist/serialization/types/ScenarioInputChatHistoryVariableValue.js +35 -0
- package/dist/serialization/types/ScenarioInputStringVariableValue.d.ts +13 -0
- package/dist/serialization/types/ScenarioInputStringVariableValue.js +34 -0
- package/dist/serialization/types/TestCaseFunctionCallVariableValue.d.ts +15 -0
- package/dist/serialization/types/TestCaseFunctionCallVariableValue.js +36 -0
- package/dist/serialization/types/TestCaseVariableValue.d.ts +5 -1
- package/dist/serialization/types/TestCaseVariableValue.js +2 -0
- package/dist/serialization/types/TestSuiteRunExecutionFunctionCallOutput.d.ts +15 -0
- package/dist/serialization/types/TestSuiteRunExecutionFunctionCallOutput.js +36 -0
- package/dist/serialization/types/TestSuiteRunExecutionOutput.d.ts +5 -1
- package/dist/serialization/types/TestSuiteRunExecutionOutput.js +2 -0
- package/dist/serialization/types/VellumVariableType.d.ts +1 -1
- package/dist/serialization/types/VellumVariableType.js +1 -0
- package/dist/serialization/types/index.d.ts +27 -5
- package/dist/serialization/types/index.js +27 -5
- package/package.json +1 -1
- package/serialization/resources/sandboxes/client/requests/UpsertSandboxScenarioRequestRequest.d.ts +2 -2
- package/serialization/resources/sandboxes/client/requests/UpsertSandboxScenarioRequestRequest.js +2 -2
- package/serialization/types/ChatHistoryPromptTemplateBlock.d.ts +15 -0
- package/serialization/types/ChatHistoryPromptTemplateBlock.js +36 -0
- package/serialization/types/ChatHistoryPromptTemplateBlockRequest.d.ts +15 -0
- package/serialization/types/ChatHistoryPromptTemplateBlockRequest.js +36 -0
- package/serialization/types/ChatMessageEnum.d.ts +10 -0
- package/serialization/types/{BlockTypeEnum.js → ChatMessageEnum.js} +2 -2
- package/serialization/types/ChatMessagePromptTemplateBlock.d.ts +15 -0
- package/serialization/types/ChatMessagePromptTemplateBlock.js +45 -0
- package/serialization/types/ChatMessagePromptTemplateBlockProperties.d.ts +16 -0
- package/{dist/serialization/types/PromptTemplateBlockPropertiesRequest.js → serialization/types/ChatMessagePromptTemplateBlockProperties.js} +4 -13
- package/serialization/types/ChatMessagePromptTemplateBlockPropertiesRequest.d.ts +16 -0
- package/serialization/types/{PromptTemplateBlockPropertiesRequest.js → ChatMessagePromptTemplateBlockPropertiesRequest.js} +4 -13
- package/serialization/types/ChatMessagePromptTemplateBlockRequest.d.ts +15 -0
- package/serialization/types/ChatMessagePromptTemplateBlockRequest.js +45 -0
- package/serialization/types/FulfilledFunctionCallRequest.d.ts +16 -0
- package/serialization/types/FulfilledFunctionCallRequest.js +37 -0
- package/serialization/types/FunctionDefinitionEnum.d.ts +10 -0
- package/serialization/types/FunctionDefinitionEnum.js +31 -0
- package/serialization/types/FunctionDefinitionPromptTemplateBlock.d.ts +16 -0
- package/{dist/serialization/types/ScenarioInputRequest.js → serialization/types/FunctionDefinitionPromptTemplateBlock.js} +7 -8
- package/serialization/types/FunctionDefinitionPromptTemplateBlockProperties.d.ts +15 -0
- package/serialization/types/FunctionDefinitionPromptTemplateBlockProperties.js +36 -0
- package/serialization/types/FunctionDefinitionPromptTemplateBlockPropertiesRequest.d.ts +15 -0
- package/serialization/types/FunctionDefinitionPromptTemplateBlockPropertiesRequest.js +36 -0
- package/serialization/types/FunctionDefinitionPromptTemplateBlockRequest.d.ts +16 -0
- package/serialization/types/FunctionDefinitionPromptTemplateBlockRequest.js +37 -0
- package/serialization/types/JinjaEnum.d.ts +10 -0
- package/serialization/types/JinjaEnum.js +31 -0
- package/serialization/types/JinjaPromptTemplateBlock.d.ts +16 -0
- package/serialization/types/JinjaPromptTemplateBlock.js +37 -0
- package/serialization/types/JinjaPromptTemplateBlockProperties.d.ts +14 -0
- package/serialization/types/JinjaPromptTemplateBlockProperties.js +35 -0
- package/serialization/types/JinjaPromptTemplateBlockPropertiesRequest.d.ts +14 -0
- package/serialization/types/JinjaPromptTemplateBlockPropertiesRequest.js +35 -0
- package/serialization/types/JinjaPromptTemplateBlockRequest.d.ts +16 -0
- package/serialization/types/JinjaPromptTemplateBlockRequest.js +37 -0
- package/serialization/types/NamedScenarioInputChatHistoryVariableValueRequest.d.ts +14 -0
- package/serialization/types/NamedScenarioInputChatHistoryVariableValueRequest.js +35 -0
- package/serialization/types/NamedScenarioInputRequest.d.ts +18 -0
- package/serialization/types/NamedScenarioInputRequest.js +41 -0
- package/serialization/types/NamedScenarioInputStringVariableValueRequest.d.ts +13 -0
- package/serialization/types/NamedScenarioInputStringVariableValueRequest.js +34 -0
- package/serialization/types/NamedTestCaseFunctionCallVariableValue.d.ts +14 -0
- package/serialization/types/NamedTestCaseFunctionCallVariableValue.js +35 -0
- package/serialization/types/NamedTestCaseFunctionCallVariableValueRequest.d.ts +14 -0
- package/serialization/types/NamedTestCaseFunctionCallVariableValueRequest.js +35 -0
- package/serialization/types/NamedTestCaseVariableValue.d.ts +5 -1
- package/serialization/types/NamedTestCaseVariableValue.js +2 -0
- package/serialization/types/NamedTestCaseVariableValueRequest.d.ts +5 -1
- package/serialization/types/NamedTestCaseVariableValueRequest.js +2 -0
- package/serialization/types/PromptTemplateBlock.d.ts +16 -8
- package/serialization/types/PromptTemplateBlock.js +13 -7
- package/serialization/types/PromptTemplateBlockData.d.ts +1 -1
- package/serialization/types/PromptTemplateBlockData.js +1 -1
- package/serialization/types/PromptTemplateBlockDataRequest.d.ts +1 -1
- package/serialization/types/PromptTemplateBlockDataRequest.js +1 -1
- package/serialization/types/PromptTemplateBlockRequest.d.ts +16 -8
- package/serialization/types/PromptTemplateBlockRequest.js +13 -7
- package/serialization/types/ScenarioInput.d.ts +9 -8
- package/serialization/types/ScenarioInput.js +10 -7
- package/serialization/types/ScenarioInputChatHistoryVariableValue.d.ts +14 -0
- package/serialization/types/ScenarioInputChatHistoryVariableValue.js +35 -0
- package/serialization/types/ScenarioInputStringVariableValue.d.ts +13 -0
- package/serialization/types/ScenarioInputStringVariableValue.js +34 -0
- package/serialization/types/TestCaseFunctionCallVariableValue.d.ts +15 -0
- package/serialization/types/TestCaseFunctionCallVariableValue.js +36 -0
- package/serialization/types/TestCaseVariableValue.d.ts +5 -1
- package/serialization/types/TestCaseVariableValue.js +2 -0
- package/serialization/types/TestSuiteRunExecutionFunctionCallOutput.d.ts +15 -0
- package/serialization/types/TestSuiteRunExecutionFunctionCallOutput.js +36 -0
- package/serialization/types/TestSuiteRunExecutionOutput.d.ts +5 -1
- package/serialization/types/TestSuiteRunExecutionOutput.js +2 -0
- package/serialization/types/VellumVariableType.d.ts +1 -1
- package/serialization/types/VellumVariableType.js +1 -0
- package/serialization/types/index.d.ts +27 -5
- package/serialization/types/index.js +27 -5
- package/api/types/BlockTypeEnum.d.ts +0 -16
- package/api/types/BlockTypeEnum.js +0 -12
- package/api/types/PromptTemplateBlockProperties.d.ts +0 -16
- package/api/types/PromptTemplateBlockPropertiesRequest.d.ts +0 -16
- package/api/types/ScenarioInputRequest.d.ts +0 -10
- package/api/types/ScenarioInputTypeEnum.d.ts +0 -12
- package/api/types/ScenarioInputTypeEnum.js +0 -10
- package/dist/api/types/BlockTypeEnum.d.ts +0 -16
- package/dist/api/types/BlockTypeEnum.js +0 -12
- package/dist/api/types/PromptTemplateBlockProperties.d.ts +0 -16
- package/dist/api/types/PromptTemplateBlockPropertiesRequest.d.ts +0 -16
- package/dist/api/types/ScenarioInputRequest.d.ts +0 -10
- package/dist/api/types/ScenarioInputTypeEnum.d.ts +0 -12
- package/dist/api/types/ScenarioInputTypeEnum.js +0 -10
- package/dist/serialization/types/BlockTypeEnum.d.ts +0 -10
- package/dist/serialization/types/PromptTemplateBlockProperties.d.ts +0 -23
- package/dist/serialization/types/PromptTemplateBlockPropertiesRequest.d.ts +0 -23
- package/dist/serialization/types/ScenarioInputRequest.d.ts +0 -17
- package/dist/serialization/types/ScenarioInputTypeEnum.d.ts +0 -10
- package/serialization/types/BlockTypeEnum.d.ts +0 -10
- package/serialization/types/PromptTemplateBlockProperties.d.ts +0 -23
- package/serialization/types/PromptTemplateBlockPropertiesRequest.d.ts +0 -23
- package/serialization/types/ScenarioInputRequest.d.ts +0 -17
- package/serialization/types/ScenarioInputTypeEnum.d.ts +0 -10
- /package/api/types/{PromptTemplateBlockProperties.js → ChatHistoryPromptTemplateBlock.js} +0 -0
- /package/api/types/{PromptTemplateBlockPropertiesRequest.js → ChatHistoryPromptTemplateBlockRequest.js} +0 -0
- /package/api/types/{ScenarioInputRequest.js → ChatMessageEnum.js} +0 -0
- /package/{dist/api/types/PromptTemplateBlockProperties.js → api/types/ChatMessagePromptTemplateBlock.js} +0 -0
- /package/{dist/api/types/PromptTemplateBlockPropertiesRequest.js → api/types/ChatMessagePromptTemplateBlockProperties.js} +0 -0
- /package/{dist/api/types/ScenarioInputRequest.js → api/types/ChatMessagePromptTemplateBlockPropertiesRequest.js} +0 -0
package/Client.js
CHANGED
|
@@ -73,7 +73,7 @@ class VellumClient {
|
|
|
73
73
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
74
74
|
.predict, "v1/execute-prompt"),
|
|
75
75
|
method: "POST",
|
|
76
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
76
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
77
77
|
contentType: "application/json",
|
|
78
78
|
body: yield serializers.ExecutePromptRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
|
|
79
79
|
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
|
|
@@ -129,7 +129,7 @@ class VellumClient {
|
|
|
129
129
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
130
130
|
.predict, "v1/execute-prompt-stream"),
|
|
131
131
|
method: "POST",
|
|
132
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
132
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
133
133
|
contentType: "application/json",
|
|
134
134
|
body: yield serializers.ExecutePromptStreamRequest.jsonOrThrow(request, {
|
|
135
135
|
unrecognizedObjectKeys: "strip",
|
|
@@ -197,7 +197,7 @@ class VellumClient {
|
|
|
197
197
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
198
198
|
.predict, "v1/execute-workflow"),
|
|
199
199
|
method: "POST",
|
|
200
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
200
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
201
201
|
contentType: "application/json",
|
|
202
202
|
body: yield serializers.ExecuteWorkflowRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
|
|
203
203
|
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
|
|
@@ -251,7 +251,7 @@ class VellumClient {
|
|
|
251
251
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
252
252
|
.predict, "v1/execute-workflow-stream"),
|
|
253
253
|
method: "POST",
|
|
254
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
254
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
255
255
|
contentType: "application/json",
|
|
256
256
|
body: yield serializers.ExecuteWorkflowStreamRequest.jsonOrThrow(request, {
|
|
257
257
|
unrecognizedObjectKeys: "strip",
|
|
@@ -327,7 +327,7 @@ class VellumClient {
|
|
|
327
327
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
328
328
|
.predict, "v1/generate"),
|
|
329
329
|
method: "POST",
|
|
330
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
330
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
331
331
|
contentType: "application/json",
|
|
332
332
|
body: yield serializers.GenerateBodyRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
|
|
333
333
|
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
|
|
@@ -385,7 +385,7 @@ class VellumClient {
|
|
|
385
385
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
386
386
|
.predict, "v1/generate-stream"),
|
|
387
387
|
method: "POST",
|
|
388
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
388
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
389
389
|
contentType: "application/json",
|
|
390
390
|
body: yield serializers.GenerateStreamBodyRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
|
|
391
391
|
responseType: "streaming",
|
|
@@ -458,7 +458,7 @@ class VellumClient {
|
|
|
458
458
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
459
459
|
.predict, "v1/search"),
|
|
460
460
|
method: "POST",
|
|
461
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
461
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
462
462
|
contentType: "application/json",
|
|
463
463
|
body: yield serializers.SearchRequestBodyRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
|
|
464
464
|
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
|
|
@@ -522,7 +522,7 @@ class VellumClient {
|
|
|
522
522
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
523
523
|
.predict, "v1/submit-completion-actuals"),
|
|
524
524
|
method: "POST",
|
|
525
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
525
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
526
526
|
contentType: "application/json",
|
|
527
527
|
body: yield serializers.SubmitCompletionActualsRequest.jsonOrThrow(request, {
|
|
528
528
|
unrecognizedObjectKeys: "strip",
|
|
@@ -580,7 +580,7 @@ class VellumClient {
|
|
|
580
580
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
581
581
|
.predict, "v1/submit-workflow-execution-actuals"),
|
|
582
582
|
method: "POST",
|
|
583
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
583
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
584
584
|
contentType: "application/json",
|
|
585
585
|
body: yield serializers.SubmitWorkflowExecutionActualsRequest.jsonOrThrow(request, {
|
|
586
586
|
unrecognizedObjectKeys: "strip",
|
|
@@ -70,7 +70,7 @@ class Deployments {
|
|
|
70
70
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
71
71
|
.default, "v1/deployments"),
|
|
72
72
|
method: "GET",
|
|
73
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
73
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
74
74
|
contentType: "application/json",
|
|
75
75
|
queryParameters: _queryParams,
|
|
76
76
|
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
|
|
@@ -118,7 +118,7 @@ class Deployments {
|
|
|
118
118
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
119
119
|
.default, `v1/deployments/${id}`),
|
|
120
120
|
method: "GET",
|
|
121
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
121
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
122
122
|
contentType: "application/json",
|
|
123
123
|
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
|
|
124
124
|
maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
|
|
@@ -170,7 +170,7 @@ class Deployments {
|
|
|
170
170
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
171
171
|
.default, "v1/deployments/provider-payload"),
|
|
172
172
|
method: "POST",
|
|
173
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
173
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
174
174
|
contentType: "application/json",
|
|
175
175
|
body: yield serializers.DeploymentProviderPayloadRequest.jsonOrThrow(request, {
|
|
176
176
|
unrecognizedObjectKeys: "strip",
|
|
@@ -75,7 +75,7 @@ class DocumentIndexes {
|
|
|
75
75
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
76
76
|
.default, "v1/document-indexes"),
|
|
77
77
|
method: "GET",
|
|
78
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
78
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
79
79
|
contentType: "application/json",
|
|
80
80
|
queryParameters: _queryParams,
|
|
81
81
|
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
|
|
@@ -143,7 +143,7 @@ class DocumentIndexes {
|
|
|
143
143
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
144
144
|
.default, "v1/document-indexes"),
|
|
145
145
|
method: "POST",
|
|
146
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
146
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
147
147
|
contentType: "application/json",
|
|
148
148
|
body: yield serializers.DocumentIndexCreateRequest.jsonOrThrow(request, {
|
|
149
149
|
unrecognizedObjectKeys: "strip",
|
|
@@ -193,7 +193,7 @@ class DocumentIndexes {
|
|
|
193
193
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
194
194
|
.default, `v1/document-indexes/${id}`),
|
|
195
195
|
method: "GET",
|
|
196
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
196
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
197
197
|
contentType: "application/json",
|
|
198
198
|
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
|
|
199
199
|
maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
|
|
@@ -242,7 +242,7 @@ class DocumentIndexes {
|
|
|
242
242
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
243
243
|
.default, `v1/document-indexes/${id}`),
|
|
244
244
|
method: "PUT",
|
|
245
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
245
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
246
246
|
contentType: "application/json",
|
|
247
247
|
body: yield serializers.DocumentIndexUpdateRequest.jsonOrThrow(request, {
|
|
248
248
|
unrecognizedObjectKeys: "strip",
|
|
@@ -292,7 +292,7 @@ class DocumentIndexes {
|
|
|
292
292
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
293
293
|
.default, `v1/document-indexes/${id}`),
|
|
294
294
|
method: "DELETE",
|
|
295
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
295
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
296
296
|
contentType: "application/json",
|
|
297
297
|
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
|
|
298
298
|
maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
|
|
@@ -334,7 +334,7 @@ class DocumentIndexes {
|
|
|
334
334
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
335
335
|
.default, `v1/document-indexes/${id}`),
|
|
336
336
|
method: "PATCH",
|
|
337
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
337
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
338
338
|
contentType: "application/json",
|
|
339
339
|
body: yield serializers.PatchedDocumentIndexUpdateRequest.jsonOrThrow(request, {
|
|
340
340
|
unrecognizedObjectKeys: "strip",
|
|
@@ -26,6 +26,13 @@ export declare class Documents {
|
|
|
26
26
|
* await vellum.documents.list()
|
|
27
27
|
*/
|
|
28
28
|
list(request?: Vellum.DocumentsListRequest, requestOptions?: Documents.RequestOptions): Promise<Vellum.PaginatedSlimDocumentList>;
|
|
29
|
+
/**
|
|
30
|
+
* Retrieve a Document via its Vellum-generated ID.
|
|
31
|
+
*
|
|
32
|
+
* @example
|
|
33
|
+
* await vellum.documents.retrieve("id")
|
|
34
|
+
*/
|
|
35
|
+
retrieve(id: string, requestOptions?: Documents.RequestOptions): Promise<Vellum.DocumentRead>;
|
|
29
36
|
destroy(id: string, requestOptions?: Documents.RequestOptions): Promise<void>;
|
|
30
37
|
/**
|
|
31
38
|
* Update a Document, keying off of its Vellum-generated ID. Particularly useful for updating its metadata.
|
|
@@ -77,7 +77,7 @@ class Documents {
|
|
|
77
77
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
78
78
|
.default, "v1/documents"),
|
|
79
79
|
method: "GET",
|
|
80
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
80
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
81
81
|
contentType: "application/json",
|
|
82
82
|
queryParameters: _queryParams,
|
|
83
83
|
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
|
|
@@ -112,6 +112,53 @@ class Documents {
|
|
|
112
112
|
}
|
|
113
113
|
});
|
|
114
114
|
}
|
|
115
|
+
/**
|
|
116
|
+
* Retrieve a Document via its Vellum-generated ID.
|
|
117
|
+
*
|
|
118
|
+
* @example
|
|
119
|
+
* await vellum.documents.retrieve("id")
|
|
120
|
+
*/
|
|
121
|
+
retrieve(id, requestOptions) {
|
|
122
|
+
var _a;
|
|
123
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
124
|
+
const _response = yield core.fetcher({
|
|
125
|
+
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
126
|
+
.default, `v1/documents/${id}`),
|
|
127
|
+
method: "GET",
|
|
128
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
129
|
+
contentType: "application/json",
|
|
130
|
+
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
|
|
131
|
+
maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
|
|
132
|
+
});
|
|
133
|
+
if (_response.ok) {
|
|
134
|
+
return yield serializers.DocumentRead.parseOrThrow(_response.body, {
|
|
135
|
+
unrecognizedObjectKeys: "passthrough",
|
|
136
|
+
allowUnrecognizedUnionMembers: true,
|
|
137
|
+
allowUnrecognizedEnumValues: true,
|
|
138
|
+
breadcrumbsPrefix: ["response"],
|
|
139
|
+
});
|
|
140
|
+
}
|
|
141
|
+
if (_response.error.reason === "status-code") {
|
|
142
|
+
throw new errors.VellumError({
|
|
143
|
+
statusCode: _response.error.statusCode,
|
|
144
|
+
body: _response.error.body,
|
|
145
|
+
});
|
|
146
|
+
}
|
|
147
|
+
switch (_response.error.reason) {
|
|
148
|
+
case "non-json":
|
|
149
|
+
throw new errors.VellumError({
|
|
150
|
+
statusCode: _response.error.statusCode,
|
|
151
|
+
body: _response.error.rawBody,
|
|
152
|
+
});
|
|
153
|
+
case "timeout":
|
|
154
|
+
throw new errors.VellumTimeoutError();
|
|
155
|
+
case "unknown":
|
|
156
|
+
throw new errors.VellumError({
|
|
157
|
+
message: _response.error.errorMessage,
|
|
158
|
+
});
|
|
159
|
+
}
|
|
160
|
+
});
|
|
161
|
+
}
|
|
115
162
|
destroy(id, requestOptions) {
|
|
116
163
|
var _a;
|
|
117
164
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -119,7 +166,7 @@ class Documents {
|
|
|
119
166
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
120
167
|
.default, `v1/documents/${id}`),
|
|
121
168
|
method: "DELETE",
|
|
122
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
169
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
123
170
|
contentType: "application/json",
|
|
124
171
|
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
|
|
125
172
|
maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
|
|
@@ -161,7 +208,7 @@ class Documents {
|
|
|
161
208
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
162
209
|
.default, `v1/documents/${id}`),
|
|
163
210
|
method: "PATCH",
|
|
164
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
211
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
165
212
|
contentType: "application/json",
|
|
166
213
|
body: yield serializers.PatchedDocumentUpdateRequest.jsonOrThrow(request, {
|
|
167
214
|
unrecognizedObjectKeys: "strip",
|
|
@@ -240,7 +287,7 @@ class Documents {
|
|
|
240
287
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
241
288
|
.documents, "v1/upload-document"),
|
|
242
289
|
method: "POST",
|
|
243
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
290
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
244
291
|
contentType: "multipart/form-data; boundary=" + _request.getBoundary(),
|
|
245
292
|
body: _request,
|
|
246
293
|
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
|
|
@@ -65,7 +65,7 @@ class FolderEntities {
|
|
|
65
65
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
66
66
|
.default, `v1/folders/${folderId}/add-entity`),
|
|
67
67
|
method: "POST",
|
|
68
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
68
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
69
69
|
contentType: "application/json",
|
|
70
70
|
body: yield serializers.AddEntityToFolderRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
|
|
71
71
|
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
|
|
@@ -61,7 +61,7 @@ class ModelVersions {
|
|
|
61
61
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
62
62
|
.default, `v1/model-versions/${id}`),
|
|
63
63
|
method: "GET",
|
|
64
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
64
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
65
65
|
contentType: "application/json",
|
|
66
66
|
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
|
|
67
67
|
maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
|
|
@@ -32,12 +32,8 @@ export declare class RegisteredPrompts {
|
|
|
32
32
|
* name: "name",
|
|
33
33
|
* prompt: {
|
|
34
34
|
* promptBlockData: {
|
|
35
|
-
*
|
|
36
|
-
*
|
|
37
|
-
* id: "id",
|
|
38
|
-
* blockType: Vellum.BlockTypeEnum.ChatMessage,
|
|
39
|
-
* properties: {}
|
|
40
|
-
* }]
|
|
35
|
+
* blocks: [],
|
|
36
|
+
* version: 1
|
|
41
37
|
* },
|
|
42
38
|
* inputVariables: [{
|
|
43
39
|
* key: "key"
|
|
@@ -64,12 +64,8 @@ class RegisteredPrompts {
|
|
|
64
64
|
* name: "name",
|
|
65
65
|
* prompt: {
|
|
66
66
|
* promptBlockData: {
|
|
67
|
-
*
|
|
68
|
-
*
|
|
69
|
-
* id: "id",
|
|
70
|
-
* blockType: Vellum.BlockTypeEnum.ChatMessage,
|
|
71
|
-
* properties: {}
|
|
72
|
-
* }]
|
|
67
|
+
* blocks: [],
|
|
68
|
+
* version: 1
|
|
73
69
|
* },
|
|
74
70
|
* inputVariables: [{
|
|
75
71
|
* key: "key"
|
|
@@ -92,7 +88,7 @@ class RegisteredPrompts {
|
|
|
92
88
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
93
89
|
.default, "v1/registered-prompts/register"),
|
|
94
90
|
method: "POST",
|
|
95
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
91
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
96
92
|
contentType: "application/json",
|
|
97
93
|
body: yield serializers.RegisterPromptRequestRequest.jsonOrThrow(request, {
|
|
98
94
|
unrecognizedObjectKeys: "strip",
|
|
@@ -9,12 +9,8 @@ import * as Vellum from "../../../..";
|
|
|
9
9
|
* name: "name",
|
|
10
10
|
* prompt: {
|
|
11
11
|
* promptBlockData: {
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
* id: "id",
|
|
15
|
-
* blockType: Vellum.BlockTypeEnum.ChatMessage,
|
|
16
|
-
* properties: {}
|
|
17
|
-
* }]
|
|
12
|
+
* blocks: [],
|
|
13
|
+
* version: 1
|
|
18
14
|
* },
|
|
19
15
|
* inputVariables: [{
|
|
20
16
|
* key: "key"
|
|
@@ -29,15 +29,7 @@ export declare class Sandboxes {
|
|
|
29
29
|
* @example
|
|
30
30
|
* await vellum.sandboxes.upsertSandboxScenario("id", {
|
|
31
31
|
* label: "Scenario 1",
|
|
32
|
-
* inputs: [
|
|
33
|
-
* key: "var_1",
|
|
34
|
-
* type: Vellum.ScenarioInputTypeEnum.Text,
|
|
35
|
-
* value: "Hello, world!"
|
|
36
|
-
* }, {
|
|
37
|
-
* key: "var_2",
|
|
38
|
-
* type: Vellum.ScenarioInputTypeEnum.Text,
|
|
39
|
-
* value: "Why hello, there!"
|
|
40
|
-
* }]
|
|
32
|
+
* inputs: []
|
|
41
33
|
* })
|
|
42
34
|
*/
|
|
43
35
|
upsertSandboxScenario(id: string, request: Vellum.UpsertSandboxScenarioRequestRequest, requestOptions?: Sandboxes.RequestOptions): Promise<Vellum.SandboxScenario>;
|
|
@@ -60,15 +60,7 @@ class Sandboxes {
|
|
|
60
60
|
* @example
|
|
61
61
|
* await vellum.sandboxes.upsertSandboxScenario("id", {
|
|
62
62
|
* label: "Scenario 1",
|
|
63
|
-
* inputs: [
|
|
64
|
-
* key: "var_1",
|
|
65
|
-
* type: Vellum.ScenarioInputTypeEnum.Text,
|
|
66
|
-
* value: "Hello, world!"
|
|
67
|
-
* }, {
|
|
68
|
-
* key: "var_2",
|
|
69
|
-
* type: Vellum.ScenarioInputTypeEnum.Text,
|
|
70
|
-
* value: "Why hello, there!"
|
|
71
|
-
* }]
|
|
63
|
+
* inputs: []
|
|
72
64
|
* })
|
|
73
65
|
*/
|
|
74
66
|
upsertSandboxScenario(id, request, requestOptions) {
|
|
@@ -78,7 +70,7 @@ class Sandboxes {
|
|
|
78
70
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
79
71
|
.default, `v1/sandboxes/${id}/scenarios`),
|
|
80
72
|
method: "POST",
|
|
81
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
73
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
82
74
|
contentType: "application/json",
|
|
83
75
|
body: yield serializers.UpsertSandboxScenarioRequestRequest.jsonOrThrow(request, {
|
|
84
76
|
unrecognizedObjectKeys: "strip",
|
|
@@ -128,7 +120,7 @@ class Sandboxes {
|
|
|
128
120
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
129
121
|
.default, `v1/sandboxes/${id}/scenarios/${scenarioId}`),
|
|
130
122
|
method: "DELETE",
|
|
131
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
123
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
132
124
|
contentType: "application/json",
|
|
133
125
|
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
|
|
134
126
|
maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
|
|
@@ -6,21 +6,13 @@ import * as Vellum from "../../../..";
|
|
|
6
6
|
* @example
|
|
7
7
|
* {
|
|
8
8
|
* label: "Scenario 1",
|
|
9
|
-
* inputs: [
|
|
10
|
-
* key: "var_1",
|
|
11
|
-
* type: Vellum.ScenarioInputTypeEnum.Text,
|
|
12
|
-
* value: "Hello, world!"
|
|
13
|
-
* }, {
|
|
14
|
-
* key: "var_2",
|
|
15
|
-
* type: Vellum.ScenarioInputTypeEnum.Text,
|
|
16
|
-
* value: "Why hello, there!"
|
|
17
|
-
* }]
|
|
9
|
+
* inputs: []
|
|
18
10
|
* }
|
|
19
11
|
*/
|
|
20
12
|
export interface UpsertSandboxScenarioRequestRequest {
|
|
21
13
|
label?: string;
|
|
22
14
|
/** The inputs for the scenario */
|
|
23
|
-
inputs: Vellum.
|
|
15
|
+
inputs: Vellum.NamedScenarioInputRequest[];
|
|
24
16
|
/** The id of the scenario to update. If none is provided, an id will be generated and a new scenario will be appended. */
|
|
25
17
|
scenarioId?: string;
|
|
26
18
|
}
|
|
@@ -58,7 +58,7 @@ class TestSuiteRuns {
|
|
|
58
58
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
59
59
|
.default, "v1/test-suite-runs"),
|
|
60
60
|
method: "POST",
|
|
61
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
61
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
62
62
|
contentType: "application/json",
|
|
63
63
|
body: yield serializers.TestSuiteRunCreateRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
|
|
64
64
|
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
|
|
@@ -106,7 +106,7 @@ class TestSuiteRuns {
|
|
|
106
106
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
107
107
|
.default, `v1/test-suite-runs/${id}`),
|
|
108
108
|
method: "GET",
|
|
109
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
109
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
110
110
|
contentType: "application/json",
|
|
111
111
|
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
|
|
112
112
|
maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
|
|
@@ -163,7 +163,7 @@ class TestSuiteRuns {
|
|
|
163
163
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
164
164
|
.default, `v1/test-suite-runs/${id}/executions`),
|
|
165
165
|
method: "GET",
|
|
166
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
166
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
167
167
|
contentType: "application/json",
|
|
168
168
|
queryParameters: _queryParams,
|
|
169
169
|
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
|
|
@@ -69,7 +69,7 @@ class TestSuites {
|
|
|
69
69
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
70
70
|
.default, `v1/test-suites/${id}/test-cases`),
|
|
71
71
|
method: "GET",
|
|
72
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
72
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
73
73
|
contentType: "application/json",
|
|
74
74
|
queryParameters: _queryParams,
|
|
75
75
|
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
|
|
@@ -126,7 +126,7 @@ class TestSuites {
|
|
|
126
126
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
127
127
|
.default, `v1/test-suites/${id}/test-cases`),
|
|
128
128
|
method: "POST",
|
|
129
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
129
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
130
130
|
contentType: "application/json",
|
|
131
131
|
body: yield serializers.UpsertTestSuiteTestCaseRequest.jsonOrThrow(request, {
|
|
132
132
|
unrecognizedObjectKeys: "strip",
|
|
@@ -176,7 +176,7 @@ class TestSuites {
|
|
|
176
176
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
177
177
|
.default, `v1/test-suites/${id}/test-cases/${testCaseId}`),
|
|
178
178
|
method: "DELETE",
|
|
179
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
179
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
180
180
|
contentType: "application/json",
|
|
181
181
|
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
|
|
182
182
|
maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
|
|
@@ -69,7 +69,7 @@ class WorkflowDeployments {
|
|
|
69
69
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
70
70
|
.default, "v1/workflow-deployments"),
|
|
71
71
|
method: "GET",
|
|
72
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
72
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
73
73
|
contentType: "application/json",
|
|
74
74
|
queryParameters: _queryParams,
|
|
75
75
|
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
|
|
@@ -117,7 +117,7 @@ class WorkflowDeployments {
|
|
|
117
117
|
url: (0, url_join_1.default)(((_a = (yield core.Supplier.get(this._options.environment))) !== null && _a !== void 0 ? _a : environments.VellumEnvironment.Production)
|
|
118
118
|
.default, `v1/workflow-deployments/${id}`),
|
|
119
119
|
method: "GET",
|
|
120
|
-
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.
|
|
120
|
+
headers: Object.assign({ "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "vellum-ai", "X-Fern-SDK-Version": "0.4.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
|
|
121
121
|
contentType: "application/json",
|
|
122
122
|
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : undefined,
|
|
123
123
|
maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as Vellum from "..";
|
|
5
|
+
/**
|
|
6
|
+
* A block of that represents a chat history variable in a prompt template.
|
|
7
|
+
*/
|
|
8
|
+
export interface ChatHistoryPromptTemplateBlock {
|
|
9
|
+
properties: Record<string, unknown>;
|
|
10
|
+
id: string;
|
|
11
|
+
state?: Vellum.PromptTemplateBlockState;
|
|
12
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as Vellum from "..";
|
|
5
|
+
/**
|
|
6
|
+
* A block of that represents a chat history variable in a prompt template.
|
|
7
|
+
*/
|
|
8
|
+
export interface ChatHistoryPromptTemplateBlockRequest {
|
|
9
|
+
properties: Record<string, unknown>;
|
|
10
|
+
id: string;
|
|
11
|
+
state?: Vellum.PromptTemplateBlockState;
|
|
12
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as Vellum from "..";
|
|
5
|
+
/**
|
|
6
|
+
* A block of that represents a chat message in a prompt template.
|
|
7
|
+
*/
|
|
8
|
+
export interface ChatMessagePromptTemplateBlock {
|
|
9
|
+
properties: Vellum.ChatMessagePromptTemplateBlockProperties;
|
|
10
|
+
id: string;
|
|
11
|
+
state?: Vellum.PromptTemplateBlockState;
|
|
12
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as Vellum from "..";
|
|
5
|
+
/**
|
|
6
|
+
* The properties of a ChatMessagePromptTemplateBlock
|
|
7
|
+
*/
|
|
8
|
+
export interface ChatMessagePromptTemplateBlockProperties {
|
|
9
|
+
blocks: Vellum.PromptTemplateBlock[];
|
|
10
|
+
chatRole?: Vellum.ChatMessageRole;
|
|
11
|
+
chatSource?: string;
|
|
12
|
+
chatMessageUnterminated?: boolean;
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as Vellum from "..";
|
|
5
|
+
/**
|
|
6
|
+
* The properties of a ChatMessagePromptTemplateBlock
|
|
7
|
+
*/
|
|
8
|
+
export interface ChatMessagePromptTemplateBlockPropertiesRequest {
|
|
9
|
+
blocks: Vellum.PromptTemplateBlockRequest[];
|
|
10
|
+
chatRole?: Vellum.ChatMessageRole;
|
|
11
|
+
chatSource?: string;
|
|
12
|
+
chatMessageUnterminated?: boolean;
|
|
13
|
+
}
|