@@ -34,6 +34,7 @@ describe('getDevConfig', () => {
3434 runtimeVersion : 'NODE_20' ,
3535 entrypoint : filePath ( 'index.js' ) , // Not a Python agent
3636 codeLocation : dirPath ( './agents/node' ) ,
37+ protocol : 'HTTP' ,
3738 } ,
3839 ] ,
3940 memories : [ ] ,
@@ -56,6 +57,7 @@ describe('getDevConfig', () => {
5657 runtimeVersion : 'PYTHON_3_12' ,
5758 entrypoint : filePath ( 'main.py' ) ,
5859 codeLocation : dirPath ( './agents/python' ) ,
60+ protocol : 'HTTP' ,
5961 } ,
6062 ] ,
6163 memories : [ ] ,
@@ -84,6 +86,7 @@ describe('getDevConfig', () => {
8486 runtimeVersion : 'PYTHON_3_12' ,
8587 entrypoint : filePath ( 'main.py' ) ,
8688 codeLocation : dirPath ( './agents/python' ) ,
89+ protocol : 'HTTP' ,
8790 } ,
8891 ] ,
8992 memories : [ ] ,
@@ -107,6 +110,7 @@ describe('getDevConfig', () => {
107110 runtimeVersion : 'NODE_20' ,
108111 entrypoint : filePath ( 'index.js' ) ,
109112 codeLocation : dirPath ( './agents/node' ) ,
113+ protocol : 'HTTP' ,
110114 } ,
111115 ] ,
112116 memories : [ ] ,
@@ -128,6 +132,7 @@ describe('getDevConfig', () => {
128132 runtimeVersion : 'PYTHON_3_12' ,
129133 entrypoint : filePath ( 'main.py' ) ,
130134 codeLocation : dirPath ( 'app/PythonAgent/' ) ,
135+ protocol : 'HTTP' ,
131136 } ,
132137 ] ,
133138 memories : [ ] ,
@@ -152,6 +157,7 @@ describe('getDevConfig', () => {
152157 runtimeVersion : 'PYTHON_3_12' ,
153158 entrypoint : filePath ( 'main.py' ) ,
154159 codeLocation : dirPath ( './agents/python' ) ,
160+ protocol : 'HTTP' ,
155161 } ,
156162 ] ,
157163 memories : [ ] ,
@@ -176,6 +182,7 @@ describe('getDevConfig', () => {
176182 runtimeVersion : 'PYTHON_3_12' ,
177183 entrypoint : filePath ( 'main.py' ) ,
178184 codeLocation : dirPath ( './agents/container' ) ,
185+ protocol : 'HTTP' ,
179186 } ,
180187 ] ,
181188 memories : [ ] ,
@@ -200,6 +207,7 @@ describe('getDevConfig', () => {
200207 runtimeVersion : 'NODE_20' ,
201208 entrypoint : filePath ( 'index.js' ) ,
202209 codeLocation : dirPath ( './agents/container' ) ,
210+ protocol : 'HTTP' ,
203211 } ,
204212 ] ,
205213 memories : [ ] ,
@@ -224,6 +232,7 @@ describe('getDevConfig', () => {
224232 runtimeVersion : 'PYTHON_3_12' ,
225233 entrypoint : filePath ( 'app.py:handler' ) ,
226234 codeLocation : dirPath ( './agents/fastapi' ) ,
235+ protocol : 'HTTP' ,
227236 } ,
228237 ] ,
229238 memories : [ ] ,
@@ -253,6 +262,7 @@ describe('getAgentPort', () => {
253262 runtimeVersion : 'PYTHON_3_12' ,
254263 entrypoint : filePath ( 'main.py' ) ,
255264 codeLocation : dirPath ( './agents/a1' ) ,
265+ protocol : 'HTTP' ,
256266 } ,
257267 {
258268 type : 'AgentCoreRuntime' ,
@@ -261,6 +271,7 @@ describe('getAgentPort', () => {
261271 runtimeVersion : 'PYTHON_3_12' ,
262272 entrypoint : filePath ( 'main.py' ) ,
263273 codeLocation : dirPath ( './agents/a2' ) ,
274+ protocol : 'HTTP' ,
264275 } ,
265276 ] ,
266277 memories : [ ] ,
@@ -313,6 +324,7 @@ describe('getDevSupportedAgents', () => {
313324 runtimeVersion : 'NODE_20' ,
314325 entrypoint : filePath ( 'index.js' ) ,
315326 codeLocation : dirPath ( './agents/node' ) ,
327+ protocol : 'HTTP' ,
316328 } ,
317329 ] ,
318330 memories : [ ] ,
@@ -334,6 +346,7 @@ describe('getDevSupportedAgents', () => {
334346 runtimeVersion : 'PYTHON_3_12' ,
335347 entrypoint : filePath ( 'main.py' ) ,
336348 codeLocation : dirPath ( './agents/python' ) ,
349+ protocol : 'HTTP' ,
337350 } ,
338351 {
339352 type : 'AgentCoreRuntime' ,
@@ -342,6 +355,7 @@ describe('getDevSupportedAgents', () => {
342355 runtimeVersion : 'NODE_20' ,
343356 entrypoint : filePath ( 'index.js' ) ,
344357 codeLocation : dirPath ( './agents/node' ) ,
358+ protocol : 'HTTP' ,
345359 } ,
346360 ] ,
347361 memories : [ ] ,
@@ -365,6 +379,7 @@ describe('getDevSupportedAgents', () => {
365379 runtimeVersion : 'PYTHON_3_12' ,
366380 entrypoint : filePath ( 'main.py' ) ,
367381 codeLocation : dirPath ( './agents/container' ) ,
382+ protocol : 'HTTP' ,
368383 } ,
369384 ] ,
370385 memories : [ ] ,
@@ -388,6 +403,7 @@ describe('getDevSupportedAgents', () => {
388403 runtimeVersion : 'PYTHON_3_12' ,
389404 entrypoint : filePath ( 'main.py' ) ,
390405 codeLocation : dirPath ( './agents/python' ) ,
406+ protocol : 'HTTP' ,
391407 } ,
392408 {
393409 type : 'AgentCoreRuntime' ,
@@ -396,6 +412,7 @@ describe('getDevSupportedAgents', () => {
396412 runtimeVersion : 'PYTHON_3_12' ,
397413 entrypoint : filePath ( 'app.py' ) ,
398414 codeLocation : dirPath ( './agents/container' ) ,
415+ protocol : 'HTTP' ,
399416 } ,
400417 ] ,
401418 memories : [ ] ,
0 commit comments