jvserve 2.0.7__tar.gz → 2.0.9__tar.gz

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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: jvserve
3
- Version: 2.0.7
3
+ Version: 2.0.9
4
4
  Summary: FastAPI webserver for loading and interaction with JIVAS agents.
5
5
  Home-page: https://github.com/TrueSelph/jvserve
6
6
  Author: TrueSelph Inc.
@@ -4,5 +4,5 @@ jvserve package initialization.
4
4
  This package provides the webserver for loading and interacting with JIVAS agents.
5
5
  """
6
6
 
7
- __version__ = "2.0.7"
7
+ __version__ = "2.0.9"
8
8
  __supported__jivas__versions__ = ["2.0.0"]
@@ -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
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: jvserve
3
- Version: 2.0.7
3
+ Version: 2.0.9
4
4
  Summary: FastAPI webserver for loading and interaction with JIVAS agents.
5
5
  Home-page: https://github.com/TrueSelph/jvserve
6
6
  Author: TrueSelph Inc.
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes