@orq-ai/node 4.9.23 → 4.9.28
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/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/models/components/reasoningpart.js +1 -1
- package/models/operations/createcontact.js +1 -1
- package/models/operations/createdataset.js +1 -1
- package/models/operations/createdatasetitem.js +4 -4
- package/models/operations/createdatasource.js +1 -1
- package/models/operations/createeval.js +16 -16
- package/models/operations/createidentity.js +1 -1
- package/models/operations/createtool.js +6 -6
- package/models/operations/getalltools.js +6 -6
- package/models/operations/getevals.js +16 -16
- package/models/operations/getv2humanevalsets.js +2 -2
- package/models/operations/getv2humanevalsetsid.js +2 -2
- package/models/operations/listdatasetdatapoints.js +4 -4
- package/models/operations/listdatasets.js +1 -1
- package/models/operations/listdatasources.js +1 -1
- package/models/operations/listidentities.js +1 -1
- package/models/operations/patchv2humanevalsetsid.js +2 -2
- package/models/operations/postv2feedbackevaluation.js +3 -3
- package/models/operations/postv2humanevalsets.js +2 -2
- package/models/operations/retrievedatapoint.js +4 -4
- package/models/operations/retrievedataset.js +1 -1
- package/models/operations/retrievedatasource.js +1 -1
- package/models/operations/retrieveidentity.js +1 -1
- package/models/operations/retrievetool.js +6 -6
- package/models/operations/runagent.js +1 -1
- package/models/operations/streamrunagent.js +1 -1
- package/models/operations/updatedatapoint.js +4 -4
- package/models/operations/updatedataset.js +1 -1
- package/models/operations/updatedatasource.js +1 -1
- package/models/operations/updateeval.js +16 -16
- package/models/operations/updateidentity.js +1 -1
- package/models/operations/updatetool.js +7 -7
- package/package.json +3 -3
- package/packages/orq-rc/src/funcs/annotationsCreate.ts +3 -0
- package/packages/orq-rc/src/funcs/annotationsDelete.ts +3 -0
- package/packages/orq-rc/src/funcs/deploymentsInvoke.ts +5 -13
- package/packages/orq-rc/src/funcs/deploymentsStream.ts +1 -9
- package/packages/orq-rc/src/funcs/knowledgeGetChunksCount.ts +3 -0
- package/packages/orq-rc/src/funcs/modelsAzureFoundryDeployments.ts +168 -0
- package/packages/orq-rc/src/funcs/modelsCreate.ts +162 -0
- package/packages/orq-rc/src/funcs/modelsCreateAutorouter.ts +163 -0
- package/packages/orq-rc/src/funcs/modelsCreateAwsBedrock.ts +163 -0
- package/packages/orq-rc/src/funcs/modelsCreateOpenaiLike.ts +163 -0
- package/packages/orq-rc/src/funcs/modelsCreateVertex.ts +163 -0
- package/packages/orq-rc/src/funcs/modelsDelete.ts +168 -0
- package/packages/orq-rc/src/funcs/modelsDisable.ts +168 -0
- package/packages/orq-rc/src/funcs/modelsEnable.ts +163 -0
- package/packages/orq-rc/src/funcs/{agentsPostV2AgentsA2a.ts → modelsImportLitellm.ts} +16 -30
- package/packages/orq-rc/src/funcs/modelsListLitellm.ts +144 -0
- package/packages/orq-rc/src/funcs/{deploymentsMetricsCreate.ts → modelsUpdate.ts} +14 -17
- package/packages/orq-rc/src/funcs/modelsUpdateAutorouter.ts +169 -0
- package/packages/orq-rc/src/funcs/modelsUpdateAwsBedrock.ts +169 -0
- package/packages/orq-rc/src/funcs/modelsUpdateOpenaiLike.ts +169 -0
- package/packages/orq-rc/src/funcs/modelsValidate.ts +163 -0
- package/packages/orq-rc/src/funcs/modelsValidateAwsBedrock.ts +164 -0
- package/packages/orq-rc/src/lib/config.ts +3 -13
- package/packages/orq-rc/src/lib/env.ts +0 -32
- package/packages/orq-rc/src/lib/sdks.ts +2 -2
- package/packages/orq-rc/src/models/components/agentthoughtstreamingevent.ts +43 -55
- package/packages/orq-rc/src/models/components/autorouterconfig.ts +78 -0
- package/packages/orq-rc/src/models/components/azurefoundrydeployment.ts +44 -0
- package/packages/orq-rc/src/models/components/azurefoundrydeploymentmasterdata.ts +60 -0
- package/packages/orq-rc/src/models/components/createmodelparameter.ts +54 -0
- package/packages/orq-rc/src/models/components/createprojectrequest.ts +6 -0
- package/packages/orq-rc/src/models/components/domain.ts +14 -21
- package/packages/orq-rc/src/models/components/index.ts +21 -3
- package/packages/orq-rc/src/models/components/listcapabilitiesresponse.ts +1 -2
- package/packages/orq-rc/src/models/components/litellmmodel.ts +50 -0
- package/packages/orq-rc/src/models/components/litellmmodelinfo.ts +97 -0
- package/packages/orq-rc/src/models/components/litellmparams.ts +43 -0
- package/packages/orq-rc/src/models/components/modelconfigurationresponse.ts +82 -0
- package/packages/orq-rc/src/models/components/modeldocument.ts +112 -0
- package/packages/orq-rc/src/models/components/modelmetadata.ts +720 -0
- package/packages/orq-rc/src/models/components/modelparameterdocument.ts +53 -0
- package/packages/orq-rc/src/models/components/price.ts +56 -0
- package/packages/orq-rc/src/models/components/pricing.ts +93 -0
- package/packages/orq-rc/src/models/components/pricingvariant.ts +90 -0
- package/packages/orq-rc/src/models/components/project.ts +5 -0
- package/packages/orq-rc/src/models/components/reasoningpart.ts +1 -1
- package/packages/orq-rc/src/models/components/updatemodelparameter.ts +61 -0
- package/packages/orq-rc/src/models/components/updateprojectrequest.ts +6 -0
- package/packages/orq-rc/src/models/components/vertexcapabilities.ts +37 -0
- package/packages/orq-rc/src/models/components/vertexconfiguration.ts +45 -0
- package/packages/orq-rc/src/models/components/vertexmodelconfiguration.ts +53 -0
- package/packages/orq-rc/src/models/components/vertexparameters.ts +47 -0
- package/packages/orq-rc/src/models/components/vertexparamrange.ts +34 -0
- package/packages/orq-rc/src/models/components/vertexparamrangeint.ts +34 -0
- package/packages/orq-rc/src/models/errors/index.ts +0 -1
- package/packages/orq-rc/src/models/operations/createagentrequest.ts +14 -101
- package/packages/orq-rc/src/models/operations/createdataset.ts +1 -1
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +4 -4
- package/packages/orq-rc/src/models/operations/createdatasource.ts +7 -1
- package/packages/orq-rc/src/models/operations/createeval.ts +668 -1296
- package/packages/orq-rc/src/models/operations/createtool.ts +24 -28
- package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +1606 -1156
- package/packages/orq-rc/src/models/operations/deploymentinvoke.ts +3761 -320
- package/packages/orq-rc/src/models/operations/deploymentstream.ts +285 -249
- package/packages/orq-rc/src/models/operations/getalltools.ts +6 -6
- package/packages/orq-rc/src/models/operations/getevals.ts +16 -16
- package/packages/orq-rc/src/models/operations/getv2humanevalsets.ts +2 -2
- package/packages/orq-rc/src/models/operations/getv2humanevalsetsid.ts +2 -2
- package/packages/orq-rc/src/models/operations/index.ts +15 -2
- package/packages/orq-rc/src/models/operations/listagents.ts +3 -87
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +4 -4
- package/packages/orq-rc/src/models/operations/listdatasets.ts +1 -1
- package/packages/orq-rc/src/models/operations/listdatasources.ts +1 -1
- package/packages/orq-rc/src/models/operations/modelazurefoundrydeployments.ts +90 -0
- package/packages/orq-rc/src/models/operations/modelcreate.ts +184 -0
- package/packages/orq-rc/src/models/operations/modelcreateautorouter.ts +151 -0
- package/packages/orq-rc/src/models/operations/modelcreateawsbedrock.ts +218 -0
- package/packages/orq-rc/src/models/operations/modelcreateopenailike.ts +202 -0
- package/packages/orq-rc/src/models/operations/modelcreatevertex.ts +144 -0
- package/packages/orq-rc/src/models/operations/modeldelete.ts +34 -0
- package/packages/orq-rc/src/models/operations/modeldisable.ts +39 -0
- package/packages/orq-rc/src/models/operations/modelenable.ts +36 -0
- package/packages/orq-rc/src/models/operations/modelupdate.ts +198 -0
- package/packages/orq-rc/src/models/operations/modelupdateautorouter.ts +189 -0
- package/packages/orq-rc/src/models/operations/modelupdateawsbedrock.ts +248 -0
- package/packages/orq-rc/src/models/operations/modelupdateopenailike.ts +236 -0
- package/packages/orq-rc/src/models/operations/modelvalidate.ts +57 -0
- package/packages/orq-rc/src/models/operations/modelvalidateawsbedrock.ts +57 -0
- package/packages/orq-rc/src/models/operations/patchv2humanevalsetsid.ts +2 -2
- package/packages/orq-rc/src/models/operations/postv2feedbackevaluation.ts +3 -3
- package/packages/orq-rc/src/models/operations/postv2humanevalsets.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrieveagentrequest.ts +0 -91
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +4 -4
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +1 -1
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +1 -1
- package/packages/orq-rc/src/models/operations/retrievetool.ts +6 -6
- package/packages/orq-rc/src/models/operations/runagent.ts +20 -29
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +1 -1
- package/packages/orq-rc/src/models/operations/updateagent.ts +0 -171
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +4 -4
- package/packages/orq-rc/src/models/operations/updatedataset.ts +1 -1
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +1 -1
- package/packages/orq-rc/src/models/operations/updateeval.ts +41 -43
- package/packages/orq-rc/src/models/operations/updatetool.ts +7 -7
- package/packages/orq-rc/src/sdk/agents.ts +17 -35
- package/packages/orq-rc/src/sdk/annotations.ts +6 -0
- package/packages/orq-rc/src/sdk/deployments.ts +1 -8
- package/packages/orq-rc/src/sdk/knowledge.ts +3 -0
- package/packages/orq-rc/src/sdk/models.ts +305 -0
- package/packages/orq-rc/src/sdk/sdk.ts +5 -5
- package/src/lib/config.ts +3 -3
- package/src/models/components/reasoningpart.ts +1 -1
- package/src/models/operations/createcontact.ts +1 -1
- package/src/models/operations/createdataset.ts +1 -1
- package/src/models/operations/createdatasetitem.ts +4 -4
- package/src/models/operations/createdatasource.ts +1 -1
- package/src/models/operations/createeval.ts +16 -16
- package/src/models/operations/createidentity.ts +1 -1
- package/src/models/operations/createtool.ts +6 -6
- package/src/models/operations/getalltools.ts +6 -6
- package/src/models/operations/getevals.ts +16 -16
- package/src/models/operations/getv2humanevalsets.ts +2 -2
- package/src/models/operations/getv2humanevalsetsid.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +4 -4
- package/src/models/operations/listdatasets.ts +1 -1
- package/src/models/operations/listdatasources.ts +1 -1
- package/src/models/operations/listidentities.ts +1 -1
- package/src/models/operations/patchv2humanevalsetsid.ts +2 -2
- package/src/models/operations/postv2feedbackevaluation.ts +3 -3
- package/src/models/operations/postv2humanevalsets.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +4 -4
- package/src/models/operations/retrievedataset.ts +1 -1
- package/src/models/operations/retrievedatasource.ts +1 -1
- package/src/models/operations/retrieveidentity.ts +1 -1
- package/src/models/operations/retrievetool.ts +6 -6
- package/src/models/operations/runagent.ts +1 -1
- package/src/models/operations/streamrunagent.ts +1 -1
- package/src/models/operations/updatedatapoint.ts +4 -4
- package/src/models/operations/updatedataset.ts +1 -1
- package/src/models/operations/updatedatasource.ts +1 -1
- package/src/models/operations/updateeval.ts +16 -16
- package/src/models/operations/updateidentity.ts +1 -1
- package/src/models/operations/updatetool.ts +7 -7
- package/packages/orq-rc/src/models/components/domaingroup.ts +0 -18
- package/packages/orq-rc/src/models/components/invokedeploymentrequest.ts +0 -3457
- package/packages/orq-rc/src/models/components/scopemode.ts +0 -17
- package/packages/orq-rc/src/models/errors/postv2agentsa2a.ts +0 -96
- package/packages/orq-rc/src/models/operations/deploymentcreatemetric.ts +0 -2370
- package/packages/orq-rc/src/models/operations/postv2agentsa2a.ts +0 -249
- package/packages/orq-rc/src/sdk/metrics.ts +0 -29
|
@@ -2,12 +2,317 @@
|
|
|
2
2
|
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
|
+
import { modelsAzureFoundryDeployments } from "../funcs/modelsAzureFoundryDeployments.js";
|
|
6
|
+
import { modelsCreate } from "../funcs/modelsCreate.js";
|
|
7
|
+
import { modelsCreateAutorouter } from "../funcs/modelsCreateAutorouter.js";
|
|
8
|
+
import { modelsCreateAwsBedrock } from "../funcs/modelsCreateAwsBedrock.js";
|
|
9
|
+
import { modelsCreateOpenaiLike } from "../funcs/modelsCreateOpenaiLike.js";
|
|
10
|
+
import { modelsCreateVertex } from "../funcs/modelsCreateVertex.js";
|
|
11
|
+
import { modelsDelete } from "../funcs/modelsDelete.js";
|
|
12
|
+
import { modelsDisable } from "../funcs/modelsDisable.js";
|
|
13
|
+
import { modelsEnable } from "../funcs/modelsEnable.js";
|
|
14
|
+
import { modelsImportLitellm } from "../funcs/modelsImportLitellm.js";
|
|
5
15
|
import { modelsList } from "../funcs/modelsList.js";
|
|
16
|
+
import { modelsListLitellm } from "../funcs/modelsListLitellm.js";
|
|
17
|
+
import { modelsUpdate } from "../funcs/modelsUpdate.js";
|
|
18
|
+
import { modelsUpdateAutorouter } from "../funcs/modelsUpdateAutorouter.js";
|
|
19
|
+
import { modelsUpdateAwsBedrock } from "../funcs/modelsUpdateAwsBedrock.js";
|
|
20
|
+
import { modelsUpdateOpenaiLike } from "../funcs/modelsUpdateOpenaiLike.js";
|
|
21
|
+
import { modelsValidate } from "../funcs/modelsValidate.js";
|
|
22
|
+
import { modelsValidateAwsBedrock } from "../funcs/modelsValidateAwsBedrock.js";
|
|
6
23
|
import { ClientSDK, RequestOptions } from "../lib/sdks.js";
|
|
24
|
+
import * as components from "../models/components/index.js";
|
|
7
25
|
import * as operations from "../models/operations/index.js";
|
|
8
26
|
import { unwrapAsync } from "../types/fp.js";
|
|
9
27
|
|
|
10
28
|
export class Models extends ClientSDK {
|
|
29
|
+
/**
|
|
30
|
+
* Create custom model
|
|
31
|
+
*
|
|
32
|
+
* @remarks
|
|
33
|
+
* Creates a new custom model for the workspace. Provider credentials in the configuration are encrypted using the workspace encryption key before being persisted.
|
|
34
|
+
*/
|
|
35
|
+
async create(
|
|
36
|
+
request: operations.ModelCreateRequestBody,
|
|
37
|
+
options?: RequestOptions,
|
|
38
|
+
): Promise<operations.ModelCreateResponseBody> {
|
|
39
|
+
return unwrapAsync(modelsCreate(
|
|
40
|
+
this,
|
|
41
|
+
request,
|
|
42
|
+
options,
|
|
43
|
+
));
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Create autorouter custom model
|
|
48
|
+
*
|
|
49
|
+
* @remarks
|
|
50
|
+
* Creates an autorouter model that routes between a strong and economical source model based on the requested profile. Both source models must already exist for the workspace and be marked autorouter-eligible in master data.
|
|
51
|
+
*/
|
|
52
|
+
async createAutorouter(
|
|
53
|
+
request: operations.ModelCreateAutorouterRequestBody,
|
|
54
|
+
options?: RequestOptions,
|
|
55
|
+
): Promise<operations.ModelCreateAutorouterResponseBody> {
|
|
56
|
+
return unwrapAsync(modelsCreateAutorouter(
|
|
57
|
+
this,
|
|
58
|
+
request,
|
|
59
|
+
options,
|
|
60
|
+
));
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* Update autorouter custom model
|
|
65
|
+
*
|
|
66
|
+
* @remarks
|
|
67
|
+
* Re-configures an autorouter model. Each of key/strong_model/economical_model/profile falls back to the existing value when omitted. Changing the key enforces uniqueness and rewrites PRICING_KV.
|
|
68
|
+
*/
|
|
69
|
+
async updateAutorouter(
|
|
70
|
+
request: operations.ModelUpdateAutorouterRequest,
|
|
71
|
+
options?: RequestOptions,
|
|
72
|
+
): Promise<operations.ModelUpdateAutorouterResponseBody> {
|
|
73
|
+
return unwrapAsync(modelsUpdateAutorouter(
|
|
74
|
+
this,
|
|
75
|
+
request,
|
|
76
|
+
options,
|
|
77
|
+
));
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* Create AWS Bedrock custom model
|
|
82
|
+
*
|
|
83
|
+
* @remarks
|
|
84
|
+
* Registers an AWS Bedrock inference profile as a custom model for the workspace. Credentials are resolved at request time via either the integration reference or pod-identity — nothing is stored with the model.
|
|
85
|
+
*/
|
|
86
|
+
async createAwsBedrock(
|
|
87
|
+
request: operations.ModelCreateAwsBedrockRequestBody,
|
|
88
|
+
options?: RequestOptions,
|
|
89
|
+
): Promise<operations.ModelCreateAwsBedrockResponseBody> {
|
|
90
|
+
return unwrapAsync(modelsCreateAwsBedrock(
|
|
91
|
+
this,
|
|
92
|
+
request,
|
|
93
|
+
options,
|
|
94
|
+
));
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* Validate AWS Bedrock inference profile
|
|
99
|
+
*
|
|
100
|
+
* @remarks
|
|
101
|
+
* Performs a live Bedrock Converse probe to verify the inference profile ARN and credentials, then best-effort enriches the response from known system models.
|
|
102
|
+
*/
|
|
103
|
+
async validateAwsBedrock(
|
|
104
|
+
request: operations.ModelValidateAwsBedrockRequestBody,
|
|
105
|
+
options?: RequestOptions,
|
|
106
|
+
): Promise<void> {
|
|
107
|
+
return unwrapAsync(modelsValidateAwsBedrock(
|
|
108
|
+
this,
|
|
109
|
+
request,
|
|
110
|
+
options,
|
|
111
|
+
));
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
/**
|
|
115
|
+
* Update AWS Bedrock custom model
|
|
116
|
+
*
|
|
117
|
+
* @remarks
|
|
118
|
+
* Updates an AWS Bedrock custom model. ARN changes are format-validated (live AWS validation lives in the dedicated validate endpoint). Configuration and metadata are spread-merged. Parameters are replaced only when the request produces a non-empty list.
|
|
119
|
+
*/
|
|
120
|
+
async updateAwsBedrock(
|
|
121
|
+
request: operations.ModelUpdateAwsBedrockRequest,
|
|
122
|
+
options?: RequestOptions,
|
|
123
|
+
): Promise<operations.ModelUpdateAwsBedrockResponseBody> {
|
|
124
|
+
return unwrapAsync(modelsUpdateAwsBedrock(
|
|
125
|
+
this,
|
|
126
|
+
request,
|
|
127
|
+
options,
|
|
128
|
+
));
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* List Azure Foundry deployments under a resource
|
|
133
|
+
*
|
|
134
|
+
* @remarks
|
|
135
|
+
* Lists Azure Foundry deployments under the given base_url and joins each entry with the Orq master-data row. Only OpenAI-developed deployments in succeeded state with chat/completion/embedding/vision model types are returned.
|
|
136
|
+
*/
|
|
137
|
+
async azureFoundryDeployments(
|
|
138
|
+
request: operations.ModelAzureFoundryDeploymentsRequestBody,
|
|
139
|
+
options?: RequestOptions,
|
|
140
|
+
): Promise<operations.ModelAzureFoundryDeploymentsResponseBody> {
|
|
141
|
+
return unwrapAsync(modelsAzureFoundryDeployments(
|
|
142
|
+
this,
|
|
143
|
+
request,
|
|
144
|
+
options,
|
|
145
|
+
));
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
/**
|
|
149
|
+
* Import models from LiteLLM
|
|
150
|
+
*
|
|
151
|
+
* @remarks
|
|
152
|
+
* Bulk-imports a list of LiteLLM model definitions into the workspace model garden.
|
|
153
|
+
*/
|
|
154
|
+
async importLitellm(
|
|
155
|
+
request: Array<components.LiteLLMModel> | null,
|
|
156
|
+
options?: RequestOptions,
|
|
157
|
+
): Promise<Array<components.ModelDocument>> {
|
|
158
|
+
return unwrapAsync(modelsImportLitellm(
|
|
159
|
+
this,
|
|
160
|
+
request,
|
|
161
|
+
options,
|
|
162
|
+
));
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
/**
|
|
166
|
+
* List models from configured LiteLLM instance
|
|
167
|
+
*
|
|
168
|
+
* @remarks
|
|
169
|
+
* Fetches the list of models from the LiteLLM instance configured for the workspace. Requires a stored LiteLLM integration.
|
|
170
|
+
*/
|
|
171
|
+
async listLitellm(
|
|
172
|
+
options?: RequestOptions,
|
|
173
|
+
): Promise<Array<{ [k: string]: any }>> {
|
|
174
|
+
return unwrapAsync(modelsListLitellm(
|
|
175
|
+
this,
|
|
176
|
+
options,
|
|
177
|
+
));
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
/**
|
|
181
|
+
* Create OpenAI-compatible custom model
|
|
182
|
+
*
|
|
183
|
+
* @remarks
|
|
184
|
+
* Creates a custom model backed by any OpenAI-compatible endpoint. The handler probes the target API with the supplied credentials before persisting the model.
|
|
185
|
+
*/
|
|
186
|
+
async createOpenaiLike(
|
|
187
|
+
request: operations.ModelCreateOpenAILikeRequestBody,
|
|
188
|
+
options?: RequestOptions,
|
|
189
|
+
): Promise<operations.ModelCreateOpenAILikeResponseBody> {
|
|
190
|
+
return unwrapAsync(modelsCreateOpenaiLike(
|
|
191
|
+
this,
|
|
192
|
+
request,
|
|
193
|
+
options,
|
|
194
|
+
));
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
/**
|
|
198
|
+
* Update OpenAI-compatible custom model
|
|
199
|
+
*
|
|
200
|
+
* @remarks
|
|
201
|
+
* Updates an OpenAI-compatible custom model. Live-re-probes the target API when base_url or model_id changes, using the stored encrypted api_key. Metadata is merged (existing preserved, new overrides).
|
|
202
|
+
*/
|
|
203
|
+
async updateOpenaiLike(
|
|
204
|
+
request: operations.ModelUpdateOpenAILikeRequest,
|
|
205
|
+
options?: RequestOptions,
|
|
206
|
+
): Promise<operations.ModelUpdateOpenAILikeResponseBody> {
|
|
207
|
+
return unwrapAsync(modelsUpdateOpenaiLike(
|
|
208
|
+
this,
|
|
209
|
+
request,
|
|
210
|
+
options,
|
|
211
|
+
));
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
/**
|
|
215
|
+
* Validate model endpoint
|
|
216
|
+
*
|
|
217
|
+
* @remarks
|
|
218
|
+
* Validates a provider endpoint by performing a minimal live probe. Currently supports Azure OpenAI. Response includes the resolved region, whether the model is known to Orq, and either the full model document or a synthesized default.
|
|
219
|
+
*/
|
|
220
|
+
async validate(
|
|
221
|
+
request: operations.ModelValidateRequestBody,
|
|
222
|
+
options?: RequestOptions,
|
|
223
|
+
): Promise<void> {
|
|
224
|
+
return unwrapAsync(modelsValidate(
|
|
225
|
+
this,
|
|
226
|
+
request,
|
|
227
|
+
options,
|
|
228
|
+
));
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
/**
|
|
232
|
+
* Create Vertex AI custom model
|
|
233
|
+
*
|
|
234
|
+
* @remarks
|
|
235
|
+
* Registers a Google Vertex AI model as a custom model for the workspace. The service account credentials are probed against Vertex AI with a minimal GenerateContent call before persisting.
|
|
236
|
+
*/
|
|
237
|
+
async createVertex(
|
|
238
|
+
request: operations.ModelCreateVertexRequestBody,
|
|
239
|
+
options?: RequestOptions,
|
|
240
|
+
): Promise<operations.ModelCreateVertexResponseBody> {
|
|
241
|
+
return unwrapAsync(modelsCreateVertex(
|
|
242
|
+
this,
|
|
243
|
+
request,
|
|
244
|
+
options,
|
|
245
|
+
));
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
/**
|
|
249
|
+
* Delete custom model
|
|
250
|
+
*
|
|
251
|
+
* @remarks
|
|
252
|
+
* Deletes a custom model from the workspace. System models cannot be deleted. Returns 200 with an explanatory message if the model is a system model or is still referenced by experiments.
|
|
253
|
+
*/
|
|
254
|
+
async delete(
|
|
255
|
+
request: operations.ModelDeleteRequest,
|
|
256
|
+
options?: RequestOptions,
|
|
257
|
+
): Promise<void> {
|
|
258
|
+
return unwrapAsync(modelsDelete(
|
|
259
|
+
this,
|
|
260
|
+
request,
|
|
261
|
+
options,
|
|
262
|
+
));
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
/**
|
|
266
|
+
* Update custom model
|
|
267
|
+
*
|
|
268
|
+
* @remarks
|
|
269
|
+
* Updates a custom model. Only fields present in the request body are modified, except for `metadata` and `parameters`, which are fully replaced when present (preserved from the legacy handler's behavior).
|
|
270
|
+
*/
|
|
271
|
+
async update(
|
|
272
|
+
request: operations.ModelUpdateRequest,
|
|
273
|
+
options?: RequestOptions,
|
|
274
|
+
): Promise<operations.ModelUpdateResponseBody> {
|
|
275
|
+
return unwrapAsync(modelsUpdate(
|
|
276
|
+
this,
|
|
277
|
+
request,
|
|
278
|
+
options,
|
|
279
|
+
));
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
/**
|
|
283
|
+
* Enable model for workspace
|
|
284
|
+
*
|
|
285
|
+
* @remarks
|
|
286
|
+
* Adds the model to the workspace's enabled set. Idempotent — re-enabling an already-enabled model returns 204 with no state change.
|
|
287
|
+
*/
|
|
288
|
+
async enable(
|
|
289
|
+
request: operations.ModelEnableRequestBody,
|
|
290
|
+
options?: RequestOptions,
|
|
291
|
+
): Promise<void> {
|
|
292
|
+
return unwrapAsync(modelsEnable(
|
|
293
|
+
this,
|
|
294
|
+
request,
|
|
295
|
+
options,
|
|
296
|
+
));
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
/**
|
|
300
|
+
* Disable model for workspace
|
|
301
|
+
*
|
|
302
|
+
* @remarks
|
|
303
|
+
* Removes the model from the workspace's enabled set. Idempotent — disabling an already-disabled model returns 204.
|
|
304
|
+
*/
|
|
305
|
+
async disable(
|
|
306
|
+
request: operations.ModelDisableRequest,
|
|
307
|
+
options?: RequestOptions,
|
|
308
|
+
): Promise<void> {
|
|
309
|
+
return unwrapAsync(modelsDisable(
|
|
310
|
+
this,
|
|
311
|
+
request,
|
|
312
|
+
options,
|
|
313
|
+
));
|
|
314
|
+
}
|
|
315
|
+
|
|
11
316
|
/**
|
|
12
317
|
* List models
|
|
13
318
|
*
|
|
@@ -104,6 +104,11 @@ export class Orq extends ClientSDK {
|
|
|
104
104
|
return (this._guardrailRules ??= new GuardrailRules(this._options));
|
|
105
105
|
}
|
|
106
106
|
|
|
107
|
+
private _models?: Models;
|
|
108
|
+
get models(): Models {
|
|
109
|
+
return (this._models ??= new Models(this._options));
|
|
110
|
+
}
|
|
111
|
+
|
|
107
112
|
private _policies?: Policies;
|
|
108
113
|
get policies(): Policies {
|
|
109
114
|
return (this._policies ??= new Policies(this._options));
|
|
@@ -144,11 +149,6 @@ export class Orq extends ClientSDK {
|
|
|
144
149
|
return (this._schedules ??= new Schedules(this._options));
|
|
145
150
|
}
|
|
146
151
|
|
|
147
|
-
private _models?: Models;
|
|
148
|
-
get models(): Models {
|
|
149
|
-
return (this._models ??= new Models(this._options));
|
|
150
|
-
}
|
|
151
|
-
|
|
152
152
|
private _responses?: Responses;
|
|
153
153
|
get responses(): Responses {
|
|
154
154
|
return (this._responses ??= new Responses(this._options));
|
package/src/lib/config.ts
CHANGED
|
@@ -68,7 +68,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
|
|
68
68
|
export const SDK_METADATA = {
|
|
69
69
|
language: "typescript",
|
|
70
70
|
openapiDocVersion: "2.0",
|
|
71
|
-
sdkVersion: "4.9.
|
|
72
|
-
genVersion: "2.
|
|
73
|
-
userAgent: "speakeasy-sdk/typescript 4.9.
|
|
71
|
+
sdkVersion: "4.9.28",
|
|
72
|
+
genVersion: "2.889.1",
|
|
73
|
+
userAgent: "speakeasy-sdk/typescript 4.9.28 2.889.1 2.0 @orq-ai/node",
|
|
74
74
|
} as const;
|
|
@@ -40,7 +40,7 @@ export const ReasoningPart$inboundSchema: z.ZodType<
|
|
|
40
40
|
z.ZodTypeDef,
|
|
41
41
|
unknown
|
|
42
42
|
> = z.object({
|
|
43
|
-
_id: z.string().default("
|
|
43
|
+
_id: z.string().default("reasoning_01ksw243d5zyqf4mtyde806tax"),
|
|
44
44
|
metadata: z.record(z.any()).optional(),
|
|
45
45
|
kind: z.literal("reasoning"),
|
|
46
46
|
reasoning: z.string(),
|
|
@@ -134,7 +134,7 @@ export const CreateContactResponseBody$inboundSchema: z.ZodType<
|
|
|
134
134
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
135
135
|
.optional(),
|
|
136
136
|
updated: z.string().datetime({ offset: true }).default(
|
|
137
|
-
"2026-05-
|
|
137
|
+
"2026-05-30T09:05:45.233Z",
|
|
138
138
|
).transform(v => new Date(v)),
|
|
139
139
|
}).transform((v) => {
|
|
140
140
|
return remap$(v, {
|
|
@@ -138,7 +138,7 @@ export const CreateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
138
138
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
139
139
|
.optional(),
|
|
140
140
|
updated: z.string().datetime({ offset: true }).default(
|
|
141
|
-
"2026-05-
|
|
141
|
+
"2026-05-30T09:05:45.233Z",
|
|
142
142
|
).transform(v => new Date(v)),
|
|
143
143
|
}).transform((v) => {
|
|
144
144
|
return remap$(v, {
|
|
@@ -2355,7 +2355,7 @@ export const Evaluations3$inboundSchema: z.ZodType<
|
|
|
2355
2355
|
),
|
|
2356
2356
|
reviewed_by_id: z.string(),
|
|
2357
2357
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2358
|
-
"2026-05-
|
|
2358
|
+
"2026-05-30T09:05:58.813Z",
|
|
2359
2359
|
).transform(v => new Date(v)),
|
|
2360
2360
|
type: z.literal("string_array"),
|
|
2361
2361
|
values: z.array(z.string()),
|
|
@@ -2400,7 +2400,7 @@ export const Evaluations2$inboundSchema: z.ZodType<
|
|
|
2400
2400
|
source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
2401
2401
|
reviewed_by_id: z.string(),
|
|
2402
2402
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2403
|
-
"2026-05-
|
|
2403
|
+
"2026-05-30T09:05:58.813Z",
|
|
2404
2404
|
).transform(v => new Date(v)),
|
|
2405
2405
|
type: z.literal("number"),
|
|
2406
2406
|
value: z.number(),
|
|
@@ -2446,7 +2446,7 @@ export const Evaluations1$inboundSchema: z.ZodType<
|
|
|
2446
2446
|
source: EvaluationsSource$inboundSchema.default("orq"),
|
|
2447
2447
|
reviewed_by_id: z.string(),
|
|
2448
2448
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2449
|
-
"2026-05-
|
|
2449
|
+
"2026-05-30T09:05:58.812Z",
|
|
2450
2450
|
).transform(v => new Date(v)),
|
|
2451
2451
|
type: z.literal("string"),
|
|
2452
2452
|
value: z.string(),
|
|
@@ -2529,7 +2529,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
|
|
|
2529
2529
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
2530
2530
|
.optional(),
|
|
2531
2531
|
updated: z.string().datetime({ offset: true }).default(
|
|
2532
|
-
"2026-05-
|
|
2532
|
+
"2026-05-30T09:05:45.233Z",
|
|
2533
2533
|
).transform(v => new Date(v)),
|
|
2534
2534
|
}).transform((v) => {
|
|
2535
2535
|
return remap$(v, {
|
|
@@ -403,7 +403,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
403
403
|
z.ZodTypeDef,
|
|
404
404
|
unknown
|
|
405
405
|
> = z.object({
|
|
406
|
-
_id: z.string().default("
|
|
406
|
+
_id: z.string().default("01KSW243YWG847ZJRHSNZQ4HVB"),
|
|
407
407
|
display_name: z.string(),
|
|
408
408
|
description: z.string().optional(),
|
|
409
409
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -2776,8 +2776,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
2776
2776
|
> = z.object({
|
|
2777
2777
|
_id: z.string(),
|
|
2778
2778
|
description: z.string(),
|
|
2779
|
-
created: z.string().default("2026-05-
|
|
2780
|
-
updated: z.string().default("2026-05-
|
|
2779
|
+
created: z.string().default("2026-05-30T09:05:47.245Z"),
|
|
2780
|
+
updated: z.string().default("2026-05-30T09:05:47.245Z"),
|
|
2781
2781
|
guardrail_config: z.nullable(
|
|
2782
2782
|
z.union([
|
|
2783
2783
|
z.lazy(() =>
|
|
@@ -2965,8 +2965,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
2965
2965
|
.object({
|
|
2966
2966
|
_id: z.string(),
|
|
2967
2967
|
description: z.string(),
|
|
2968
|
-
created: z.string().default("2026-05-
|
|
2969
|
-
updated: z.string().default("2026-05-
|
|
2968
|
+
created: z.string().default("2026-05-30T09:05:47.245Z"),
|
|
2969
|
+
updated: z.string().default("2026-05-30T09:05:47.245Z"),
|
|
2970
2970
|
guardrail_config: z.nullable(
|
|
2971
2971
|
z.union([
|
|
2972
2972
|
z.lazy(() =>
|
|
@@ -3789,8 +3789,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
3789
3789
|
> = z.object({
|
|
3790
3790
|
_id: z.string(),
|
|
3791
3791
|
description: z.string(),
|
|
3792
|
-
created: z.string().default("2026-05-
|
|
3793
|
-
updated: z.string().default("2026-05-
|
|
3792
|
+
created: z.string().default("2026-05-30T09:05:47.245Z"),
|
|
3793
|
+
updated: z.string().default("2026-05-30T09:05:47.245Z"),
|
|
3794
3794
|
guardrail_config: z.nullable(
|
|
3795
3795
|
z.union([
|
|
3796
3796
|
z.lazy(() =>
|
|
@@ -4008,8 +4008,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
4008
4008
|
> = z.object({
|
|
4009
4009
|
_id: z.string(),
|
|
4010
4010
|
description: z.string(),
|
|
4011
|
-
created: z.string().default("2026-05-
|
|
4012
|
-
updated: z.string().default("2026-05-
|
|
4011
|
+
created: z.string().default("2026-05-30T09:05:47.245Z"),
|
|
4012
|
+
updated: z.string().default("2026-05-30T09:05:47.245Z"),
|
|
4013
4013
|
guardrail_config: z.nullable(
|
|
4014
4014
|
z.union([
|
|
4015
4015
|
z.lazy(() =>
|
|
@@ -4190,8 +4190,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
4190
4190
|
> = z.object({
|
|
4191
4191
|
_id: z.string(),
|
|
4192
4192
|
description: z.string(),
|
|
4193
|
-
created: z.string().default("2026-05-
|
|
4194
|
-
updated: z.string().default("2026-05-
|
|
4193
|
+
created: z.string().default("2026-05-30T09:05:47.245Z"),
|
|
4194
|
+
updated: z.string().default("2026-05-30T09:05:47.245Z"),
|
|
4195
4195
|
guardrail_config: z.nullable(
|
|
4196
4196
|
z.union([
|
|
4197
4197
|
z.lazy(() =>
|
|
@@ -4367,8 +4367,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
4367
4367
|
> = z.object({
|
|
4368
4368
|
_id: z.string(),
|
|
4369
4369
|
description: z.string(),
|
|
4370
|
-
created: z.string().default("2026-05-
|
|
4371
|
-
updated: z.string().default("2026-05-
|
|
4370
|
+
created: z.string().default("2026-05-30T09:05:47.245Z"),
|
|
4371
|
+
updated: z.string().default("2026-05-30T09:05:47.245Z"),
|
|
4372
4372
|
guardrail_config: z.nullable(
|
|
4373
4373
|
z.union([
|
|
4374
4374
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -4738,8 +4738,8 @@ export const CreateEvalLlm2$inboundSchema: z.ZodType<
|
|
|
4738
4738
|
> = z.object({
|
|
4739
4739
|
_id: z.string(),
|
|
4740
4740
|
description: z.string(),
|
|
4741
|
-
created: z.string().default("2026-05-
|
|
4742
|
-
updated: z.string().default("2026-05-
|
|
4741
|
+
created: z.string().default("2026-05-30T09:05:47.245Z"),
|
|
4742
|
+
updated: z.string().default("2026-05-30T09:05:47.245Z"),
|
|
4743
4743
|
guardrail_config: z.nullable(
|
|
4744
4744
|
z.union([
|
|
4745
4745
|
z.lazy(() =>
|
|
@@ -4954,8 +4954,8 @@ export const CreateEvalLlm1$inboundSchema: z.ZodType<
|
|
|
4954
4954
|
> = z.object({
|
|
4955
4955
|
_id: z.string(),
|
|
4956
4956
|
description: z.string(),
|
|
4957
|
-
created: z.string().default("2026-05-
|
|
4958
|
-
updated: z.string().default("2026-05-
|
|
4957
|
+
created: z.string().default("2026-05-30T09:05:47.245Z"),
|
|
4958
|
+
updated: z.string().default("2026-05-30T09:05:47.245Z"),
|
|
4959
4959
|
guardrail_config: z.nullable(
|
|
4960
4960
|
z.union([
|
|
4961
4961
|
z.lazy(() =>
|
|
@@ -139,7 +139,7 @@ export const CreateIdentityResponseBody$inboundSchema: z.ZodType<
|
|
|
139
139
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
140
140
|
.optional(),
|
|
141
141
|
updated: z.string().datetime({ offset: true }).default(
|
|
142
|
-
"2026-05-
|
|
142
|
+
"2026-05-30T09:05:45.233Z",
|
|
143
143
|
).transform(v => new Date(v)),
|
|
144
144
|
}).transform((v) => {
|
|
145
145
|
return remap$(v, {
|
|
@@ -1902,7 +1902,7 @@ export const ResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
1902
1902
|
z.ZodTypeDef,
|
|
1903
1903
|
unknown
|
|
1904
1904
|
> = z.object({
|
|
1905
|
-
_id: z.string().default("
|
|
1905
|
+
_id: z.string().default("tool_01KSW243V1TQ21NXEG8JY2YYD9"),
|
|
1906
1906
|
path: z.string(),
|
|
1907
1907
|
key: z.string(),
|
|
1908
1908
|
display_name: z.string().optional(),
|
|
@@ -1999,7 +1999,7 @@ export const ResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
1999
1999
|
z.ZodTypeDef,
|
|
2000
2000
|
unknown
|
|
2001
2001
|
> = z.object({
|
|
2002
|
-
id: z.string().default("
|
|
2002
|
+
id: z.string().default("01KSW243V0JMZ1QD1DNDHXWWMG"),
|
|
2003
2003
|
name: z.string(),
|
|
2004
2004
|
description: z.string().optional(),
|
|
2005
2005
|
schema: z.lazy(() => CreateToolResponseBodySchema$inboundSchema),
|
|
@@ -2055,7 +2055,7 @@ export const ResponseBodyMCPTool$inboundSchema: z.ZodType<
|
|
|
2055
2055
|
z.ZodTypeDef,
|
|
2056
2056
|
unknown
|
|
2057
2057
|
> = z.object({
|
|
2058
|
-
_id: z.string().default("
|
|
2058
|
+
_id: z.string().default("tool_01KSW243TZ0XWXPCVGRM3XYWJK"),
|
|
2059
2059
|
path: z.string(),
|
|
2060
2060
|
key: z.string(),
|
|
2061
2061
|
display_name: z.string().optional(),
|
|
@@ -2241,7 +2241,7 @@ export const ResponseBodyHTTPTool$inboundSchema: z.ZodType<
|
|
|
2241
2241
|
z.ZodTypeDef,
|
|
2242
2242
|
unknown
|
|
2243
2243
|
> = z.object({
|
|
2244
|
-
_id: z.string().default("
|
|
2244
|
+
_id: z.string().default("tool_01KSW243TXTZSR8BMGB293CSFB"),
|
|
2245
2245
|
path: z.string(),
|
|
2246
2246
|
key: z.string(),
|
|
2247
2247
|
display_name: z.string().optional(),
|
|
@@ -2334,7 +2334,7 @@ export const ResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
2334
2334
|
z.ZodTypeDef,
|
|
2335
2335
|
unknown
|
|
2336
2336
|
> = z.object({
|
|
2337
|
-
_id: z.string().default("
|
|
2337
|
+
_id: z.string().default("tool_01KSW243TWPC1J23FXA1EH7ZZY"),
|
|
2338
2338
|
path: z.string(),
|
|
2339
2339
|
key: z.string(),
|
|
2340
2340
|
display_name: z.string().optional(),
|
|
@@ -2435,7 +2435,7 @@ export const ResponseBodyFunctionTool$inboundSchema: z.ZodType<
|
|
|
2435
2435
|
z.ZodTypeDef,
|
|
2436
2436
|
unknown
|
|
2437
2437
|
> = z.object({
|
|
2438
|
-
_id: z.string().default("
|
|
2438
|
+
_id: z.string().default("tool_01KSW243TVA824QAY6J7CEKPCX"),
|
|
2439
2439
|
path: z.string(),
|
|
2440
2440
|
key: z.string(),
|
|
2441
2441
|
display_name: z.string().optional(),
|
|
@@ -767,7 +767,7 @@ export const DataCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
767
767
|
z.ZodTypeDef,
|
|
768
768
|
unknown
|
|
769
769
|
> = z.object({
|
|
770
|
-
_id: z.string().default("
|
|
770
|
+
_id: z.string().default("tool_01KSW243TCJ19K2W8DMTHK2X4Q"),
|
|
771
771
|
path: z.string(),
|
|
772
772
|
key: z.string(),
|
|
773
773
|
display_name: z.string().optional(),
|
|
@@ -864,7 +864,7 @@ export const DataTools$inboundSchema: z.ZodType<
|
|
|
864
864
|
z.ZodTypeDef,
|
|
865
865
|
unknown
|
|
866
866
|
> = z.object({
|
|
867
|
-
id: z.string().default("
|
|
867
|
+
id: z.string().default("01KSW243TCRWWJ23JZG5CM4Z3Z"),
|
|
868
868
|
name: z.string(),
|
|
869
869
|
description: z.string().optional(),
|
|
870
870
|
schema: z.lazy(() => GetAllToolsDataSchema$inboundSchema),
|
|
@@ -917,7 +917,7 @@ export const DataMCPTool$inboundSchema: z.ZodType<
|
|
|
917
917
|
z.ZodTypeDef,
|
|
918
918
|
unknown
|
|
919
919
|
> = z.object({
|
|
920
|
-
_id: z.string().default("
|
|
920
|
+
_id: z.string().default("tool_01KSW243TB57ZD7T9ECV3SEWQP"),
|
|
921
921
|
path: z.string(),
|
|
922
922
|
key: z.string(),
|
|
923
923
|
display_name: z.string().optional(),
|
|
@@ -1102,7 +1102,7 @@ export const DataHTTPTool$inboundSchema: z.ZodType<
|
|
|
1102
1102
|
z.ZodTypeDef,
|
|
1103
1103
|
unknown
|
|
1104
1104
|
> = z.object({
|
|
1105
|
-
_id: z.string().default("
|
|
1105
|
+
_id: z.string().default("tool_01KSW243T9XZ71SBKZ6X3AFMP2"),
|
|
1106
1106
|
path: z.string(),
|
|
1107
1107
|
key: z.string(),
|
|
1108
1108
|
display_name: z.string().optional(),
|
|
@@ -1195,7 +1195,7 @@ export const DataJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
1195
1195
|
z.ZodTypeDef,
|
|
1196
1196
|
unknown
|
|
1197
1197
|
> = z.object({
|
|
1198
|
-
_id: z.string().default("
|
|
1198
|
+
_id: z.string().default("tool_01KSW243T7GSXSM53TVHAQ4V30"),
|
|
1199
1199
|
path: z.string(),
|
|
1200
1200
|
key: z.string(),
|
|
1201
1201
|
display_name: z.string().optional(),
|
|
@@ -1297,7 +1297,7 @@ export const DataFunctionTool$inboundSchema: z.ZodType<
|
|
|
1297
1297
|
z.ZodTypeDef,
|
|
1298
1298
|
unknown
|
|
1299
1299
|
> = z.object({
|
|
1300
|
-
_id: z.string().default("
|
|
1300
|
+
_id: z.string().default("tool_01KSW243T62BPX8BGEGYMC4V01"),
|
|
1301
1301
|
path: z.string(),
|
|
1302
1302
|
key: z.string(),
|
|
1303
1303
|
display_name: z.string().optional(),
|