jdcloud-agentgrid 0.2.2__tar.gz → 0.2.3__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.
- {jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/PKG-INFO +1 -1
- {jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/pyproject.toml +1 -1
- {jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/src/agentgrid/apps/simple_app/simple_app_handlers.py +2 -4
- {jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/src/agentgrid/version.py +1 -1
- {jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/.gitignore +0 -0
- {jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/README.md +0 -0
- {jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/src/agentgrid/__init__.py +0 -0
- {jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/src/agentgrid/apps/__init__.py +0 -0
- {jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/src/agentgrid/apps/base_app.py +0 -0
- {jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/src/agentgrid/apps/simple_app/__init__.py +0 -0
- {jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/src/agentgrid/apps/simple_app/simple_app.py +0 -0
- {jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/src/agentgrid/auth/__init__.py +0 -0
- {jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/src/agentgrid/auth/credential_chain.py +0 -0
- {jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/src/agentgrid/auth/providers.py +0 -0
- {jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/src/agentgrid/config.py +0 -0
- {jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/src/agentgrid/errors.py +0 -0
- {jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/src/agentgrid/extensions/__init__.py +0 -0
- {jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/src/agentgrid/extensions/observability/__init__.py +0 -0
- {jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/src/agentgrid/extensions/tools/__init__.py +0 -0
- {jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/src/agentgrid/extensions/tools/browser_client.py +0 -0
- {jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/src/agentgrid/extensions/tools/code_interpreter_client.py +0 -0
- {jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/src/agentgrid/extensions/tools/code_interpreter_models.py +0 -0
- {jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/src/agentgrid/profile.py +0 -0
- {jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/src/agentgrid/runtime/__init__.py +0 -0
- {jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/src/agentgrid/runtime/client.py +0 -0
- {jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/src/agentgrid/runtime/models.py +0 -0
- {jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/src/agentgrid/session.py +0 -0
- {jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/src/agentgrid/transport/__init__.py +0 -0
- {jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/src/agentgrid/transport/runtime_adapter.py +0 -0
- {jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/src/agentgrid/transport/runtime_data_client.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: jdcloud_agentgrid
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.3
|
|
4
4
|
Summary: AgentGrid Python SDK for JDCloud AgentGrid Runtime
|
|
5
5
|
Project-URL: Homepage, https://github.com/agentgrid/agentgrid-python
|
|
6
6
|
Project-URL: Repository, https://github.com/agentgrid/agentgrid-python
|
|
@@ -145,10 +145,8 @@ class PingHandler(BaseHandler):
|
|
|
145
145
|
del request
|
|
146
146
|
|
|
147
147
|
if not self.func:
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
if asyncio.iscoroutinefunction(self.func):
|
|
148
|
+
result = "pong"
|
|
149
|
+
elif asyncio.iscoroutinefunction(self.func):
|
|
152
150
|
result = await self.func()
|
|
153
151
|
else:
|
|
154
152
|
result = self.func()
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/src/agentgrid/apps/simple_app/__init__.py
RENAMED
|
File without changes
|
{jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/src/agentgrid/apps/simple_app/simple_app.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/src/agentgrid/extensions/tools/__init__.py
RENAMED
|
File without changes
|
{jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/src/agentgrid/extensions/tools/browser_client.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/src/agentgrid/transport/runtime_adapter.py
RENAMED
|
File without changes
|
{jdcloud_agentgrid-0.2.2 → jdcloud_agentgrid-0.2.3}/src/agentgrid/transport/runtime_data_client.py
RENAMED
|
File without changes
|