@@ -21,33 +21,71 @@ import type { DeploymentContent } from "../types/index.ts";
21
21
import { AVAILABLE_GPU_MODELS } from "../utils/constants.ts" ;
22
22
import { DEPLOYMENT_TEMPLATES } from "../utils/template.ts" ;
23
23
24
- function isDeploymentContent ( content : any ) : content is DeploymentContent {
24
+ function isDeploymentContent ( content : unknown ) : content is DeploymentContent {
25
25
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
26
36
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 )
29
39
) {
30
40
return false ;
31
41
}
32
42
33
- switch ( content . operation ) {
43
+ // Check properties based on operation
44
+ switch ( contentObj . operation ) {
34
45
case "create" :
35
46
return (
36
- typeof content . template === "string" &&
37
- typeof content . customizations === "object"
47
+ typeof contentObj . template === "string" &&
48
+ typeof contentObj . customizations === "object"
38
49
) ;
39
50
case "update" :
40
51
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"
44
55
) ;
45
56
case "close" :
46
- return typeof content . leaseId === "string" ;
57
+ return typeof contentObj . leaseId === "string" ;
47
58
default :
48
59
return false ;
49
60
}
50
61
}
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
+ // }
51
89
52
90
// Generate template descriptions dynamically
53
91
const templateDescriptions = Object . entries ( DEPLOYMENT_TEMPLATES )
@@ -157,11 +195,12 @@ export default {
157
195
) => {
158
196
elizaLogger . log ( "Starting DEPLOYMENT_OPERATION handler..." ) ;
159
197
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 ;
163
202
} else {
164
- state = await runtime . updateRecentMessageState ( state ) ;
203
+ currentState = await runtime . updateRecentMessageState ( currentState ) ;
165
204
}
166
205
167
206
// Filter only "just now" and last couple of user messages
@@ -175,7 +214,7 @@ export default {
175
214
176
215
// Compose deployment context
177
216
const deploymentContext = composeContext ( {
178
- state,
217
+ state : currentState ,
179
218
template : deploymentTemplate ,
180
219
} ) ;
181
220
0 commit comments