process-gpt-agent-sdk 0.3.15__py3-none-any.whl → 0.3.16__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 process-gpt-agent-sdk might be problematic. Click here for more details.
- {process_gpt_agent_sdk-0.3.15.dist-info → process_gpt_agent_sdk-0.3.16.dist-info}/METADATA +1 -1
- process_gpt_agent_sdk-0.3.16.dist-info/RECORD +7 -0
- processgpt_agent_sdk/__init__.py +33 -33
- processgpt_agent_sdk/database.py +1 -1
- process_gpt_agent_sdk-0.3.15.dist-info/RECORD +0 -7
- {process_gpt_agent_sdk-0.3.15.dist-info → process_gpt_agent_sdk-0.3.16.dist-info}/WHEEL +0 -0
- {process_gpt_agent_sdk-0.3.15.dist-info → process_gpt_agent_sdk-0.3.16.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
processgpt_agent_sdk/__init__.py,sha256=V4ulSOjH7bEVBMhfPjfl-fWI-hGmqXodPjCbfj0NbnA,708
|
|
2
|
+
processgpt_agent_sdk/database.py,sha256=S9jureQqI4PZ763SXqKUoXq76cc1FXzldDl0nJ4ir6g,18999
|
|
3
|
+
processgpt_agent_sdk/processgpt_agent_framework.py,sha256=YE5JB4TyRkYFYxRMRfo-SyXb5JuFZwaNtNaxFNd9PXA,16894
|
|
4
|
+
process_gpt_agent_sdk-0.3.16.dist-info/METADATA,sha256=C5a-EMuzDJIdlSmLYxZ064Ht96Aeh_3XwQtsg8K0txo,22153
|
|
5
|
+
process_gpt_agent_sdk-0.3.16.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
6
|
+
process_gpt_agent_sdk-0.3.16.dist-info/top_level.txt,sha256=Xe6zrj3_3Vv7d0pl5RRtenVUckwOVBVLQn2P03j5REo,21
|
|
7
|
+
process_gpt_agent_sdk-0.3.16.dist-info/RECORD,,
|
processgpt_agent_sdk/__init__.py
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
from .processgpt_agent_framework import ProcessGPTAgentServer
|
|
2
|
-
from .database import (
|
|
3
|
-
initialize_db,
|
|
4
|
-
get_consumer_id,
|
|
5
|
-
polling_pending_todos,
|
|
6
|
-
record_event,
|
|
7
|
-
save_task_result,
|
|
8
|
-
update_task_error,
|
|
9
|
-
fetch_agent_data,
|
|
10
|
-
fetch_all_agents,
|
|
11
|
-
fetch_form_types,
|
|
12
|
-
fetch_tenant_mcp_config,
|
|
13
|
-
fetch_human_users_by_proc_inst_id,
|
|
14
|
-
)
|
|
15
|
-
|
|
16
|
-
__all__ = [
|
|
17
|
-
"ProcessGPTAgentServer",
|
|
18
|
-
"initialize_db",
|
|
19
|
-
"get_consumer_id",
|
|
20
|
-
"polling_pending_todos",
|
|
21
|
-
"record_event",
|
|
22
|
-
"save_task_result",
|
|
23
|
-
"update_task_error",
|
|
24
|
-
"fetch_agent_data",
|
|
25
|
-
"fetch_all_agents",
|
|
26
|
-
"fetch_form_types",
|
|
27
|
-
"fetch_tenant_mcp_config",
|
|
28
|
-
"fetch_human_users_by_proc_inst_id",
|
|
29
|
-
]
|
|
30
|
-
|
|
31
|
-
__version__ = "0.3.12"
|
|
32
|
-
|
|
33
|
-
|
|
1
|
+
from .processgpt_agent_framework import ProcessGPTAgentServer
|
|
2
|
+
from .database import (
|
|
3
|
+
initialize_db,
|
|
4
|
+
get_consumer_id,
|
|
5
|
+
polling_pending_todos,
|
|
6
|
+
record_event,
|
|
7
|
+
save_task_result,
|
|
8
|
+
update_task_error,
|
|
9
|
+
fetch_agent_data,
|
|
10
|
+
fetch_all_agents,
|
|
11
|
+
fetch_form_types,
|
|
12
|
+
fetch_tenant_mcp_config,
|
|
13
|
+
fetch_human_users_by_proc_inst_id,
|
|
14
|
+
)
|
|
15
|
+
|
|
16
|
+
__all__ = [
|
|
17
|
+
"ProcessGPTAgentServer",
|
|
18
|
+
"initialize_db",
|
|
19
|
+
"get_consumer_id",
|
|
20
|
+
"polling_pending_todos",
|
|
21
|
+
"record_event",
|
|
22
|
+
"save_task_result",
|
|
23
|
+
"update_task_error",
|
|
24
|
+
"fetch_agent_data",
|
|
25
|
+
"fetch_all_agents",
|
|
26
|
+
"fetch_form_types",
|
|
27
|
+
"fetch_tenant_mcp_config",
|
|
28
|
+
"fetch_human_users_by_proc_inst_id",
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
__version__ = "0.3.12"
|
|
32
|
+
|
|
33
|
+
|
processgpt_agent_sdk/database.py
CHANGED
|
@@ -258,7 +258,7 @@ async def fetch_agent_data(user_ids: str) -> List[Dict[str, Any]]:
|
|
|
258
258
|
resp = (
|
|
259
259
|
client
|
|
260
260
|
.table("users")
|
|
261
|
-
.select("id, username, role, goal, persona, tools, profile, model, tenant_id, is_agent")
|
|
261
|
+
.select("id, username, role, goal, persona, tools, profile, model, tenant_id, is_agent, endpoint")
|
|
262
262
|
.in_("id", valid_ids)
|
|
263
263
|
.eq("is_agent", True)
|
|
264
264
|
.execute()
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
processgpt_agent_sdk/__init__.py,sha256=eaRAJsvoMHuu5KDz0T8jQxXp8o6v8VISaM1g2rblhok,741
|
|
2
|
-
processgpt_agent_sdk/database.py,sha256=G9nln9QTSfgPf3FfzLKwbXf3esEPz07rWVmzttxKTWE,18989
|
|
3
|
-
processgpt_agent_sdk/processgpt_agent_framework.py,sha256=YE5JB4TyRkYFYxRMRfo-SyXb5JuFZwaNtNaxFNd9PXA,16894
|
|
4
|
-
process_gpt_agent_sdk-0.3.15.dist-info/METADATA,sha256=l-_uC0r4XVVEoSnlHMyYAiajRVDTQWKCcVfKEW4FxUM,22153
|
|
5
|
-
process_gpt_agent_sdk-0.3.15.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
6
|
-
process_gpt_agent_sdk-0.3.15.dist-info/top_level.txt,sha256=Xe6zrj3_3Vv7d0pl5RRtenVUckwOVBVLQn2P03j5REo,21
|
|
7
|
-
process_gpt_agent_sdk-0.3.15.dist-info/RECORD,,
|
|
File without changes
|
{process_gpt_agent_sdk-0.3.15.dist-info → process_gpt_agent_sdk-0.3.16.dist-info}/top_level.txt
RENAMED
|
File without changes
|