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.
- {process_gpt_agent_sdk-0.4.0 → process_gpt_agent_sdk-0.4.2}/PKG-INFO +1 -1
- {process_gpt_agent_sdk-0.4.0 → process_gpt_agent_sdk-0.4.2}/process_gpt_agent_sdk.egg-info/PKG-INFO +1 -1
- {process_gpt_agent_sdk-0.4.0 → process_gpt_agent_sdk-0.4.2}/processgpt_agent_sdk/processgpt_agent_framework.py +2 -2
- {process_gpt_agent_sdk-0.4.0 → process_gpt_agent_sdk-0.4.2}/pyproject.toml +1 -1
- {process_gpt_agent_sdk-0.4.0 → process_gpt_agent_sdk-0.4.2}/README.md +0 -0
- {process_gpt_agent_sdk-0.4.0 → process_gpt_agent_sdk-0.4.2}/process_gpt_agent_sdk.egg-info/SOURCES.txt +0 -0
- {process_gpt_agent_sdk-0.4.0 → process_gpt_agent_sdk-0.4.2}/process_gpt_agent_sdk.egg-info/dependency_links.txt +0 -0
- {process_gpt_agent_sdk-0.4.0 → process_gpt_agent_sdk-0.4.2}/process_gpt_agent_sdk.egg-info/requires.txt +0 -0
- {process_gpt_agent_sdk-0.4.0 → process_gpt_agent_sdk-0.4.2}/process_gpt_agent_sdk.egg-info/top_level.txt +0 -0
- {process_gpt_agent_sdk-0.4.0 → process_gpt_agent_sdk-0.4.2}/processgpt_agent_sdk/__init__.py +0 -0
- {process_gpt_agent_sdk-0.4.0 → process_gpt_agent_sdk-0.4.2}/processgpt_agent_sdk/database.py +0 -0
- {process_gpt_agent_sdk-0.4.0 → process_gpt_agent_sdk-0.4.2}/processgpt_agent_sdk/utils.py +0 -0
- {process_gpt_agent_sdk-0.4.0 → process_gpt_agent_sdk-0.4.2}/setup.cfg +0 -0
|
@@ -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("
|
|
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("
|
|
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}")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{process_gpt_agent_sdk-0.4.0 → process_gpt_agent_sdk-0.4.2}/processgpt_agent_sdk/__init__.py
RENAMED
|
File without changes
|
{process_gpt_agent_sdk-0.4.0 → process_gpt_agent_sdk-0.4.2}/processgpt_agent_sdk/database.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|