process-gpt-agent-sdk 0.4.0__tar.gz → 0.4.2__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 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.4.0
3
+ Version: 0.4.2
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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: process-gpt-agent-sdk
3
- Version: 0.4.0
3
+ Version: 0.4.2
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
@@ -133,7 +133,7 @@ class ProcessGPTRequestContext(RequestContext):
133
133
  if users:
134
134
  user_info = []
135
135
  for u in users[:5]:
136
- name = u.get("name", u.get("user_name", "Unknown"))
136
+ name = u.get("name", u.get("username", "Unknown"))
137
137
  email = u.get("email", "")
138
138
  user_info.append(f"{name}({email})" if email else name)
139
139
  logger.info("• Users (%d명): %s%s", len(users), ", ".join(user_info), "..." if len(users) > 5 else "")
@@ -144,7 +144,7 @@ class ProcessGPTRequestContext(RequestContext):
144
144
  if agents:
145
145
  agent_info = []
146
146
  for a in agents:
147
- name = a.get("name", a.get("agent_name", "Unknown"))
147
+ name = a.get("name", a.get("username", "Unknown"))
148
148
  tools = a.get("tools", "")
149
149
  tool_str = f"[{tools}]" if tools else ""
150
150
  agent_info.append(f"{name}{tool_str}")
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "process-gpt-agent-sdk"
7
- version = "0.4.0"
7
+ version = "0.4.2"
8
8
  description = "Supabase 기반 이벤트/작업 폴링으로 A2A AgentExecutor를 실행하는 SDK"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.9"