process-gpt-agent-sdk 0.3.16__py3-none-any.whl → 0.3.18__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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: process-gpt-agent-sdk
3
- Version: 0.3.16
3
+ Version: 0.3.18
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
@@ -13,14 +13,10 @@ Classifier: Operating System :: OS Independent
13
13
  Requires-Python: >=3.9
14
14
  Description-Content-Type: text/markdown
15
15
  Requires-Dist: supabase>=2.0.0
16
+ Requires-Dist: openai>=1.30.0
16
17
  Requires-Dist: python-dotenv>=1.0.0
17
- Requires-Dist: click>=8.0.0
18
- Requires-Dist: asyncio-mqtt>=0.13.0
19
- Requires-Dist: jsonschema>=4.0.0
20
- Requires-Dist: structlog>=23.0.0
21
- Requires-Dist: typing-extensions>=4.0.0
22
- Requires-Dist: python-dateutil>=2.8.0
23
18
  Requires-Dist: a2a-sdk==0.3.0
19
+ Requires-Dist: typing-extensions>=4.0.0; python_version < "3.11"
24
20
 
25
21
  # ProcessGPT Agent Framework
26
22
  ## A2A SDK 연동을 위한 경량 에이전트 서버 프레임워크
@@ -40,7 +36,6 @@ Supabase 기반의 프로세스 작업(Todolist)을 폴링하고, A2A 규격 이
40
36
  |------------|------|-----------|----------------|
41
37
  | `task_started` | 작업 시작 | 작업 처리 시작시 | 수동 설정 |
42
38
  | `task_completed` | 작업 완료 | 작업 정상 완료시 | 수동 설정 |
43
- | `crew_completed` | 크루 작업 완료 | 서버가 작업 종료시 | **자동 설정** |
44
39
  | `tool_usage_started` | 도구 사용 시작 | 외부 도구/API 호출 시작 | 수동 설정 |
45
40
  | `tool_usage_finished` | 도구 사용 완료 | 외부 도구/API 호출 완료 | 수동 설정 |
46
41
  | `human_asked` | 사용자 입력 요청 | HITL 패턴 사용시 | **자동 설정** |
@@ -662,3 +657,7 @@ python my_server.py
662
657
  - **TaskStatusUpdateEvent** → `events` 테이블 (`data` 컬럼)
663
658
  - **TaskArtifactUpdateEvent** → `todolist` 테이블 (`output` 컬럼)
664
659
  - 래퍼 자동 제거 후 순수 payload만 저장
660
+
661
+
662
+ ## 버전업
663
+ ./release.sh 버전
@@ -0,0 +1,8 @@
1
+ processgpt_agent_sdk/__init__.py,sha256=pn11TgNq6H6zptUwBsO_MNXCQmHTtzot_GwJxR9xSuI,581
2
+ processgpt_agent_sdk/database.py,sha256=i2tgGWe_F8razJho40NEKr3gJXut9AA7uLMsgZY5oJc,9568
3
+ processgpt_agent_sdk/processgpt_agent_framework.py,sha256=M1fhbyUyB6LRzcB8LWq8WA83nYIxsO7GhEOpHWvEU18,21521
4
+ processgpt_agent_sdk/utils.py,sha256=E20OqnuN-HX6m7IaQWAPTwJx-7jFL-otflotHXYvvFU,8598
5
+ process_gpt_agent_sdk-0.3.18.dist-info/METADATA,sha256=pWB3dj1Dsm1Gd5YJv6fS6CCvybwA84lrt31sjfWuUag,21981
6
+ process_gpt_agent_sdk-0.3.18.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
7
+ process_gpt_agent_sdk-0.3.18.dist-info/top_level.txt,sha256=Xe6zrj3_3Vv7d0pl5RRtenVUckwOVBVLQn2P03j5REo,21
8
+ process_gpt_agent_sdk-0.3.18.dist-info/RECORD,,
@@ -4,14 +4,12 @@ from .database import (
4
4
  get_consumer_id,
5
5
  polling_pending_todos,
6
6
  record_event,
7
+ record_events_bulk,
7
8
  save_task_result,
8
9
  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,
10
+ fetch_context_bundle,
14
11
  )
12
+ from .utils import summarize_error_to_user
15
13
 
16
14
  __all__ = [
17
15
  "ProcessGPTAgentServer",
@@ -19,15 +17,9 @@ __all__ = [
19
17
  "get_consumer_id",
20
18
  "polling_pending_todos",
21
19
  "record_event",
20
+ "record_events_bulk",
22
21
  "save_task_result",
23
22
  "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
-
23
+ "fetch_context_bundle",
24
+ "summarize_error_to_user",
25
+ ]