process-gpt-agent-sdk 0.4.7__tar.gz → 0.4.8__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.7
3
+ Version: 0.4.8
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.7
3
+ Version: 0.4.8
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
@@ -139,7 +139,10 @@ class ProcessGPTRequestContext(RequestContext):
139
139
  for u in users[:5]:
140
140
  name = u.get("name", u.get("username", "Unknown"))
141
141
  email = u.get("email", "")
142
- user_info.append(f"{name}({email})" if email else name)
142
+ user_str = f"{name}({email})" if email else name
143
+ # None 값 제거
144
+ if user_str and user_str != "None":
145
+ user_info.append(user_str)
143
146
  logger.info("🔧 [Users 정보] user_info 리스트: %s", user_info)
144
147
  logger.info("• Users (%d명): %s%s", len(users), ", ".join(user_info), "..." if len(users) > 5 else "")
145
148
  else:
@@ -154,7 +157,10 @@ class ProcessGPTRequestContext(RequestContext):
154
157
  name = a.get("name", a.get("username", "Unknown"))
155
158
  tools = a.get("tools", "")
156
159
  tool_str = f"[{tools}]" if tools else ""
157
- agent_info.append(f"{name}{tool_str}")
160
+ agent_str = f"{name}{tool_str}"
161
+ # None 값 제거
162
+ if agent_str and agent_str != "None":
163
+ agent_info.append(agent_str)
158
164
  logger.info("🔧 [Agents 정보] agent_info 리스트: %s", agent_info)
159
165
  logger.info("• Agents (%d개): %s%s", len(agents), ", ".join(agent_info), "..." if len(agents) > 5 else "")
160
166
  else:
@@ -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.7"
7
+ version = "0.4.8"
8
8
  description = "Supabase 기반 이벤트/작업 폴링으로 A2A AgentExecutor를 실행하는 SDK"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.9"