process-gpt-agent-sdk 0.3.13__py3-none-any.whl → 0.3.15__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.13.dist-info → process_gpt_agent_sdk-0.3.15.dist-info}/METADATA +1 -27
- process_gpt_agent_sdk-0.3.15.dist-info/RECORD +7 -0
- processgpt_agent_sdk/__init__.py +7 -22
- processgpt_agent_sdk/processgpt_agent_framework.py +1 -1
- process_gpt_agent_sdk-0.3.13.dist-info/RECORD +0 -7
- {process_gpt_agent_sdk-0.3.13.dist-info → process_gpt_agent_sdk-0.3.15.dist-info}/WHEEL +0 -0
- {process_gpt_agent_sdk-0.3.13.dist-info → process_gpt_agent_sdk-0.3.15.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: process-gpt-agent-sdk
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.15
|
|
4
4
|
Summary: Supabase 기반 이벤트/작업 폴링으로 A2A AgentExecutor를 실행하는 SDK
|
|
5
5
|
License: MIT
|
|
6
6
|
Project-URL: Homepage, https://github.com/your-org/process-gpt-agent-sdk
|
|
@@ -649,32 +649,6 @@ python sample_server/minimal_server.py
|
|
|
649
649
|
python my_server.py
|
|
650
650
|
```
|
|
651
651
|
|
|
652
|
-
## 🚀 배포/버전업 (PyPI/TestPyPI)
|
|
653
|
-
|
|
654
|
-
- 사전 준비: PyPI 혹은 TestPyPI 토큰 환경변수 설정
|
|
655
|
-
|
|
656
|
-
macOS/Linux:
|
|
657
|
-
```bash
|
|
658
|
-
# TestPyPI 배포 예시
|
|
659
|
-
export TEST_PYPI_TOKEN="<your_testpypi_token>"
|
|
660
|
-
./release.sh 0.3.13 testpypi
|
|
661
|
-
|
|
662
|
-
# PyPI 배포 예시
|
|
663
|
-
export PYPI_TOKEN="<your_pypi_token>"
|
|
664
|
-
./release.sh 0.3.13 pypi
|
|
665
|
-
```
|
|
666
|
-
|
|
667
|
-
Windows PowerShell:
|
|
668
|
-
```powershell
|
|
669
|
-
# TestPyPI 배포 예시
|
|
670
|
-
$env:TEST_PYPI_TOKEN="<your_testpypi_token>"
|
|
671
|
-
./release.ps1 -Version 0.3.13 -TestPyPI
|
|
672
|
-
|
|
673
|
-
# PyPI 배포 예시
|
|
674
|
-
$env:PYPI_TOKEN="<your_pypi_token>"
|
|
675
|
-
./release.ps1 -Version 0.3.13
|
|
676
|
-
```
|
|
677
|
-
|
|
678
652
|
---
|
|
679
653
|
|
|
680
654
|
## 📚 레퍼런스
|
|
@@ -0,0 +1,7 @@
|
|
|
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,,
|
processgpt_agent_sdk/__init__.py
CHANGED
|
@@ -1,23 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
ProcessGPT Agent SDK
|
|
3
|
-
|
|
4
|
-
이 패키지는 ProcessGPT 시스템과 통합하기 위한 Agent Framework를 제공합니다.
|
|
5
|
-
"""
|
|
6
|
-
|
|
7
|
-
from .processgpt_agent_framework import (
|
|
8
|
-
ProcessGPTAgentServer,
|
|
9
|
-
ProcessGPTRequestContext,
|
|
10
|
-
ProcessGPTEventQueue,
|
|
11
|
-
TodoListRowContext,
|
|
12
|
-
)
|
|
13
|
-
|
|
1
|
+
from .processgpt_agent_framework import ProcessGPTAgentServer
|
|
14
2
|
from .database import (
|
|
15
3
|
initialize_db,
|
|
4
|
+
get_consumer_id,
|
|
16
5
|
polling_pending_todos,
|
|
17
6
|
record_event,
|
|
18
7
|
save_task_result,
|
|
19
8
|
update_task_error,
|
|
20
|
-
get_consumer_id,
|
|
21
9
|
fetch_agent_data,
|
|
22
10
|
fetch_all_agents,
|
|
23
11
|
fetch_form_types,
|
|
@@ -25,24 +13,21 @@ from .database import (
|
|
|
25
13
|
fetch_human_users_by_proc_inst_id,
|
|
26
14
|
)
|
|
27
15
|
|
|
28
|
-
__version__ = "0.3.12"
|
|
29
|
-
|
|
30
16
|
__all__ = [
|
|
31
|
-
# Framework classes
|
|
32
17
|
"ProcessGPTAgentServer",
|
|
33
|
-
"ProcessGPTRequestContext",
|
|
34
|
-
"ProcessGPTEventQueue",
|
|
35
|
-
"TodoListRowContext",
|
|
36
|
-
# Database functions
|
|
37
18
|
"initialize_db",
|
|
19
|
+
"get_consumer_id",
|
|
38
20
|
"polling_pending_todos",
|
|
39
21
|
"record_event",
|
|
40
22
|
"save_task_result",
|
|
41
23
|
"update_task_error",
|
|
42
|
-
"get_consumer_id",
|
|
43
24
|
"fetch_agent_data",
|
|
44
25
|
"fetch_all_agents",
|
|
45
26
|
"fetch_form_types",
|
|
46
27
|
"fetch_tenant_mcp_config",
|
|
47
28
|
"fetch_human_users_by_proc_inst_id",
|
|
48
29
|
]
|
|
30
|
+
|
|
31
|
+
__version__ = "0.3.12"
|
|
32
|
+
|
|
33
|
+
|
|
@@ -388,7 +388,7 @@ class ProcessGPTAgentServer:
|
|
|
388
388
|
async def mark_task_failed(self, todolist_id: str, error_message: str):
|
|
389
389
|
"""태스크 실패 처리 (DB 상태 업데이트)"""
|
|
390
390
|
try:
|
|
391
|
-
await update_task_error(todolist_id
|
|
391
|
+
await update_task_error(todolist_id)
|
|
392
392
|
except Exception as e:
|
|
393
393
|
logger.exception(
|
|
394
394
|
"mark_task_failed error (todolist_id=%s): %s",
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
processgpt_agent_sdk/__init__.py,sha256=-Kwyodop7dRL1qy3UjW06X0vJoDqd2-cVlbesplIUmc,1108
|
|
2
|
-
processgpt_agent_sdk/database.py,sha256=G9nln9QTSfgPf3FfzLKwbXf3esEPz07rWVmzttxKTWE,18989
|
|
3
|
-
processgpt_agent_sdk/processgpt_agent_framework.py,sha256=QnYPV065da3bRL_xOYxaMOqQQUVv6D8CZ9d6cVL0-i4,16909
|
|
4
|
-
process_gpt_agent_sdk-0.3.13.dist-info/METADATA,sha256=NzdFo_djoSoyuEQJFr_-0SD3Cm_scQ72ZgpBt_4_hXw,22736
|
|
5
|
-
process_gpt_agent_sdk-0.3.13.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
6
|
-
process_gpt_agent_sdk-0.3.13.dist-info/top_level.txt,sha256=Xe6zrj3_3Vv7d0pl5RRtenVUckwOVBVLQn2P03j5REo,21
|
|
7
|
-
process_gpt_agent_sdk-0.3.13.dist-info/RECORD,,
|
|
File without changes
|
{process_gpt_agent_sdk-0.3.13.dist-info → process_gpt_agent_sdk-0.3.15.dist-info}/top_level.txt
RENAMED
|
File without changes
|