process-gpt-agent-sdk 0.4.4__py3-none-any.whl → 0.4.6__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.4.4.dist-info → process_gpt_agent_sdk-0.4.6.dist-info}/METADATA +1 -1
- process_gpt_agent_sdk-0.4.6.dist-info/RECORD +9 -0
- processgpt_agent_sdk/__init__.py +44 -44
- processgpt_agent_sdk/database.py +441 -428
- processgpt_agent_sdk/processgpt_agent_framework.py +497 -494
- processgpt_agent_sdk/utils.py +208 -208
- process_gpt_agent_sdk-0.4.4.dist-info/RECORD +0 -9
- {process_gpt_agent_sdk-0.4.4.dist-info → process_gpt_agent_sdk-0.4.6.dist-info}/WHEEL +0 -0
- {process_gpt_agent_sdk-0.4.4.dist-info → process_gpt_agent_sdk-0.4.6.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
processgpt_agent_sdk/__init__.py,sha256=MF4ij8yx4CgMljp86dPffsBtijxUbtDBpg3WxngN9ZA,1116
|
|
2
|
+
processgpt_agent_sdk/database.py,sha256=_vbeuiQXS-MGtVmE-GOlGdbT1mh2owg9py8_OqPZTdE,15222
|
|
3
|
+
processgpt_agent_sdk/processgpt_agent_framework.py,sha256=GAKuxVeS3BwXcGASFfDz1oB5gqjvHUyffcGFPO5UPPo,22641
|
|
4
|
+
processgpt_agent_sdk/single_run.py,sha256=xI5s4neWQ4WE1Fx5_TiBwEypHRTgBFX1WODj-lZqGaY,1050
|
|
5
|
+
processgpt_agent_sdk/utils.py,sha256=Ucv4fZ4gXeTgX1TjmXJv_XjL7-bmEJ45tpW7i18TMac,9436
|
|
6
|
+
process_gpt_agent_sdk-0.4.6.dist-info/METADATA,sha256=rhenpc3GCZMCk5Hpv97uUeDm8zzi4ahrKg2-ayYFaKs,6840
|
|
7
|
+
process_gpt_agent_sdk-0.4.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
8
|
+
process_gpt_agent_sdk-0.4.6.dist-info/top_level.txt,sha256=Xe6zrj3_3Vv7d0pl5RRtenVUckwOVBVLQn2P03j5REo,21
|
|
9
|
+
process_gpt_agent_sdk-0.4.6.dist-info/RECORD,,
|
processgpt_agent_sdk/__init__.py
CHANGED
|
@@ -1,45 +1,45 @@
|
|
|
1
|
-
from .processgpt_agent_framework import (
|
|
2
|
-
ProcessGPTAgentServer,
|
|
3
|
-
ProcessGPTRequestContext,
|
|
4
|
-
ProcessGPTEventQueue,
|
|
5
|
-
ContextPreparationError,
|
|
6
|
-
)
|
|
7
|
-
from .database import (
|
|
8
|
-
initialize_db,
|
|
9
|
-
get_consumer_id,
|
|
10
|
-
polling_pending_todos,
|
|
11
|
-
record_event,
|
|
12
|
-
record_events_bulk,
|
|
13
|
-
save_task_result,
|
|
14
|
-
update_task_error,
|
|
15
|
-
fetch_form_def,
|
|
16
|
-
fetch_users_grouped,
|
|
17
|
-
fetch_email_users_by_proc_inst_id,
|
|
18
|
-
fetch_tenant_mcp,
|
|
19
|
-
)
|
|
20
|
-
from .utils import (
|
|
21
|
-
summarize_error_to_user,
|
|
22
|
-
summarize_feedback,
|
|
23
|
-
)
|
|
24
|
-
from .single_run import run_single_todo_readonly
|
|
25
|
-
|
|
26
|
-
__all__ = [
|
|
27
|
-
"ProcessGPTAgentServer",
|
|
28
|
-
"ProcessGPTRequestContext",
|
|
29
|
-
"ProcessGPTEventQueue",
|
|
30
|
-
"ContextPreparationError",
|
|
31
|
-
"initialize_db",
|
|
32
|
-
"get_consumer_id",
|
|
33
|
-
"polling_pending_todos",
|
|
34
|
-
"record_event",
|
|
35
|
-
"record_events_bulk",
|
|
36
|
-
"save_task_result",
|
|
37
|
-
"update_task_error",
|
|
38
|
-
"fetch_form_def",
|
|
39
|
-
"fetch_users_grouped",
|
|
40
|
-
"fetch_email_users_by_proc_inst_id",
|
|
41
|
-
"fetch_tenant_mcp",
|
|
42
|
-
"summarize_error_to_user",
|
|
43
|
-
"summarize_feedback",
|
|
44
|
-
"run_single_todo_readonly",
|
|
1
|
+
from .processgpt_agent_framework import (
|
|
2
|
+
ProcessGPTAgentServer,
|
|
3
|
+
ProcessGPTRequestContext,
|
|
4
|
+
ProcessGPTEventQueue,
|
|
5
|
+
ContextPreparationError,
|
|
6
|
+
)
|
|
7
|
+
from .database import (
|
|
8
|
+
initialize_db,
|
|
9
|
+
get_consumer_id,
|
|
10
|
+
polling_pending_todos,
|
|
11
|
+
record_event,
|
|
12
|
+
record_events_bulk,
|
|
13
|
+
save_task_result,
|
|
14
|
+
update_task_error,
|
|
15
|
+
fetch_form_def,
|
|
16
|
+
fetch_users_grouped,
|
|
17
|
+
fetch_email_users_by_proc_inst_id,
|
|
18
|
+
fetch_tenant_mcp,
|
|
19
|
+
)
|
|
20
|
+
from .utils import (
|
|
21
|
+
summarize_error_to_user,
|
|
22
|
+
summarize_feedback,
|
|
23
|
+
)
|
|
24
|
+
from .single_run import run_single_todo_readonly
|
|
25
|
+
|
|
26
|
+
__all__ = [
|
|
27
|
+
"ProcessGPTAgentServer",
|
|
28
|
+
"ProcessGPTRequestContext",
|
|
29
|
+
"ProcessGPTEventQueue",
|
|
30
|
+
"ContextPreparationError",
|
|
31
|
+
"initialize_db",
|
|
32
|
+
"get_consumer_id",
|
|
33
|
+
"polling_pending_todos",
|
|
34
|
+
"record_event",
|
|
35
|
+
"record_events_bulk",
|
|
36
|
+
"save_task_result",
|
|
37
|
+
"update_task_error",
|
|
38
|
+
"fetch_form_def",
|
|
39
|
+
"fetch_users_grouped",
|
|
40
|
+
"fetch_email_users_by_proc_inst_id",
|
|
41
|
+
"fetch_tenant_mcp",
|
|
42
|
+
"summarize_error_to_user",
|
|
43
|
+
"summarize_feedback",
|
|
44
|
+
"run_single_todo_readonly",
|
|
45
45
|
]
|