jvserve 2.0.7__py3-none-any.whl → 2.0.9__py3-none-any.whl
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.
Potentially problematic release.
This version of jvserve might be problematic. Click here for more details.
- jvserve/__init__.py +1 -1
- jvserve/lib/agent_interface.py +4 -3
- {jvserve-2.0.7.dist-info → jvserve-2.0.9.dist-info}/METADATA +1 -1
- jvserve-2.0.9.dist-info/RECORD +13 -0
- {jvserve-2.0.7.dist-info → jvserve-2.0.9.dist-info}/WHEEL +1 -1
- jvserve-2.0.7.dist-info/RECORD +0 -13
- {jvserve-2.0.7.dist-info → jvserve-2.0.9.dist-info}/entry_points.txt +0 -0
- {jvserve-2.0.7.dist-info → jvserve-2.0.9.dist-info}/licenses/LICENSE +0 -0
- {jvserve-2.0.7.dist-info → jvserve-2.0.9.dist-info}/top_level.txt +0 -0
jvserve/__init__.py
CHANGED
jvserve/lib/agent_interface.py
CHANGED
|
@@ -129,6 +129,7 @@ class AgentInterface:
|
|
|
129
129
|
AgentInterface.spawn_walker(
|
|
130
130
|
walker_name=walker,
|
|
131
131
|
attributes={
|
|
132
|
+
"headers": request.headers,
|
|
132
133
|
"agent_id": agent_id,
|
|
133
134
|
"params": params,
|
|
134
135
|
"reporting": False,
|
|
@@ -237,7 +238,7 @@ class AgentInterface:
|
|
|
237
238
|
session_id: Optional[str] = None
|
|
238
239
|
tts: Optional[bool] = None
|
|
239
240
|
verbose: Optional[bool] = None
|
|
240
|
-
data: Optional[dict] = None
|
|
241
|
+
data: Optional[list[dict]] = None
|
|
241
242
|
streaming: Optional[bool] = None
|
|
242
243
|
|
|
243
244
|
@staticmethod
|
|
@@ -267,7 +268,7 @@ class AgentInterface:
|
|
|
267
268
|
"session_id": session_id or "",
|
|
268
269
|
"tts": payload.tts or False,
|
|
269
270
|
"verbose": payload.verbose or False,
|
|
270
|
-
"data": payload.data or
|
|
271
|
+
"data": payload.data or [],
|
|
271
272
|
"streaming": payload.streaming or False,
|
|
272
273
|
"reporting": False,
|
|
273
274
|
},
|
|
@@ -394,7 +395,7 @@ class AgentInterface:
|
|
|
394
395
|
"session_id": session_id or "",
|
|
395
396
|
"tts": payload.tts or False,
|
|
396
397
|
"verbose": payload.verbose or False,
|
|
397
|
-
"data": payload.data or
|
|
398
|
+
"data": payload.data or [],
|
|
398
399
|
"streaming": payload.streaming or False,
|
|
399
400
|
"reporting": False,
|
|
400
401
|
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
jvserve/__init__.py,sha256=nxazVqbIeC0Orvk372cl5arEJiKYDj0AmAecgNpgAXQ,190
|
|
2
|
+
jvserve/cli.py,sha256=ltg-n-ZFsvitAGIhxY8xgwPI2CETLanZ_0bqrvsqqg8,4994
|
|
3
|
+
jvserve/lib/__init__.py,sha256=cnzfSHLoTWG9Ygut2nOpDys5aPlQz-m0BSkB-nd7OMs,31
|
|
4
|
+
jvserve/lib/agent_interface.py,sha256=zPaF8Yz3V36BJ5BulqwYwBSiToVligVXoKk8R0x8xRQ,26552
|
|
5
|
+
jvserve/lib/agent_pulse.py,sha256=6hBF6KQYr6Z9Mi_yoWKGfdnW7gg84kK20Slu-bLR_m8,2067
|
|
6
|
+
jvserve/lib/file_interface.py,sha256=ccnMw5k1NtfK5ylNcvlCJE-Ene3tZigh6Q1gHRy7Sow,6026
|
|
7
|
+
jvserve/lib/jvlogger.py,sha256=RNiB9PHuBzTvNIQWhxoDgrDlNYA0PYm1SVpvzlqu8mE,4180
|
|
8
|
+
jvserve-2.0.9.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
9
|
+
jvserve-2.0.9.dist-info/METADATA,sha256=yhKfhNnOZJGO1zJGQ7Q5sE7vQDXPXIYvC_cApjRPuoQ,4790
|
|
10
|
+
jvserve-2.0.9.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
|
11
|
+
jvserve-2.0.9.dist-info/entry_points.txt,sha256=HYyg1QXoLs0JRb004L300VeLOZyDLY27ynD1tnTnEN4,35
|
|
12
|
+
jvserve-2.0.9.dist-info/top_level.txt,sha256=afoCXZv-zXNBuhVIvfJGjafXKEiJl_ooy4BtgQwAG4Q,8
|
|
13
|
+
jvserve-2.0.9.dist-info/RECORD,,
|
jvserve-2.0.7.dist-info/RECORD
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
jvserve/__init__.py,sha256=g9pUUveC4GidUm97oFNE89_aCnO73a7IIT_6DP7nBP0,190
|
|
2
|
-
jvserve/cli.py,sha256=ltg-n-ZFsvitAGIhxY8xgwPI2CETLanZ_0bqrvsqqg8,4994
|
|
3
|
-
jvserve/lib/__init__.py,sha256=cnzfSHLoTWG9Ygut2nOpDys5aPlQz-m0BSkB-nd7OMs,31
|
|
4
|
-
jvserve/lib/agent_interface.py,sha256=qSMHOonLrwokyeIjk9DdNbgt0uSPfrTWWNDqR3qAsT4,26490
|
|
5
|
-
jvserve/lib/agent_pulse.py,sha256=6hBF6KQYr6Z9Mi_yoWKGfdnW7gg84kK20Slu-bLR_m8,2067
|
|
6
|
-
jvserve/lib/file_interface.py,sha256=ccnMw5k1NtfK5ylNcvlCJE-Ene3tZigh6Q1gHRy7Sow,6026
|
|
7
|
-
jvserve/lib/jvlogger.py,sha256=RNiB9PHuBzTvNIQWhxoDgrDlNYA0PYm1SVpvzlqu8mE,4180
|
|
8
|
-
jvserve-2.0.7.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
9
|
-
jvserve-2.0.7.dist-info/METADATA,sha256=kHsqQ2Eh3fYun93xztnhIQhCi3P-JssXDqr8tMeUGvw,4790
|
|
10
|
-
jvserve-2.0.7.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
|
|
11
|
-
jvserve-2.0.7.dist-info/entry_points.txt,sha256=HYyg1QXoLs0JRb004L300VeLOZyDLY27ynD1tnTnEN4,35
|
|
12
|
-
jvserve-2.0.7.dist-info/top_level.txt,sha256=afoCXZv-zXNBuhVIvfJGjafXKEiJl_ooy4BtgQwAG4Q,8
|
|
13
|
-
jvserve-2.0.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|