@nestbox-ai/instances 1.0.47 → 1.0.49
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/README.md +2 -2
- package/api.ts +18 -0
- package/dist/api.d.ts +18 -0
- package/dist/esm/api.d.ts +18 -0
- package/docs/CreateMachineAgentDto.md +6 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @nestbox-ai/instances@1.0.
|
|
1
|
+
## @nestbox-ai/instances@1.0.49
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @nestbox-ai/instances@1.0.
|
|
39
|
+
npm install @nestbox-ai/instances@1.0.49 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -127,6 +127,24 @@ export interface CreateMachineAgentDto {
|
|
|
127
127
|
* @memberof CreateMachineAgentDto
|
|
128
128
|
*/
|
|
129
129
|
'additionalParameters'?: Array<AdditionalAgentParameterDto>;
|
|
130
|
+
/**
|
|
131
|
+
*
|
|
132
|
+
* @type {string}
|
|
133
|
+
* @memberof CreateMachineAgentDto
|
|
134
|
+
*/
|
|
135
|
+
'machineManifestId'?: string;
|
|
136
|
+
/**
|
|
137
|
+
*
|
|
138
|
+
* @type {string}
|
|
139
|
+
* @memberof CreateMachineAgentDto
|
|
140
|
+
*/
|
|
141
|
+
'toolName': string;
|
|
142
|
+
/**
|
|
143
|
+
* Optional Input Schema JSON for agent.
|
|
144
|
+
* @type {object}
|
|
145
|
+
* @memberof CreateMachineAgentDto
|
|
146
|
+
*/
|
|
147
|
+
'inputSchema'?: object;
|
|
130
148
|
}
|
|
131
149
|
|
|
132
150
|
/**
|
package/dist/api.d.ts
CHANGED
|
@@ -117,6 +117,24 @@ export interface CreateMachineAgentDto {
|
|
|
117
117
|
* @memberof CreateMachineAgentDto
|
|
118
118
|
*/
|
|
119
119
|
'additionalParameters'?: Array<AdditionalAgentParameterDto>;
|
|
120
|
+
/**
|
|
121
|
+
*
|
|
122
|
+
* @type {string}
|
|
123
|
+
* @memberof CreateMachineAgentDto
|
|
124
|
+
*/
|
|
125
|
+
'machineManifestId'?: string;
|
|
126
|
+
/**
|
|
127
|
+
*
|
|
128
|
+
* @type {string}
|
|
129
|
+
* @memberof CreateMachineAgentDto
|
|
130
|
+
*/
|
|
131
|
+
'toolName': string;
|
|
132
|
+
/**
|
|
133
|
+
* Optional Input Schema JSON for agent.
|
|
134
|
+
* @type {object}
|
|
135
|
+
* @memberof CreateMachineAgentDto
|
|
136
|
+
*/
|
|
137
|
+
'inputSchema'?: object;
|
|
120
138
|
}
|
|
121
139
|
/**
|
|
122
140
|
* AgentsApi - axios parameter creator
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -117,6 +117,24 @@ export interface CreateMachineAgentDto {
|
|
|
117
117
|
* @memberof CreateMachineAgentDto
|
|
118
118
|
*/
|
|
119
119
|
'additionalParameters'?: Array<AdditionalAgentParameterDto>;
|
|
120
|
+
/**
|
|
121
|
+
*
|
|
122
|
+
* @type {string}
|
|
123
|
+
* @memberof CreateMachineAgentDto
|
|
124
|
+
*/
|
|
125
|
+
'machineManifestId'?: string;
|
|
126
|
+
/**
|
|
127
|
+
*
|
|
128
|
+
* @type {string}
|
|
129
|
+
* @memberof CreateMachineAgentDto
|
|
130
|
+
*/
|
|
131
|
+
'toolName': string;
|
|
132
|
+
/**
|
|
133
|
+
* Optional Input Schema JSON for agent.
|
|
134
|
+
* @type {object}
|
|
135
|
+
* @memberof CreateMachineAgentDto
|
|
136
|
+
*/
|
|
137
|
+
'inputSchema'?: object;
|
|
120
138
|
}
|
|
121
139
|
/**
|
|
122
140
|
* AgentsApi - axios parameter creator
|
|
@@ -11,6 +11,9 @@ Name | Type | Description | Notes
|
|
|
11
11
|
**type** | **string** | | [default to undefined]
|
|
12
12
|
**parameters** | [**Array<AgentParameterDto>**](AgentParameterDto.md) | | [optional] [default to undefined]
|
|
13
13
|
**additionalParameters** | [**Array<AdditionalAgentParameterDto>**](AdditionalAgentParameterDto.md) | | [optional] [default to undefined]
|
|
14
|
+
**machineManifestId** | **string** | | [optional] [default to undefined]
|
|
15
|
+
**toolName** | **string** | | [default to undefined]
|
|
16
|
+
**inputSchema** | **object** | Optional Input Schema JSON for agent. | [optional] [default to undefined]
|
|
14
17
|
|
|
15
18
|
## Example
|
|
16
19
|
|
|
@@ -24,6 +27,9 @@ const instance: CreateMachineAgentDto = {
|
|
|
24
27
|
type,
|
|
25
28
|
parameters,
|
|
26
29
|
additionalParameters,
|
|
30
|
+
machineManifestId,
|
|
31
|
+
toolName,
|
|
32
|
+
inputSchema,
|
|
27
33
|
};
|
|
28
34
|
```
|
|
29
35
|
|