vellum-ai 0.2.2 → 0.3.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.
Files changed (238) hide show
  1. package/Client.d.ts +2 -13
  2. package/Client.js +11 -22
  3. package/api/client/requests/GenerateBodyRequest.d.ts +1 -8
  4. package/api/client/requests/SearchRequestBodyRequest.d.ts +0 -4
  5. package/api/client/requests/SubmitCompletionActualsRequest.d.ts +1 -1
  6. package/api/resources/deployments/client/Client.js +3 -3
  7. package/api/resources/deployments/client/requests/DeploymentsListRequest.d.ts +0 -3
  8. package/api/resources/documentIndexes/client/Client.d.ts +17 -3
  9. package/api/resources/documentIndexes/client/Client.js +19 -5
  10. package/api/resources/documentIndexes/client/requests/DocumentIndexCreateRequest.d.ts +17 -3
  11. package/api/resources/documents/client/Client.d.ts +8 -0
  12. package/api/resources/documents/client/Client.js +12 -4
  13. package/api/resources/modelVersions/client/Client.js +1 -1
  14. package/api/resources/registeredPrompts/client/Client.d.ts +2 -12
  15. package/api/resources/registeredPrompts/client/Client.js +3 -13
  16. package/api/resources/registeredPrompts/client/requests/RegisterPromptRequestRequest.d.ts +2 -12
  17. package/api/resources/sandboxes/client/Client.d.ts +8 -8
  18. package/api/resources/sandboxes/client/Client.js +10 -10
  19. package/api/resources/sandboxes/client/requests/UpsertSandboxScenarioRequestRequest.d.ts +8 -9
  20. package/api/resources/testSuites/client/Client.js +2 -2
  21. package/api/resources/workflowDeployments/client/Client.js +1 -1
  22. package/api/types/ApiNodeResult.d.ts +3 -0
  23. package/api/types/CodeExecutionNodeResult.d.ts +3 -0
  24. package/api/types/ConditionalNodeResult.d.ts +3 -0
  25. package/api/types/FulfilledWorkflowNodeResultEvent.d.ts +15 -0
  26. package/api/types/InitiatedWorkflowNodeResultEvent.d.ts +15 -0
  27. package/api/types/{ChatHistoryVariableValue.d.ts → NodeOutputCompiledChatHistoryValue.d.ts} +2 -1
  28. package/api/types/NodeOutputCompiledErrorValue.d.ts +8 -0
  29. package/api/types/NodeOutputCompiledJsonValue.d.ts +7 -0
  30. package/api/types/{NumberVariableValue.d.ts → NodeOutputCompiledNumberValue.d.ts} +2 -1
  31. package/api/types/{SearchResultsVariableValue.d.ts → NodeOutputCompiledSearchResultsValue.d.ts} +2 -1
  32. package/api/types/NodeOutputCompiledStringValue.d.ts +7 -0
  33. package/api/types/NodeOutputCompiledValue.d.ts +25 -0
  34. package/api/types/PromptNodeResult.d.ts +3 -0
  35. package/api/types/RejectedWorkflowNodeResultEvent.d.ts +15 -0
  36. package/api/types/SandboxScenario.d.ts +0 -1
  37. package/api/types/SearchNodeResult.d.ts +3 -0
  38. package/api/types/StreamingWorkflowNodeResultEvent.d.ts +16 -0
  39. package/api/types/TemplatingNodeResult.d.ts +3 -0
  40. package/api/types/TerminalNodeResult.d.ts +3 -0
  41. package/api/types/WorkflowExecutionNodeResultEvent.d.ts +3 -0
  42. package/api/types/WorkflowExecutionWorkflowResultEvent.d.ts +3 -0
  43. package/api/types/WorkflowNodeResultEvent.d.ts +14 -9
  44. package/api/types/WorkflowOutput.d.ts +1 -4
  45. package/api/types/WorkflowResultEventOutputDataChatHistory.d.ts +3 -0
  46. package/api/types/WorkflowResultEventOutputDataError.d.ts +3 -0
  47. package/api/types/WorkflowResultEventOutputDataJson.d.ts +3 -0
  48. package/api/types/WorkflowResultEventOutputDataNumber.d.ts +3 -0
  49. package/api/types/WorkflowResultEventOutputDataSearchResults.d.ts +3 -0
  50. package/api/types/WorkflowResultEventOutputDataString.d.ts +3 -0
  51. package/api/types/index.d.ts +11 -11
  52. package/api/types/index.js +11 -11
  53. package/dist/Client.d.ts +2 -13
  54. package/dist/Client.js +11 -22
  55. package/dist/api/client/requests/GenerateBodyRequest.d.ts +1 -8
  56. package/dist/api/client/requests/SearchRequestBodyRequest.d.ts +0 -4
  57. package/dist/api/client/requests/SubmitCompletionActualsRequest.d.ts +1 -1
  58. package/dist/api/resources/deployments/client/Client.js +3 -3
  59. package/dist/api/resources/deployments/client/requests/DeploymentsListRequest.d.ts +0 -3
  60. package/dist/api/resources/documentIndexes/client/Client.d.ts +17 -3
  61. package/dist/api/resources/documentIndexes/client/Client.js +19 -5
  62. package/dist/api/resources/documentIndexes/client/requests/DocumentIndexCreateRequest.d.ts +17 -3
  63. package/dist/api/resources/documents/client/Client.d.ts +8 -0
  64. package/dist/api/resources/documents/client/Client.js +12 -4
  65. package/dist/api/resources/modelVersions/client/Client.js +1 -1
  66. package/dist/api/resources/registeredPrompts/client/Client.d.ts +2 -12
  67. package/dist/api/resources/registeredPrompts/client/Client.js +3 -13
  68. package/dist/api/resources/registeredPrompts/client/requests/RegisterPromptRequestRequest.d.ts +2 -12
  69. package/dist/api/resources/sandboxes/client/Client.d.ts +8 -8
  70. package/dist/api/resources/sandboxes/client/Client.js +10 -10
  71. package/dist/api/resources/sandboxes/client/requests/UpsertSandboxScenarioRequestRequest.d.ts +8 -9
  72. package/dist/api/resources/testSuites/client/Client.js +2 -2
  73. package/dist/api/resources/workflowDeployments/client/Client.js +1 -1
  74. package/dist/api/types/ApiNodeResult.d.ts +3 -0
  75. package/dist/api/types/CodeExecutionNodeResult.d.ts +3 -0
  76. package/dist/api/types/ConditionalNodeResult.d.ts +3 -0
  77. package/dist/api/types/FulfilledWorkflowNodeResultEvent.d.ts +15 -0
  78. package/dist/api/types/InitiatedWorkflowNodeResultEvent.d.ts +15 -0
  79. package/dist/api/types/{ChatHistoryVariableValue.d.ts → NodeOutputCompiledChatHistoryValue.d.ts} +2 -1
  80. package/dist/api/types/NodeOutputCompiledErrorValue.d.ts +8 -0
  81. package/dist/api/types/NodeOutputCompiledJsonValue.d.ts +7 -0
  82. package/dist/api/types/{NumberVariableValue.d.ts → NodeOutputCompiledNumberValue.d.ts} +2 -1
  83. package/dist/api/types/{SearchResultsVariableValue.d.ts → NodeOutputCompiledSearchResultsValue.d.ts} +2 -1
  84. package/dist/api/types/NodeOutputCompiledStringValue.d.ts +7 -0
  85. package/dist/api/types/NodeOutputCompiledValue.d.ts +25 -0
  86. package/dist/api/types/PromptNodeResult.d.ts +3 -0
  87. package/dist/api/types/RejectedWorkflowNodeResultEvent.d.ts +15 -0
  88. package/dist/api/types/SandboxScenario.d.ts +0 -1
  89. package/dist/api/types/SearchNodeResult.d.ts +3 -0
  90. package/dist/api/types/StreamingWorkflowNodeResultEvent.d.ts +16 -0
  91. package/dist/api/types/TemplatingNodeResult.d.ts +3 -0
  92. package/dist/api/types/TerminalNodeResult.d.ts +3 -0
  93. package/dist/api/types/WorkflowExecutionNodeResultEvent.d.ts +3 -0
  94. package/dist/api/types/WorkflowExecutionWorkflowResultEvent.d.ts +3 -0
  95. package/dist/api/types/WorkflowNodeResultEvent.d.ts +14 -9
  96. package/dist/api/types/WorkflowOutput.d.ts +1 -4
  97. package/dist/api/types/WorkflowResultEventOutputDataChatHistory.d.ts +3 -0
  98. package/dist/api/types/WorkflowResultEventOutputDataError.d.ts +3 -0
  99. package/dist/api/types/WorkflowResultEventOutputDataJson.d.ts +3 -0
  100. package/dist/api/types/WorkflowResultEventOutputDataNumber.d.ts +3 -0
  101. package/dist/api/types/WorkflowResultEventOutputDataSearchResults.d.ts +3 -0
  102. package/dist/api/types/WorkflowResultEventOutputDataString.d.ts +3 -0
  103. package/dist/api/types/index.d.ts +11 -11
  104. package/dist/api/types/index.js +11 -11
  105. package/dist/serialization/resources/sandboxes/client/requests/UpsertSandboxScenarioRequestRequest.d.ts +0 -1
  106. package/dist/serialization/resources/sandboxes/client/requests/UpsertSandboxScenarioRequestRequest.js +0 -3
  107. package/dist/serialization/types/FulfilledWorkflowNodeResultEvent.d.ts +17 -0
  108. package/dist/serialization/types/FulfilledWorkflowNodeResultEvent.js +49 -0
  109. package/dist/serialization/types/InitiatedWorkflowNodeResultEvent.d.ts +17 -0
  110. package/dist/serialization/types/InitiatedWorkflowNodeResultEvent.js +49 -0
  111. package/dist/serialization/types/NodeOutputCompiledChatHistoryValue.d.ts +13 -0
  112. package/{serialization/types/ChatHistoryVariableValue.js → dist/serialization/types/NodeOutputCompiledChatHistoryValue.js} +3 -2
  113. package/dist/serialization/types/NodeOutputCompiledErrorValue.d.ts +13 -0
  114. package/dist/serialization/types/{SandboxMetricInputParams.js → NodeOutputCompiledErrorValue.js} +4 -3
  115. package/dist/serialization/types/NodeOutputCompiledJsonValue.d.ts +13 -0
  116. package/{serialization/types/EvaluationParams.js → dist/serialization/types/NodeOutputCompiledJsonValue.js} +4 -3
  117. package/dist/serialization/types/NodeOutputCompiledNumberValue.d.ts +13 -0
  118. package/{serialization/types/NumberVariableValue.js → dist/serialization/types/NodeOutputCompiledNumberValue.js} +3 -2
  119. package/dist/serialization/types/NodeOutputCompiledSearchResultsValue.d.ts +13 -0
  120. package/dist/serialization/types/{SearchResultsVariableValue.js → NodeOutputCompiledSearchResultsValue.js} +3 -2
  121. package/dist/serialization/types/NodeOutputCompiledStringValue.d.ts +13 -0
  122. package/dist/serialization/types/{EvaluationParamsRequest.js → NodeOutputCompiledStringValue.js} +4 -3
  123. package/dist/serialization/types/NodeOutputCompiledValue.d.ts +28 -0
  124. package/dist/serialization/types/{VariableValue.js → NodeOutputCompiledValue.js} +8 -10
  125. package/dist/serialization/types/RejectedWorkflowNodeResultEvent.d.ts +17 -0
  126. package/dist/serialization/types/{WorkflowOutputArray.js → RejectedWorkflowNodeResultEvent.js} +7 -4
  127. package/dist/serialization/types/SandboxScenario.d.ts +0 -1
  128. package/dist/serialization/types/SandboxScenario.js +0 -1
  129. package/dist/serialization/types/StreamingWorkflowNodeResultEvent.d.ts +18 -0
  130. package/dist/serialization/types/StreamingWorkflowNodeResultEvent.js +48 -0
  131. package/dist/serialization/types/WorkflowExecutionNodeResultEvent.js +1 -1
  132. package/dist/serialization/types/WorkflowNodeResultEvent.d.ts +13 -10
  133. package/dist/serialization/types/WorkflowNodeResultEvent.js +10 -11
  134. package/dist/serialization/types/WorkflowOutput.d.ts +1 -4
  135. package/dist/serialization/types/WorkflowOutput.js +0 -1
  136. package/dist/serialization/types/index.d.ts +11 -11
  137. package/dist/serialization/types/index.js +11 -11
  138. package/package.json +1 -1
  139. package/serialization/resources/sandboxes/client/requests/UpsertSandboxScenarioRequestRequest.d.ts +0 -1
  140. package/serialization/resources/sandboxes/client/requests/UpsertSandboxScenarioRequestRequest.js +0 -3
  141. package/serialization/types/FulfilledWorkflowNodeResultEvent.d.ts +17 -0
  142. package/serialization/types/FulfilledWorkflowNodeResultEvent.js +49 -0
  143. package/serialization/types/InitiatedWorkflowNodeResultEvent.d.ts +17 -0
  144. package/serialization/types/InitiatedWorkflowNodeResultEvent.js +49 -0
  145. package/serialization/types/NodeOutputCompiledChatHistoryValue.d.ts +13 -0
  146. package/{dist/serialization/types/ChatHistoryVariableValue.js → serialization/types/NodeOutputCompiledChatHistoryValue.js} +3 -2
  147. package/serialization/types/NodeOutputCompiledErrorValue.d.ts +13 -0
  148. package/{dist/serialization/types/SandboxMetricInputParamsRequest.js → serialization/types/NodeOutputCompiledErrorValue.js} +4 -3
  149. package/serialization/types/NodeOutputCompiledJsonValue.d.ts +13 -0
  150. package/serialization/types/NodeOutputCompiledJsonValue.js +34 -0
  151. package/serialization/types/NodeOutputCompiledNumberValue.d.ts +13 -0
  152. package/{dist/serialization/types/NumberVariableValue.js → serialization/types/NodeOutputCompiledNumberValue.js} +3 -2
  153. package/serialization/types/NodeOutputCompiledSearchResultsValue.d.ts +13 -0
  154. package/serialization/types/{SearchResultsVariableValue.js → NodeOutputCompiledSearchResultsValue.js} +3 -2
  155. package/serialization/types/NodeOutputCompiledStringValue.d.ts +13 -0
  156. package/{dist/serialization/types/EvaluationParams.js → serialization/types/NodeOutputCompiledStringValue.js} +4 -3
  157. package/serialization/types/NodeOutputCompiledValue.d.ts +28 -0
  158. package/serialization/types/{VariableValue.js → NodeOutputCompiledValue.js} +8 -10
  159. package/serialization/types/RejectedWorkflowNodeResultEvent.d.ts +17 -0
  160. package/serialization/types/{WorkflowOutputArray.js → RejectedWorkflowNodeResultEvent.js} +7 -4
  161. package/serialization/types/SandboxScenario.d.ts +0 -1
  162. package/serialization/types/SandboxScenario.js +0 -1
  163. package/serialization/types/StreamingWorkflowNodeResultEvent.d.ts +18 -0
  164. package/serialization/types/StreamingWorkflowNodeResultEvent.js +48 -0
  165. package/serialization/types/WorkflowExecutionNodeResultEvent.js +1 -1
  166. package/serialization/types/WorkflowNodeResultEvent.d.ts +13 -10
  167. package/serialization/types/WorkflowNodeResultEvent.js +10 -11
  168. package/serialization/types/WorkflowOutput.d.ts +1 -4
  169. package/serialization/types/WorkflowOutput.js +0 -1
  170. package/serialization/types/index.d.ts +11 -11
  171. package/serialization/types/index.js +11 -11
  172. package/api/types/ArrayEnum.d.ts +0 -4
  173. package/api/types/ArrayVariableValue.d.ts +0 -7
  174. package/api/types/EvaluationParams.d.ts +0 -7
  175. package/api/types/EvaluationParamsRequest.d.ts +0 -7
  176. package/api/types/SandboxMetricInputParams.d.ts +0 -7
  177. package/api/types/SandboxMetricInputParamsRequest.d.ts +0 -7
  178. package/api/types/VariableValue.d.ts +0 -31
  179. package/api/types/WorkflowOutputArray.d.ts +0 -13
  180. package/dist/api/types/ArrayEnum.d.ts +0 -4
  181. package/dist/api/types/ArrayVariableValue.d.ts +0 -7
  182. package/dist/api/types/EvaluationParams.d.ts +0 -7
  183. package/dist/api/types/EvaluationParamsRequest.d.ts +0 -7
  184. package/dist/api/types/SandboxMetricInputParams.d.ts +0 -7
  185. package/dist/api/types/SandboxMetricInputParamsRequest.d.ts +0 -7
  186. package/dist/api/types/VariableValue.d.ts +0 -31
  187. package/dist/api/types/WorkflowOutputArray.d.ts +0 -13
  188. package/dist/serialization/types/ArrayEnum.d.ts +0 -10
  189. package/dist/serialization/types/ArrayEnum.js +0 -31
  190. package/dist/serialization/types/ArrayVariableValue.d.ts +0 -12
  191. package/dist/serialization/types/ArrayVariableValue.js +0 -42
  192. package/dist/serialization/types/ChatHistoryVariableValue.d.ts +0 -12
  193. package/dist/serialization/types/EvaluationParams.d.ts +0 -12
  194. package/dist/serialization/types/EvaluationParamsRequest.d.ts +0 -12
  195. package/dist/serialization/types/NumberVariableValue.d.ts +0 -12
  196. package/dist/serialization/types/SandboxMetricInputParams.d.ts +0 -12
  197. package/dist/serialization/types/SandboxMetricInputParamsRequest.d.ts +0 -12
  198. package/dist/serialization/types/SearchResultsVariableValue.d.ts +0 -12
  199. package/dist/serialization/types/VariableValue.d.ts +0 -34
  200. package/dist/serialization/types/WorkflowOutputArray.d.ts +0 -14
  201. package/serialization/types/ArrayEnum.d.ts +0 -10
  202. package/serialization/types/ArrayEnum.js +0 -31
  203. package/serialization/types/ArrayVariableValue.d.ts +0 -12
  204. package/serialization/types/ArrayVariableValue.js +0 -42
  205. package/serialization/types/ChatHistoryVariableValue.d.ts +0 -12
  206. package/serialization/types/EvaluationParams.d.ts +0 -12
  207. package/serialization/types/EvaluationParamsRequest.d.ts +0 -12
  208. package/serialization/types/EvaluationParamsRequest.js +0 -33
  209. package/serialization/types/NumberVariableValue.d.ts +0 -12
  210. package/serialization/types/SandboxMetricInputParams.d.ts +0 -12
  211. package/serialization/types/SandboxMetricInputParams.js +0 -42
  212. package/serialization/types/SandboxMetricInputParamsRequest.d.ts +0 -12
  213. package/serialization/types/SandboxMetricInputParamsRequest.js +0 -42
  214. package/serialization/types/SearchResultsVariableValue.d.ts +0 -12
  215. package/serialization/types/VariableValue.d.ts +0 -34
  216. package/serialization/types/WorkflowOutputArray.d.ts +0 -14
  217. /package/api/types/{ArrayEnum.js → FulfilledWorkflowNodeResultEvent.js} +0 -0
  218. /package/api/types/{ArrayVariableValue.js → InitiatedWorkflowNodeResultEvent.js} +0 -0
  219. /package/api/types/{ChatHistoryVariableValue.js → NodeOutputCompiledChatHistoryValue.js} +0 -0
  220. /package/api/types/{EvaluationParams.js → NodeOutputCompiledErrorValue.js} +0 -0
  221. /package/api/types/{EvaluationParamsRequest.js → NodeOutputCompiledJsonValue.js} +0 -0
  222. /package/api/types/{NumberVariableValue.js → NodeOutputCompiledNumberValue.js} +0 -0
  223. /package/api/types/{SandboxMetricInputParams.js → NodeOutputCompiledSearchResultsValue.js} +0 -0
  224. /package/api/types/{SandboxMetricInputParamsRequest.js → NodeOutputCompiledStringValue.js} +0 -0
  225. /package/api/types/{SearchResultsVariableValue.js → NodeOutputCompiledValue.js} +0 -0
  226. /package/api/types/{VariableValue.js → RejectedWorkflowNodeResultEvent.js} +0 -0
  227. /package/api/types/{WorkflowOutputArray.js → StreamingWorkflowNodeResultEvent.js} +0 -0
  228. /package/dist/api/types/{ArrayEnum.js → FulfilledWorkflowNodeResultEvent.js} +0 -0
  229. /package/dist/api/types/{ArrayVariableValue.js → InitiatedWorkflowNodeResultEvent.js} +0 -0
  230. /package/dist/api/types/{ChatHistoryVariableValue.js → NodeOutputCompiledChatHistoryValue.js} +0 -0
  231. /package/dist/api/types/{EvaluationParams.js → NodeOutputCompiledErrorValue.js} +0 -0
  232. /package/dist/api/types/{EvaluationParamsRequest.js → NodeOutputCompiledJsonValue.js} +0 -0
  233. /package/dist/api/types/{NumberVariableValue.js → NodeOutputCompiledNumberValue.js} +0 -0
  234. /package/dist/api/types/{SandboxMetricInputParams.js → NodeOutputCompiledSearchResultsValue.js} +0 -0
  235. /package/dist/api/types/{SandboxMetricInputParamsRequest.js → NodeOutputCompiledStringValue.js} +0 -0
  236. /package/dist/api/types/{SearchResultsVariableValue.js → NodeOutputCompiledValue.js} +0 -0
  237. /package/dist/api/types/{VariableValue.js → RejectedWorkflowNodeResultEvent.js} +0 -0
  238. /package/dist/api/types/{WorkflowOutputArray.js → StreamingWorkflowNodeResultEvent.js} +0 -0
@@ -2,6 +2,9 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  import * as Vellum from "..";
5
+ /**
6
+ * A Node Result Event emitted from a Conditional Node.
7
+ */
5
8
  export interface ConditionalNodeResult {
6
9
  data: Vellum.ConditionalNodeResultData;
7
10
  }
@@ -0,0 +1,15 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Vellum from "..";
5
+ /**
6
+ * An event that indicates that the node has fulfilled its execution.
7
+ */
8
+ export interface FulfilledWorkflowNodeResultEvent {
9
+ id: string;
10
+ nodeId: string;
11
+ nodeResultId: string;
12
+ ts?: Date;
13
+ data?: Vellum.WorkflowNodeResultData;
14
+ outputValues?: Vellum.NodeOutputCompiledValue[];
15
+ }
@@ -0,0 +1,15 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Vellum from "..";
5
+ /**
6
+ * An event that indicates that the node has initiated its execution.
7
+ */
8
+ export interface InitiatedWorkflowNodeResultEvent {
9
+ id: string;
10
+ nodeId: string;
11
+ nodeResultId: string;
12
+ ts?: Date;
13
+ data?: Vellum.WorkflowNodeResultData;
14
+ inputValues?: Vellum.NodeInputVariableCompiledValue[];
15
+ }
@@ -2,6 +2,7 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  import * as Vellum from "..";
5
- export interface ChatHistoryVariableValue {
5
+ export interface NodeOutputCompiledChatHistoryValue {
6
+ nodeOutputId: string;
6
7
  value?: Vellum.ChatMessage[];
7
8
  }
@@ -0,0 +1,8 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Vellum from "..";
5
+ export interface NodeOutputCompiledErrorValue {
6
+ nodeOutputId: string;
7
+ value?: Vellum.VellumError;
8
+ }
@@ -0,0 +1,7 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export interface NodeOutputCompiledJsonValue {
5
+ nodeOutputId: string;
6
+ value?: Record<string, unknown>;
7
+ }
@@ -1,6 +1,7 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
- export interface NumberVariableValue {
4
+ export interface NodeOutputCompiledNumberValue {
5
+ nodeOutputId: string;
5
6
  value?: number;
6
7
  }
@@ -2,6 +2,7 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  import * as Vellum from "..";
5
- export interface SearchResultsVariableValue {
5
+ export interface NodeOutputCompiledSearchResultsValue {
6
+ nodeOutputId: string;
6
7
  value?: Vellum.SearchResult[];
7
8
  }
@@ -0,0 +1,7 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export interface NodeOutputCompiledStringValue {
5
+ nodeOutputId: string;
6
+ value?: string;
7
+ }
@@ -0,0 +1,25 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Vellum from "..";
5
+ export declare type NodeOutputCompiledValue = Vellum.NodeOutputCompiledValue.String | Vellum.NodeOutputCompiledValue.Number | Vellum.NodeOutputCompiledValue.Json | Vellum.NodeOutputCompiledValue.ChatHistory | Vellum.NodeOutputCompiledValue.SearchResults | Vellum.NodeOutputCompiledValue.Error_;
6
+ export declare namespace NodeOutputCompiledValue {
7
+ interface String extends Vellum.NodeOutputCompiledStringValue {
8
+ type: "STRING";
9
+ }
10
+ interface Number extends Vellum.NodeOutputCompiledNumberValue {
11
+ type: "NUMBER";
12
+ }
13
+ interface Json extends Vellum.NodeOutputCompiledJsonValue {
14
+ type: "JSON";
15
+ }
16
+ interface ChatHistory extends Vellum.NodeOutputCompiledChatHistoryValue {
17
+ type: "CHAT_HISTORY";
18
+ }
19
+ interface SearchResults extends Vellum.NodeOutputCompiledSearchResultsValue {
20
+ type: "SEARCH_RESULTS";
21
+ }
22
+ interface Error_ extends Vellum.NodeOutputCompiledErrorValue {
23
+ type: "ERROR";
24
+ }
25
+ }
@@ -2,6 +2,9 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  import * as Vellum from "..";
5
+ /**
6
+ * A Node Result Event emitted from a Prompt Node.
7
+ */
5
8
  export interface PromptNodeResult {
6
9
  data: Vellum.PromptNodeResultData;
7
10
  }
@@ -0,0 +1,15 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Vellum from "..";
5
+ /**
6
+ * An event that indicates that the node has rejected its execution.
7
+ */
8
+ export interface RejectedWorkflowNodeResultEvent {
9
+ id: string;
10
+ nodeId: string;
11
+ nodeResultId: string;
12
+ ts?: Date;
13
+ data?: Vellum.WorkflowNodeResultData;
14
+ error: Vellum.WorkflowEventError;
15
+ }
@@ -8,5 +8,4 @@ export interface SandboxScenario {
8
8
  inputs: Vellum.ScenarioInput[];
9
9
  /** The id of the scenario */
10
10
  id: string;
11
- metricInputParams: Vellum.SandboxMetricInputParams;
12
11
  }
@@ -2,6 +2,9 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  import * as Vellum from "..";
5
+ /**
6
+ * A Node Result Event emitted from a Search Node.
7
+ */
5
8
  export interface SearchNodeResult {
6
9
  data: Vellum.SearchNodeResultData;
7
10
  }
@@ -0,0 +1,16 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Vellum from "..";
5
+ /**
6
+ * An event that indicates that the node has execution is in progress.
7
+ */
8
+ export interface StreamingWorkflowNodeResultEvent {
9
+ id: string;
10
+ nodeId: string;
11
+ nodeResultId: string;
12
+ ts?: Date;
13
+ data?: Vellum.WorkflowNodeResultData;
14
+ output?: Vellum.NodeOutputCompiledValue;
15
+ outputIndex?: number;
16
+ }
@@ -2,6 +2,9 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  import * as Vellum from "..";
5
+ /**
6
+ * A Node Result Event emitted from a Templating Node.
7
+ */
5
8
  export interface TemplatingNodeResult {
6
9
  data: Vellum.TemplatingNodeResultData;
7
10
  }
@@ -2,6 +2,9 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  import * as Vellum from "..";
5
+ /**
6
+ * A Node Result Event emitted from a Terminal Node.
7
+ */
5
8
  export interface TerminalNodeResult {
6
9
  data: Vellum.TerminalNodeResultData;
7
10
  }
@@ -2,6 +2,9 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  import * as Vellum from "..";
5
+ /**
6
+ * A NODE-level event emitted from the workflow's execution.
7
+ */
5
8
  export interface WorkflowExecutionNodeResultEvent {
6
9
  executionId: string;
7
10
  runId?: string;
@@ -2,6 +2,9 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  import * as Vellum from "..";
5
+ /**
6
+ * A WORKFLOW-level event emitted from the workflow's execution.
7
+ */
5
8
  export interface WorkflowExecutionWorkflowResultEvent {
6
9
  executionId: string;
7
10
  runId?: string;
@@ -2,13 +2,18 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  import * as Vellum from "..";
5
- export interface WorkflowNodeResultEvent {
6
- id: string;
7
- nodeId: string;
8
- nodeResultId: string;
9
- state: Vellum.WorkflowNodeResultEventState;
10
- ts?: Date;
11
- data?: Vellum.WorkflowNodeResultData;
12
- error?: Vellum.WorkflowEventError;
13
- inputValues?: Vellum.NodeInputVariableCompiledValue[];
5
+ export declare type WorkflowNodeResultEvent = Vellum.WorkflowNodeResultEvent.Initiated | Vellum.WorkflowNodeResultEvent.Streaming | Vellum.WorkflowNodeResultEvent.Fulfilled | Vellum.WorkflowNodeResultEvent.Rejected;
6
+ export declare namespace WorkflowNodeResultEvent {
7
+ interface Initiated extends Vellum.InitiatedWorkflowNodeResultEvent {
8
+ state: "INITIATED";
9
+ }
10
+ interface Streaming extends Vellum.StreamingWorkflowNodeResultEvent {
11
+ state: "STREAMING";
12
+ }
13
+ interface Fulfilled extends Vellum.FulfilledWorkflowNodeResultEvent {
14
+ state: "FULFILLED";
15
+ }
16
+ interface Rejected extends Vellum.RejectedWorkflowNodeResultEvent {
17
+ state: "REJECTED";
18
+ }
14
19
  }
@@ -2,7 +2,7 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  import * as Vellum from "..";
5
- export declare type WorkflowOutput = Vellum.WorkflowOutput.String | Vellum.WorkflowOutput.Number | Vellum.WorkflowOutput.Json | Vellum.WorkflowOutput.ChatHistory | Vellum.WorkflowOutput.SearchResults | Vellum.WorkflowOutput.Error_ | Vellum.WorkflowOutput.Array | Vellum.WorkflowOutput.FunctionCall | Vellum.WorkflowOutput.Image;
5
+ export declare type WorkflowOutput = Vellum.WorkflowOutput.String | Vellum.WorkflowOutput.Number | Vellum.WorkflowOutput.Json | Vellum.WorkflowOutput.ChatHistory | Vellum.WorkflowOutput.SearchResults | Vellum.WorkflowOutput.Error_ | Vellum.WorkflowOutput.FunctionCall | Vellum.WorkflowOutput.Image;
6
6
  export declare namespace WorkflowOutput {
7
7
  interface String extends Vellum.WorkflowOutputString {
8
8
  type: "STRING";
@@ -22,9 +22,6 @@ export declare namespace WorkflowOutput {
22
22
  interface Error_ extends Vellum.WorkflowOutputError {
23
23
  type: "ERROR";
24
24
  }
25
- interface Array extends Vellum.WorkflowOutputArray {
26
- type: "ARRAY";
27
- }
28
25
  interface FunctionCall extends Vellum.WorkflowOutputFunctionCall {
29
26
  type: "FUNCTION_CALL";
30
27
  }
@@ -2,6 +2,9 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  import * as Vellum from "..";
5
+ /**
6
+ * A Chat History output streamed from a Workflow execution.
7
+ */
5
8
  export interface WorkflowResultEventOutputDataChatHistory {
6
9
  id?: string;
7
10
  name: string;
@@ -2,6 +2,9 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  import * as Vellum from "..";
5
+ /**
6
+ * An Error output streamed from a Workflow execution.
7
+ */
5
8
  export interface WorkflowResultEventOutputDataError {
6
9
  id?: string;
7
10
  name: string;
@@ -2,6 +2,9 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  import * as Vellum from "..";
5
+ /**
6
+ * A JSON output streamed from a Workflow execution.
7
+ */
5
8
  export interface WorkflowResultEventOutputDataJson {
6
9
  id?: string;
7
10
  name: string;
@@ -2,6 +2,9 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  import * as Vellum from "..";
5
+ /**
6
+ * A number output streamed from a Workflow execution.
7
+ */
5
8
  export interface WorkflowResultEventOutputDataNumber {
6
9
  id?: string;
7
10
  name: string;
@@ -2,6 +2,9 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  import * as Vellum from "..";
5
+ /**
6
+ * A Search Results output streamed from a Workflow execution.
7
+ */
5
8
  export interface WorkflowResultEventOutputDataSearchResults {
6
9
  id?: string;
7
10
  name: string;
@@ -2,6 +2,9 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  import * as Vellum from "..";
5
+ /**
6
+ * A string output streamed from a Workflow execution.
7
+ */
5
8
  export interface WorkflowResultEventOutputDataString {
6
9
  id?: string;
7
10
  name: string;
@@ -4,12 +4,9 @@ export * from "./ArrayChatMessageContent";
4
4
  export * from "./ArrayChatMessageContentItem";
5
5
  export * from "./ArrayChatMessageContentItemRequest";
6
6
  export * from "./ArrayChatMessageContentRequest";
7
- export * from "./ArrayEnum";
8
- export * from "./ArrayVariableValue";
9
7
  export * from "./BlockTypeEnum";
10
8
  export * from "./ChatHistoryEnum";
11
9
  export * from "./ChatHistoryInputRequest";
12
- export * from "./ChatHistoryVariableValue";
13
10
  export * from "./ChatMessage";
14
11
  export * from "./ChatMessageContent";
15
12
  export * from "./ChatMessageContentRequest";
@@ -37,8 +34,6 @@ export * from "./EntityStatus";
37
34
  export * from "./EnvironmentEnum";
38
35
  export * from "./ErrorEnum";
39
36
  export * from "./ErrorVariableValue";
40
- export * from "./EvaluationParams";
41
- export * from "./EvaluationParamsRequest";
42
37
  export * from "./ExecutePromptApiErrorResponse";
43
38
  export * from "./ExecutePromptEvent";
44
39
  export * from "./ExecutePromptResponse";
@@ -53,6 +48,7 @@ export * from "./FulfilledExecutePromptResponse";
53
48
  export * from "./FulfilledExecuteWorkflowWorkflowResultEvent";
54
49
  export * from "./FulfilledFunctionCall";
55
50
  export * from "./FulfilledPromptExecutionMeta";
51
+ export * from "./FulfilledWorkflowNodeResultEvent";
56
52
  export * from "./FunctionCall";
57
53
  export * from "./FunctionCallChatMessageContent";
58
54
  export * from "./FunctionCallChatMessageContentRequest";
@@ -77,6 +73,7 @@ export * from "./IndexingStateEnum";
77
73
  export * from "./InitiatedEnum";
78
74
  export * from "./InitiatedExecutePromptEvent";
79
75
  export * from "./InitiatedPromptExecutionMeta";
76
+ export * from "./InitiatedWorkflowNodeResultEvent";
80
77
  export * from "./JsonInputRequest";
81
78
  export * from "./JsonEnum";
82
79
  export * from "./JsonVariableValue";
@@ -105,10 +102,16 @@ export * from "./NodeInputCompiledNumberValue";
105
102
  export * from "./NodeInputCompiledSearchResultsValue";
106
103
  export * from "./NodeInputCompiledStringValue";
107
104
  export * from "./NodeInputVariableCompiledValue";
105
+ export * from "./NodeOutputCompiledChatHistoryValue";
106
+ export * from "./NodeOutputCompiledErrorValue";
107
+ export * from "./NodeOutputCompiledJsonValue";
108
+ export * from "./NodeOutputCompiledNumberValue";
109
+ export * from "./NodeOutputCompiledSearchResultsValue";
110
+ export * from "./NodeOutputCompiledStringValue";
111
+ export * from "./NodeOutputCompiledValue";
108
112
  export * from "./NormalizedLogProbs";
109
113
  export * from "./NormalizedTokenLogProbs";
110
114
  export * from "./NumberEnum";
111
- export * from "./NumberVariableValue";
112
115
  export * from "./PaginatedSlimDeploymentReadList";
113
116
  export * from "./PaginatedSlimDocumentList";
114
117
  export * from "./PaginatedSlimWorkflowDeploymentList";
@@ -144,8 +147,7 @@ export * from "./RejectedExecutePromptResponse";
144
147
  export * from "./RejectedExecuteWorkflowWorkflowResultEvent";
145
148
  export * from "./RejectedFunctionCall";
146
149
  export * from "./RejectedPromptExecutionMeta";
147
- export * from "./SandboxMetricInputParams";
148
- export * from "./SandboxMetricInputParamsRequest";
150
+ export * from "./RejectedWorkflowNodeResultEvent";
149
151
  export * from "./SandboxScenario";
150
152
  export * from "./ScenarioInput";
151
153
  export * from "./ScenarioInputRequest";
@@ -162,7 +164,6 @@ export * from "./SearchResultDocumentRequest";
162
164
  export * from "./SearchResultMergingRequest";
163
165
  export * from "./SearchResultRequest";
164
166
  export * from "./SearchResultsEnum";
165
- export * from "./SearchResultsVariableValue";
166
167
  export * from "./SearchWeightsRequest";
167
168
  export * from "./SlimDeploymentRead";
168
169
  export * from "./SlimDocument";
@@ -170,6 +171,7 @@ export * from "./SlimWorkflowDeployment";
170
171
  export * from "./StreamingEnum";
171
172
  export * from "./StreamingExecutePromptEvent";
172
173
  export * from "./StreamingPromptExecutionMeta";
174
+ export * from "./StreamingWorkflowNodeResultEvent";
173
175
  export * from "./StringChatMessageContent";
174
176
  export * from "./StringChatMessageContentRequest";
175
177
  export * from "./StringEnum";
@@ -206,7 +208,6 @@ export * from "./TestCaseVariableValue";
206
208
  export * from "./TestSuiteTestCase";
207
209
  export * from "./UploadDocumentErrorResponse";
208
210
  export * from "./UploadDocumentResponse";
209
- export * from "./VariableValue";
210
211
  export * from "./VellumError";
211
212
  export * from "./VellumErrorCodeEnum";
212
213
  export * from "./VellumErrorRequest";
@@ -226,7 +227,6 @@ export * from "./WorkflowNodeResultData";
226
227
  export * from "./WorkflowNodeResultEvent";
227
228
  export * from "./WorkflowNodeResultEventState";
228
229
  export * from "./WorkflowOutput";
229
- export * from "./WorkflowOutputArray";
230
230
  export * from "./WorkflowOutputChatHistory";
231
231
  export * from "./WorkflowOutputError";
232
232
  export * from "./WorkflowOutputFunctionCall";
@@ -20,12 +20,9 @@ __exportStar(require("./ArrayChatMessageContent"), exports);
20
20
  __exportStar(require("./ArrayChatMessageContentItem"), exports);
21
21
  __exportStar(require("./ArrayChatMessageContentItemRequest"), exports);
22
22
  __exportStar(require("./ArrayChatMessageContentRequest"), exports);
23
- __exportStar(require("./ArrayEnum"), exports);
24
- __exportStar(require("./ArrayVariableValue"), exports);
25
23
  __exportStar(require("./BlockTypeEnum"), exports);
26
24
  __exportStar(require("./ChatHistoryEnum"), exports);
27
25
  __exportStar(require("./ChatHistoryInputRequest"), exports);
28
- __exportStar(require("./ChatHistoryVariableValue"), exports);
29
26
  __exportStar(require("./ChatMessage"), exports);
30
27
  __exportStar(require("./ChatMessageContent"), exports);
31
28
  __exportStar(require("./ChatMessageContentRequest"), exports);
@@ -53,8 +50,6 @@ __exportStar(require("./EntityStatus"), exports);
53
50
  __exportStar(require("./EnvironmentEnum"), exports);
54
51
  __exportStar(require("./ErrorEnum"), exports);
55
52
  __exportStar(require("./ErrorVariableValue"), exports);
56
- __exportStar(require("./EvaluationParams"), exports);
57
- __exportStar(require("./EvaluationParamsRequest"), exports);
58
53
  __exportStar(require("./ExecutePromptApiErrorResponse"), exports);
59
54
  __exportStar(require("./ExecutePromptEvent"), exports);
60
55
  __exportStar(require("./ExecutePromptResponse"), exports);
@@ -69,6 +64,7 @@ __exportStar(require("./FulfilledExecutePromptResponse"), exports);
69
64
  __exportStar(require("./FulfilledExecuteWorkflowWorkflowResultEvent"), exports);
70
65
  __exportStar(require("./FulfilledFunctionCall"), exports);
71
66
  __exportStar(require("./FulfilledPromptExecutionMeta"), exports);
67
+ __exportStar(require("./FulfilledWorkflowNodeResultEvent"), exports);
72
68
  __exportStar(require("./FunctionCall"), exports);
73
69
  __exportStar(require("./FunctionCallChatMessageContent"), exports);
74
70
  __exportStar(require("./FunctionCallChatMessageContentRequest"), exports);
@@ -93,6 +89,7 @@ __exportStar(require("./IndexingStateEnum"), exports);
93
89
  __exportStar(require("./InitiatedEnum"), exports);
94
90
  __exportStar(require("./InitiatedExecutePromptEvent"), exports);
95
91
  __exportStar(require("./InitiatedPromptExecutionMeta"), exports);
92
+ __exportStar(require("./InitiatedWorkflowNodeResultEvent"), exports);
96
93
  __exportStar(require("./JsonInputRequest"), exports);
97
94
  __exportStar(require("./JsonEnum"), exports);
98
95
  __exportStar(require("./JsonVariableValue"), exports);
@@ -121,10 +118,16 @@ __exportStar(require("./NodeInputCompiledNumberValue"), exports);
121
118
  __exportStar(require("./NodeInputCompiledSearchResultsValue"), exports);
122
119
  __exportStar(require("./NodeInputCompiledStringValue"), exports);
123
120
  __exportStar(require("./NodeInputVariableCompiledValue"), exports);
121
+ __exportStar(require("./NodeOutputCompiledChatHistoryValue"), exports);
122
+ __exportStar(require("./NodeOutputCompiledErrorValue"), exports);
123
+ __exportStar(require("./NodeOutputCompiledJsonValue"), exports);
124
+ __exportStar(require("./NodeOutputCompiledNumberValue"), exports);
125
+ __exportStar(require("./NodeOutputCompiledSearchResultsValue"), exports);
126
+ __exportStar(require("./NodeOutputCompiledStringValue"), exports);
127
+ __exportStar(require("./NodeOutputCompiledValue"), exports);
124
128
  __exportStar(require("./NormalizedLogProbs"), exports);
125
129
  __exportStar(require("./NormalizedTokenLogProbs"), exports);
126
130
  __exportStar(require("./NumberEnum"), exports);
127
- __exportStar(require("./NumberVariableValue"), exports);
128
131
  __exportStar(require("./PaginatedSlimDeploymentReadList"), exports);
129
132
  __exportStar(require("./PaginatedSlimDocumentList"), exports);
130
133
  __exportStar(require("./PaginatedSlimWorkflowDeploymentList"), exports);
@@ -160,8 +163,7 @@ __exportStar(require("./RejectedExecutePromptResponse"), exports);
160
163
  __exportStar(require("./RejectedExecuteWorkflowWorkflowResultEvent"), exports);
161
164
  __exportStar(require("./RejectedFunctionCall"), exports);
162
165
  __exportStar(require("./RejectedPromptExecutionMeta"), exports);
163
- __exportStar(require("./SandboxMetricInputParams"), exports);
164
- __exportStar(require("./SandboxMetricInputParamsRequest"), exports);
166
+ __exportStar(require("./RejectedWorkflowNodeResultEvent"), exports);
165
167
  __exportStar(require("./SandboxScenario"), exports);
166
168
  __exportStar(require("./ScenarioInput"), exports);
167
169
  __exportStar(require("./ScenarioInputRequest"), exports);
@@ -178,7 +180,6 @@ __exportStar(require("./SearchResultDocumentRequest"), exports);
178
180
  __exportStar(require("./SearchResultMergingRequest"), exports);
179
181
  __exportStar(require("./SearchResultRequest"), exports);
180
182
  __exportStar(require("./SearchResultsEnum"), exports);
181
- __exportStar(require("./SearchResultsVariableValue"), exports);
182
183
  __exportStar(require("./SearchWeightsRequest"), exports);
183
184
  __exportStar(require("./SlimDeploymentRead"), exports);
184
185
  __exportStar(require("./SlimDocument"), exports);
@@ -186,6 +187,7 @@ __exportStar(require("./SlimWorkflowDeployment"), exports);
186
187
  __exportStar(require("./StreamingEnum"), exports);
187
188
  __exportStar(require("./StreamingExecutePromptEvent"), exports);
188
189
  __exportStar(require("./StreamingPromptExecutionMeta"), exports);
190
+ __exportStar(require("./StreamingWorkflowNodeResultEvent"), exports);
189
191
  __exportStar(require("./StringChatMessageContent"), exports);
190
192
  __exportStar(require("./StringChatMessageContentRequest"), exports);
191
193
  __exportStar(require("./StringEnum"), exports);
@@ -222,7 +224,6 @@ __exportStar(require("./TestCaseVariableValue"), exports);
222
224
  __exportStar(require("./TestSuiteTestCase"), exports);
223
225
  __exportStar(require("./UploadDocumentErrorResponse"), exports);
224
226
  __exportStar(require("./UploadDocumentResponse"), exports);
225
- __exportStar(require("./VariableValue"), exports);
226
227
  __exportStar(require("./VellumError"), exports);
227
228
  __exportStar(require("./VellumErrorCodeEnum"), exports);
228
229
  __exportStar(require("./VellumErrorRequest"), exports);
@@ -242,7 +243,6 @@ __exportStar(require("./WorkflowNodeResultData"), exports);
242
243
  __exportStar(require("./WorkflowNodeResultEvent"), exports);
243
244
  __exportStar(require("./WorkflowNodeResultEventState"), exports);
244
245
  __exportStar(require("./WorkflowOutput"), exports);
245
- __exportStar(require("./WorkflowOutputArray"), exports);
246
246
  __exportStar(require("./WorkflowOutputChatHistory"), exports);
247
247
  __exportStar(require("./WorkflowOutputError"), exports);
248
248
  __exportStar(require("./WorkflowOutputFunctionCall"), exports);
package/dist/Client.d.ts CHANGED
@@ -65,14 +65,7 @@ export declare class VellumClient {
65
65
  *
66
66
  * @example
67
67
  * await vellum.generate({
68
- * requests: [{
69
- * inputValues: {
70
- * "string": "string"
71
- * },
72
- * chatHistory: [{
73
- * role: Vellum.ChatMessageRole.System
74
- * }]
75
- * }],
68
+ * requests: [],
76
69
  * options: {
77
70
  * logprobs: Vellum.LogprobsEnum.All
78
71
  * }
@@ -102,10 +95,6 @@ export declare class VellumClient {
102
95
  * filters: {
103
96
  * metadata: {
104
97
  * combinator: Vellum.MetadataFilterRuleCombinator.And,
105
- * rules: [{
106
- * combinator: Vellum.MetadataFilterRuleCombinator.And,
107
- * operator: Vellum.LogicalOperator.Equals
108
- * }],
109
98
  * operator: Vellum.LogicalOperator.Equals
110
99
  * }
111
100
  * }
@@ -123,7 +112,7 @@ export declare class VellumClient {
123
112
  *
124
113
  * @example
125
114
  * await vellum.submitCompletionActuals({
126
- * actuals: [{}]
115
+ * actuals: []
127
116
  * })
128
117
  */
129
118
  submitCompletionActuals(request: Vellum.SubmitCompletionActualsRequest, requestOptions?: VellumClient.RequestOptions): Promise<void>;