@otto-code/client 0.8.2 → 0.8.4
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/dist/daemon-client.d.ts +2 -2
- package/dist/daemon-client.js +2 -2
- package/package.json +4 -4
package/dist/daemon-client.d.ts
CHANGED
|
@@ -1694,8 +1694,8 @@ export declare class DaemonClient {
|
|
|
1694
1694
|
connectorsOauthDisconnect(connectorId: string, requestId?: string): Promise<ConnectorsOauthDisconnectResponse["payload"]>;
|
|
1695
1695
|
/**
|
|
1696
1696
|
* The brain's status. Pass `resources` only from a surface that renders the
|
|
1697
|
-
* live CPU/RAM/GPU
|
|
1698
|
-
*
|
|
1697
|
+
* live CPU/RAM/GPU numbers: it costs an `nvidia-smi` spawn on the brain, and
|
|
1698
|
+
* this call is also the liveness poll.
|
|
1699
1699
|
*/
|
|
1700
1700
|
brainHostStatus(options?: {
|
|
1701
1701
|
resources?: boolean;
|
package/dist/daemon-client.js
CHANGED
|
@@ -4388,8 +4388,8 @@ export class DaemonClient {
|
|
|
4388
4388
|
}
|
|
4389
4389
|
/**
|
|
4390
4390
|
* The brain's status. Pass `resources` only from a surface that renders the
|
|
4391
|
-
* live CPU/RAM/GPU
|
|
4392
|
-
*
|
|
4391
|
+
* live CPU/RAM/GPU numbers: it costs an `nvidia-smi` spawn on the brain, and
|
|
4392
|
+
* this call is also the liveness poll.
|
|
4393
4393
|
*/
|
|
4394
4394
|
async brainHostStatus(options, requestId) {
|
|
4395
4395
|
const payload = await this.sendCorrelatedSessionRequest({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@otto-code/client",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.4",
|
|
4
4
|
"description": "Otto client SDK package",
|
|
5
5
|
"license": "AGPL-3.0-or-later",
|
|
6
6
|
"files": [
|
|
@@ -36,13 +36,13 @@
|
|
|
36
36
|
"test": "vitest run"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@otto-code/protocol": "0.8.
|
|
40
|
-
"@otto-code/relay": "0.8.
|
|
39
|
+
"@otto-code/protocol": "0.8.4",
|
|
40
|
+
"@otto-code/relay": "0.8.4",
|
|
41
41
|
"zod": "^4.4.3"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/node": "^20.9.0",
|
|
45
45
|
"typescript": "^5.2.2",
|
|
46
|
-
"vitest": "^4.1.
|
|
46
|
+
"vitest": "^4.1.10"
|
|
47
47
|
}
|
|
48
48
|
}
|