Skip to content

Commit 1f0bbde

Browse files
authored
Merge pull request elizaOS#2870 from AIFlowML/fix-plugin-spheron
fix: plugin-spheron
2 parents 045161f + 49d7eb2 commit 1f0bbde

File tree

3 files changed

+93
-31
lines changed

3 files changed

+93
-31
lines changed

packages/plugin-spheron/src/actions/deployment.ts

+54-15
Original file line numberDiff line numberDiff line change
@@ -21,33 +21,71 @@ import type { DeploymentContent } from "../types/index.ts";
2121
import { AVAILABLE_GPU_MODELS } from "../utils/constants.ts";
2222
import { DEPLOYMENT_TEMPLATES } from "../utils/template.ts";
2323

24-
function isDeploymentContent(content: any): content is DeploymentContent {
24+
function isDeploymentContent(content: unknown): content is DeploymentContent {
2525
elizaLogger.debug("Content for deployment operation:", content);
26+
27+
// First, check if content is an object
28+
if (typeof content !== 'object' || content === null) {
29+
return false;
30+
}
31+
32+
// Type assertion to access properties safely
33+
const contentObj = content as Record<string, unknown>;
34+
35+
// Check operation property
2636
if (
27-
typeof content.operation !== "string" ||
28-
!["create", "update", "close"].includes(content.operation)
37+
typeof contentObj.operation !== "string" ||
38+
!["create", "update", "close"].includes(contentObj.operation)
2939
) {
3040
return false;
3141
}
3242

33-
switch (content.operation) {
43+
// Check properties based on operation
44+
switch (contentObj.operation) {
3445
case "create":
3546
return (
36-
typeof content.template === "string" &&
37-
typeof content.customizations === "object"
47+
typeof contentObj.template === "string" &&
48+
typeof contentObj.customizations === "object"
3849
);
3950
case "update":
4051
return (
41-
typeof content.leaseId === "string" &&
42-
typeof content.template === "string" &&
43-
typeof content.customizations === "object"
52+
typeof contentObj.leaseId === "string" &&
53+
typeof contentObj.template === "string" &&
54+
typeof contentObj.customizations === "object"
4455
);
4556
case "close":
46-
return typeof content.leaseId === "string";
57+
return typeof contentObj.leaseId === "string";
4758
default:
4859
return false;
4960
}
5061
}
62+
// function isDeploymentContent(content: any): content is DeploymentContent {
63+
// elizaLogger.debug("Content for deployment operation:", content);
64+
// if (
65+
// typeof content.operation !== "string" ||
66+
// !["create", "update", "close"].includes(content.operation)
67+
// ) {
68+
// return false;
69+
// }
70+
71+
// switch (content.operation) {
72+
// case "create":
73+
// return (
74+
// typeof content.template === "string" &&
75+
// typeof content.customizations === "object"
76+
// );
77+
// case "update":
78+
// return (
79+
// typeof content.leaseId === "string" &&
80+
// typeof content.template === "string" &&
81+
// typeof content.customizations === "object"
82+
// );
83+
// case "close":
84+
// return typeof content.leaseId === "string";
85+
// default:
86+
// return false;
87+
// }
88+
// }
5189

5290
// Generate template descriptions dynamically
5391
const templateDescriptions = Object.entries(DEPLOYMENT_TEMPLATES)
@@ -157,11 +195,12 @@ export default {
157195
) => {
158196
elizaLogger.log("Starting DEPLOYMENT_OPERATION handler...");
159197

160-
// Initialize or update state
161-
if (!state) {
162-
state = (await runtime.composeState(message)) as State;
198+
// Create local variable for state manipulation
199+
let currentState = state;
200+
if (!currentState) {
201+
currentState = (await runtime.composeState(message)) as State;
163202
} else {
164-
state = await runtime.updateRecentMessageState(state);
203+
currentState = await runtime.updateRecentMessageState(currentState);
165204
}
166205

167206
// Filter only "just now" and last couple of user messages
@@ -175,7 +214,7 @@ export default {
175214

176215
// Compose deployment context
177216
const deploymentContext = composeContext({
178-
state,
217+
state: currentState,
179218
template: deploymentTemplate,
180219
});
181220

packages/plugin-spheron/src/actions/escrow.ts

+36-13
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,38 @@ import {
1919
import type { EscrowContent } from "../types/index.ts";
2020
import { SUPPORTED_TOKENS } from "../utils/constants.ts";
2121

22-
function isEscrowContent(content: any): content is EscrowContent {
22+
// function isEscrowContent(content: any): content is EscrowContent {
23+
// console.log("Content for escrow operation:", content);
24+
// return (
25+
// typeof content.token === "string" &&
26+
// (content.operation === "deposit" || content.operation === "withdraw"
27+
// ? typeof content.amount === "number" && content.amount > 0
28+
// : content.operation === "check") &&
29+
// (content.operation === "deposit" ||
30+
// content.operation === "withdraw" ||
31+
// content.operation === "check")
32+
// );
33+
// }
34+
35+
function isEscrowContent(content: unknown): content is EscrowContent {
2336
console.log("Content for escrow operation:", content);
37+
38+
// First, check if content is an object
39+
if (typeof content !== 'object' || content === null) {
40+
return false;
41+
}
42+
43+
// Type assertion to access properties safely
44+
const contentObj = content as Record<string, unknown>;
45+
2446
return (
25-
typeof content.token === "string" &&
26-
(content.operation === "deposit" || content.operation === "withdraw"
27-
? typeof content.amount === "number" && content.amount > 0
28-
: content.operation === "check") &&
29-
(content.operation === "deposit" ||
30-
content.operation === "withdraw" ||
31-
content.operation === "check")
47+
typeof contentObj.token === "string" &&
48+
(contentObj.operation === "deposit" || contentObj.operation === "withdraw"
49+
? typeof contentObj.amount === "number" && contentObj.amount > 0
50+
: contentObj.operation === "check") &&
51+
(contentObj.operation === "deposit" ||
52+
contentObj.operation === "withdraw" ||
53+
contentObj.operation === "check")
3254
);
3355
}
3456

@@ -109,11 +131,12 @@ export default {
109131
) => {
110132
elizaLogger.log("Starting ESCROW_OPERATION handler...");
111133

112-
// Initialize or update state
113-
if (!state) {
114-
state = (await runtime.composeState(message)) as State;
134+
// Create local variable for state manipulation
135+
let currentState = state;
136+
if (!currentState) {
137+
currentState = (await runtime.composeState(message)) as State;
115138
} else {
116-
state = await runtime.updateRecentMessageState(state);
139+
currentState = await runtime.updateRecentMessageState(currentState);
117140
}
118141

119142
// Filter only "just now" and last couple of user messages
@@ -127,7 +150,7 @@ export default {
127150

128151
// Compose escrow context
129152
const escrowContext = composeContext({
130-
state,
153+
state: currentState,
131154
template: escrowTemplate,
132155
});
133156

packages/plugin-spheron/src/utils/index.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export const depositBalance = async (
2828
runtime: IAgentRuntime,
2929
token: string,
3030
amount: number
31-
): Promise<any> => {
31+
): Promise<unknown> => { // Replace any with unknown
3232
const sdk = await getSDKInstance(runtime);
3333
return await sdk.escrow.depositBalance({
3434
token,
@@ -44,7 +44,7 @@ export const withdrawBalance = async (
4444
runtime: IAgentRuntime,
4545
token: string,
4646
amount: number
47-
): Promise<any> => {
47+
): Promise<unknown> => { // Replace any with unknown
4848
const sdk = await getSDKInstance(runtime);
4949
return await sdk.escrow.withdrawBalance({
5050
token,
@@ -229,7 +229,7 @@ export const getDeployment = async (
229229
export const closeDeployment = async (
230230
runtime: IAgentRuntime,
231231
leaseId: string
232-
): Promise<any> => {
232+
): Promise<unknown> => { // Replace any with unknown
233233
const sdk = await getSDKInstance(runtime);
234234
return await sdk.deployment.closeDeployment(leaseId);
235235
};

0 commit comments

Comments
 (0)