@nestbox-ai/instances 1.0.48 → 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 +12 -0
- package/dist/api.d.ts +12 -0
- package/dist/esm/api.d.ts +12 -0
- package/docs/CreateMachineAgentDto.md +4 -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
|
@@ -133,6 +133,18 @@ export interface CreateMachineAgentDto {
|
|
|
133
133
|
* @memberof CreateMachineAgentDto
|
|
134
134
|
*/
|
|
135
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;
|
|
136
148
|
}
|
|
137
149
|
|
|
138
150
|
/**
|
package/dist/api.d.ts
CHANGED
|
@@ -123,6 +123,18 @@ export interface CreateMachineAgentDto {
|
|
|
123
123
|
* @memberof CreateMachineAgentDto
|
|
124
124
|
*/
|
|
125
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;
|
|
126
138
|
}
|
|
127
139
|
/**
|
|
128
140
|
* AgentsApi - axios parameter creator
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -123,6 +123,18 @@ export interface CreateMachineAgentDto {
|
|
|
123
123
|
* @memberof CreateMachineAgentDto
|
|
124
124
|
*/
|
|
125
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;
|
|
126
138
|
}
|
|
127
139
|
/**
|
|
128
140
|
* AgentsApi - axios parameter creator
|
|
@@ -12,6 +12,8 @@ Name | Type | Description | Notes
|
|
|
12
12
|
**parameters** | [**Array<AgentParameterDto>**](AgentParameterDto.md) | | [optional] [default to undefined]
|
|
13
13
|
**additionalParameters** | [**Array<AdditionalAgentParameterDto>**](AdditionalAgentParameterDto.md) | | [optional] [default to undefined]
|
|
14
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]
|
|
15
17
|
|
|
16
18
|
## Example
|
|
17
19
|
|
|
@@ -26,6 +28,8 @@ const instance: CreateMachineAgentDto = {
|
|
|
26
28
|
parameters,
|
|
27
29
|
additionalParameters,
|
|
28
30
|
machineManifestId,
|
|
31
|
+
toolName,
|
|
32
|
+
inputSchema,
|
|
29
33
|
};
|
|
30
34
|
```
|
|
31
35
|
|