agentscope-runtime 1.0.0__py3-none-any.whl → 1.0.0b2__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.
- agentscope_runtime/engine/deployers/agentrun_deployer.py +2 -2
- agentscope_runtime/engine/deployers/utils/service_utils/fastapi_factory.py +7 -52
- agentscope_runtime/engine/runner.py +6 -7
- agentscope_runtime/engine/tracing/wrapper.py +31 -49
- agentscope_runtime/version.py +1 -1
- {agentscope_runtime-1.0.0.dist-info → agentscope_runtime-1.0.0b2.dist-info}/METADATA +5 -8
- {agentscope_runtime-1.0.0.dist-info → agentscope_runtime-1.0.0b2.dist-info}/RECORD +11 -11
- {agentscope_runtime-1.0.0.dist-info → agentscope_runtime-1.0.0b2.dist-info}/WHEEL +0 -0
- {agentscope_runtime-1.0.0.dist-info → agentscope_runtime-1.0.0b2.dist-info}/entry_points.txt +0 -0
- {agentscope_runtime-1.0.0.dist-info → agentscope_runtime-1.0.0b2.dist-info}/licenses/LICENSE +0 -0
- {agentscope_runtime-1.0.0.dist-info → agentscope_runtime-1.0.0b2.dist-info}/top_level.txt +0 -0
|
@@ -1022,7 +1022,7 @@ ls -lh /output/{zip_filename}
|
|
|
1022
1022
|
artifact_type="Code",
|
|
1023
1023
|
cpu=self.agentrun_config.cpu,
|
|
1024
1024
|
memory=self.agentrun_config.memory,
|
|
1025
|
-
port=
|
|
1025
|
+
port=8080,
|
|
1026
1026
|
code_configuration=CodeConfig(
|
|
1027
1027
|
command=["python3", "/code/deploy_starter/main.py"],
|
|
1028
1028
|
oss_bucket_name=oss_bucket_name,
|
|
@@ -1159,7 +1159,7 @@ ls -lh /output/{zip_filename}
|
|
|
1159
1159
|
artifact_type="Code",
|
|
1160
1160
|
cpu=self.agentrun_config.cpu,
|
|
1161
1161
|
memory=self.agentrun_config.memory,
|
|
1162
|
-
port=
|
|
1162
|
+
port=8080,
|
|
1163
1163
|
code_configuration=CodeConfig(
|
|
1164
1164
|
command=["python3", "/code/deploy_starter/main.py"],
|
|
1165
1165
|
oss_bucket_name=oss_bucket_name,
|
|
@@ -693,32 +693,9 @@ class FastAPIAppFactory:
|
|
|
693
693
|
parsing."""
|
|
694
694
|
is_async_gen = inspect.isasyncgenfunction(handler)
|
|
695
695
|
|
|
696
|
-
# NOTE:
|
|
697
|
-
# -----
|
|
698
|
-
# FastAPI >= 0.123.5 uses Dependant.is_coroutine_callable, which in
|
|
699
|
-
# turn unwraps callables via inspect.unwrap() and then inspects the
|
|
700
|
-
# unwrapped target to decide whether it is a coroutine function /
|
|
701
|
-
# generator / async generator.
|
|
702
|
-
#
|
|
703
|
-
# If we decorate an async-generator handler with
|
|
704
|
-
# functools.wraps(handler), FastAPI will unwrap back to the original
|
|
705
|
-
# async-generator function and *misclassify* the endpoint as
|
|
706
|
-
# non-coroutine. It will then call our async wrapper *without awaiting
|
|
707
|
-
# it*, and later try to JSON-encode the resulting coroutine object,
|
|
708
|
-
# causing errors like:
|
|
709
|
-
# TypeError("'coroutine' object is not iterable")
|
|
710
|
-
#
|
|
711
|
-
# To avoid that, we deliberately do NOT use functools.wraps() here.
|
|
712
|
-
# Instead, we manually copy the key metadata (name, qualname, doc,
|
|
713
|
-
# module, and signature) from the original handler, but we do NOT set
|
|
714
|
-
# __wrapped__. This ensures:
|
|
715
|
-
# * FastAPI sees the wrapper itself as the callable (an async def),
|
|
716
|
-
# so Dependant.is_coroutine_callable is True, and it is properly
|
|
717
|
-
# awaited.
|
|
718
|
-
# * FastAPI still sees the correct signature for parameter parsing.
|
|
719
|
-
|
|
720
696
|
if is_async_gen:
|
|
721
697
|
|
|
698
|
+
@functools.wraps(handler)
|
|
722
699
|
async def wrapped_handler(*args, **kwargs):
|
|
723
700
|
async def generate():
|
|
724
701
|
try:
|
|
@@ -743,8 +720,12 @@ class FastAPIAppFactory:
|
|
|
743
720
|
media_type="text/event-stream",
|
|
744
721
|
)
|
|
745
722
|
|
|
723
|
+
wrapped_handler.__signature__ = inspect.signature(handler)
|
|
724
|
+
return wrapped_handler
|
|
725
|
+
|
|
746
726
|
else:
|
|
747
727
|
|
|
728
|
+
@functools.wraps(handler)
|
|
748
729
|
def wrapped_handler(*args, **kwargs):
|
|
749
730
|
def generate():
|
|
750
731
|
try:
|
|
@@ -767,34 +748,8 @@ class FastAPIAppFactory:
|
|
|
767
748
|
media_type="text/event-stream",
|
|
768
749
|
)
|
|
769
750
|
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
wrapped_handler.__name__ = getattr(
|
|
773
|
-
handler,
|
|
774
|
-
"__name__",
|
|
775
|
-
wrapped_handler.__name__,
|
|
776
|
-
)
|
|
777
|
-
wrapped_handler.__qualname__ = getattr(
|
|
778
|
-
handler,
|
|
779
|
-
"__qualname__",
|
|
780
|
-
wrapped_handler.__qualname__,
|
|
781
|
-
)
|
|
782
|
-
wrapped_handler.__doc__ = getattr(
|
|
783
|
-
handler,
|
|
784
|
-
"__doc__",
|
|
785
|
-
wrapped_handler.__doc__,
|
|
786
|
-
)
|
|
787
|
-
wrapped_handler.__module__ = getattr(
|
|
788
|
-
handler,
|
|
789
|
-
"__module__",
|
|
790
|
-
wrapped_handler.__module__,
|
|
791
|
-
)
|
|
792
|
-
wrapped_handler.__signature__ = inspect.signature(handler)
|
|
793
|
-
|
|
794
|
-
# Make sure FastAPI doesn't see any stale __wrapped__ pointing back to
|
|
795
|
-
# the original async-generator; if present, remove it.
|
|
796
|
-
|
|
797
|
-
return wrapped_handler
|
|
751
|
+
wrapped_handler.__signature__ = inspect.signature(handler)
|
|
752
|
+
return wrapped_handler
|
|
798
753
|
|
|
799
754
|
@staticmethod
|
|
800
755
|
def _add_custom_endpoints(app: FastAPI):
|
|
@@ -216,23 +216,22 @@ class Runner:
|
|
|
216
216
|
if isinstance(request, dict):
|
|
217
217
|
request = AgentRequest(**request)
|
|
218
218
|
|
|
219
|
-
# Assign session ID
|
|
220
|
-
request.session_id = request.session_id or str(uuid.uuid4())
|
|
221
|
-
|
|
222
|
-
# Assign user ID
|
|
223
|
-
request.user_id = request.user_id or request.session_id
|
|
224
|
-
|
|
225
219
|
seq_gen = SequenceNumberGenerator()
|
|
226
220
|
|
|
227
221
|
# Initial response
|
|
228
222
|
response = AgentResponse(id=request.id)
|
|
229
|
-
response.session_id = request.session_id
|
|
230
223
|
yield seq_gen.yield_with_sequence(response)
|
|
231
224
|
|
|
232
225
|
# Set to in-progress status
|
|
233
226
|
response.in_progress()
|
|
234
227
|
yield seq_gen.yield_with_sequence(response)
|
|
235
228
|
|
|
229
|
+
# Assign session ID
|
|
230
|
+
request.session_id = request.session_id or str(uuid.uuid4())
|
|
231
|
+
|
|
232
|
+
# Assign user ID
|
|
233
|
+
request.user_id = request.session_id or request.session_id
|
|
234
|
+
|
|
236
235
|
query_kwargs = {
|
|
237
236
|
"request": request,
|
|
238
237
|
}
|
|
@@ -7,7 +7,6 @@ import json
|
|
|
7
7
|
import os
|
|
8
8
|
import re
|
|
9
9
|
import time
|
|
10
|
-
import threading
|
|
11
10
|
import uuid
|
|
12
11
|
from collections.abc import Callable
|
|
13
12
|
from copy import deepcopy
|
|
@@ -26,7 +25,7 @@ from typing import (
|
|
|
26
25
|
from pydantic import BaseModel
|
|
27
26
|
from opentelemetry.propagate import extract
|
|
28
27
|
from opentelemetry.context import attach
|
|
29
|
-
from opentelemetry.trace import StatusCode
|
|
28
|
+
from opentelemetry.trace import StatusCode
|
|
30
29
|
from opentelemetry import trace as ot_trace
|
|
31
30
|
from opentelemetry.exporter.otlp.proto.grpc.trace_exporter import (
|
|
32
31
|
OTLPSpanExporter as OTLPSpanGrpcExporter,
|
|
@@ -178,7 +177,7 @@ def trace( # pylint: disable=too-many-statements
|
|
|
178
177
|
**common_attrs,
|
|
179
178
|
}
|
|
180
179
|
|
|
181
|
-
with
|
|
180
|
+
with _ot_tracer.start_as_current_span(
|
|
182
181
|
final_trace_name,
|
|
183
182
|
context=parent_ctx,
|
|
184
183
|
attributes=span_attributes,
|
|
@@ -281,7 +280,7 @@ def trace( # pylint: disable=too-many-statements
|
|
|
281
280
|
**common_attrs,
|
|
282
281
|
}
|
|
283
282
|
|
|
284
|
-
with
|
|
283
|
+
with _ot_tracer.start_as_current_span(
|
|
285
284
|
final_trace_name,
|
|
286
285
|
context=parent_ctx,
|
|
287
286
|
attributes=span_attributes,
|
|
@@ -386,7 +385,7 @@ def trace( # pylint: disable=too-many-statements
|
|
|
386
385
|
**common_attrs,
|
|
387
386
|
}
|
|
388
387
|
|
|
389
|
-
with
|
|
388
|
+
with _ot_tracer.start_as_current_span(
|
|
390
389
|
final_trace_name,
|
|
391
390
|
context=parent_ctx,
|
|
392
391
|
attributes=span_attributes,
|
|
@@ -519,7 +518,7 @@ def trace( # pylint: disable=too-many-statements
|
|
|
519
518
|
**common_attrs,
|
|
520
519
|
}
|
|
521
520
|
|
|
522
|
-
with
|
|
521
|
+
with _ot_tracer.start_as_current_span(
|
|
523
522
|
final_trace_name,
|
|
524
523
|
context=parent_ctx,
|
|
525
524
|
attributes=span_attributes,
|
|
@@ -898,17 +897,13 @@ def _get_service_name() -> str:
|
|
|
898
897
|
|
|
899
898
|
def _get_tracer() -> Tracer:
|
|
900
899
|
handlers: list[TracerHandler] = []
|
|
901
|
-
if _str_to_bool(os.getenv("TRACE_ENABLE_LOG", "
|
|
900
|
+
if _str_to_bool(os.getenv("TRACE_ENABLE_LOG", "true")):
|
|
902
901
|
handlers.append(LocalLogHandler(enable_console=True))
|
|
903
902
|
|
|
904
903
|
tracer = Tracer(handlers=handlers)
|
|
905
904
|
return tracer
|
|
906
905
|
|
|
907
906
|
|
|
908
|
-
_otel_tracer_lock = threading.Lock()
|
|
909
|
-
_otel_tracer = None
|
|
910
|
-
|
|
911
|
-
|
|
912
907
|
# TODO: support more tracing protocols and platforms
|
|
913
908
|
def _get_ot_tracer() -> ot_trace.Tracer:
|
|
914
909
|
"""Get the OpenTelemetry tracer.
|
|
@@ -917,48 +912,35 @@ def _get_ot_tracer() -> ot_trace.Tracer:
|
|
|
917
912
|
ot_trace.Tracer: The OpenTelemetry tracer instance.
|
|
918
913
|
"""
|
|
919
914
|
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
span_exporter = BatchSpanProcessor(
|
|
936
|
-
OTLPSpanGrpcExporter(
|
|
937
|
-
endpoint=os.getenv("TRACE_ENDPOINT", ""),
|
|
938
|
-
headers=f"Authentication="
|
|
939
|
-
f"{os.getenv('TRACE_AUTHENTICATION', '')}",
|
|
940
|
-
),
|
|
941
|
-
)
|
|
942
|
-
provider.add_span_processor(span_exporter)
|
|
943
|
-
|
|
944
|
-
if _str_to_bool(os.getenv("TRACE_ENABLE_DEBUG", "false")):
|
|
945
|
-
span_logger = BatchSpanProcessor(ConsoleSpanExporter())
|
|
946
|
-
provider.add_span_processor(span_logger)
|
|
947
|
-
|
|
948
|
-
tracer = ot_trace.get_tracer(
|
|
949
|
-
"agentscope_runtime",
|
|
950
|
-
tracer_provider=provider,
|
|
915
|
+
resource = Resource(
|
|
916
|
+
attributes={
|
|
917
|
+
SERVICE_NAME: _get_service_name(),
|
|
918
|
+
SERVICE_VERSION: os.getenv("SERVICE_VERSION", "1.0.0"),
|
|
919
|
+
"source": "agentscope_runtime-source",
|
|
920
|
+
},
|
|
921
|
+
)
|
|
922
|
+
provider = TracerProvider(resource=resource)
|
|
923
|
+
if _str_to_bool(os.getenv("TRACE_ENABLE_REPORT", "false")):
|
|
924
|
+
span_exporter = BatchSpanProcessor(
|
|
925
|
+
OTLPSpanGrpcExporter(
|
|
926
|
+
endpoint=os.getenv("TRACE_ENDPOINT", ""),
|
|
927
|
+
headers=f"Authentication="
|
|
928
|
+
f"{os.getenv('TRACE_AUTHENTICATION', '')}",
|
|
929
|
+
),
|
|
951
930
|
)
|
|
952
|
-
|
|
931
|
+
provider.add_span_processor(span_exporter)
|
|
953
932
|
|
|
954
|
-
|
|
933
|
+
if _str_to_bool(os.getenv("TRACE_ENABLE_DEBUG", "false")):
|
|
934
|
+
span_logger = BatchSpanProcessor(ConsoleSpanExporter())
|
|
935
|
+
provider.add_span_processor(span_logger)
|
|
955
936
|
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
937
|
+
tracer = ot_trace.get_tracer(
|
|
938
|
+
"agentscope_runtime",
|
|
939
|
+
tracer_provider=provider,
|
|
940
|
+
)
|
|
941
|
+
return tracer
|
|
960
942
|
|
|
961
|
-
return _otel_tracer
|
|
962
943
|
|
|
944
|
+
_ot_tracer = _get_ot_tracer()
|
|
963
945
|
|
|
964
946
|
_tracer = _get_tracer()
|
agentscope_runtime/version.py
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
|
-
__version__ = "v1.0.
|
|
2
|
+
__version__ = "v1.0.0b2"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentscope-runtime
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.0b2
|
|
4
4
|
Summary: A production-ready runtime framework for agent applications, providing secure sandboxed execution environments and scalable deployment solutions with multi-framework support.
|
|
5
5
|
Requires-Python: >=3.10
|
|
6
6
|
Description-Content-Type: text/markdown
|
|
@@ -301,11 +301,9 @@ You’ll see output streamed in **Server-Sent Events (SSE)** format:
|
|
|
301
301
|
```bash
|
|
302
302
|
data: {"sequence_number":0,"object":"response","status":"created", ... }
|
|
303
303
|
data: {"sequence_number":1,"object":"response","status":"in_progress", ... }
|
|
304
|
-
data: {"sequence_number":2,"object":"
|
|
305
|
-
data: {"sequence_number":3,"object":"content","status":"in_progress","text":"
|
|
306
|
-
data: {"sequence_number":4,"object":"
|
|
307
|
-
data: {"sequence_number":5,"object":"message","status":"completed","text":"The capital of France is Paris." }
|
|
308
|
-
data: {"sequence_number":6,"object":"response","status":"completed", ... }
|
|
304
|
+
data: {"sequence_number":2,"object":"content","status":"in_progress","text":"The" }
|
|
305
|
+
data: {"sequence_number":3,"object":"content","status":"in_progress","text":" capital of France is Paris." }
|
|
306
|
+
data: {"sequence_number":4,"object":"message","status":"completed","text":"The capital of France is Paris." }
|
|
309
307
|
```
|
|
310
308
|
|
|
311
309
|
### Sandbox Example
|
|
@@ -586,7 +584,7 @@ limitations under the License.
|
|
|
586
584
|
|
|
587
585
|
## Contributors ✨
|
|
588
586
|
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
|
589
|
-
[](#contributors-)
|
|
590
588
|
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
|
591
589
|
|
|
592
590
|
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/emoji-key/)):
|
|
@@ -626,7 +624,6 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/e
|
|
|
626
624
|
<tr>
|
|
627
625
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/iSample"><img src="https://avatars.githubusercontent.com/u/12894421?v=4?s=100" width="100px;" alt="iSample"/><br /><sub><b>iSample</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=iSample" title="Code">💻</a> <a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=iSample" title="Documentation">📖</a></td>
|
|
628
626
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/XiuShenAl"><img src="https://avatars.githubusercontent.com/u/242360128?v=4?s=100" width="100px;" alt="XiuShenAl"/><br /><sub><b>XiuShenAl</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=XiuShenAl" title="Code">💻</a> <a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=XiuShenAl" title="Documentation">📖</a></td>
|
|
629
|
-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/k-farruh"><img src="https://avatars.githubusercontent.com/u/33511681?v=4?s=100" width="100px;" alt="Farruh Kushnazarov"/><br /><sub><b>Farruh Kushnazarov</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=k-farruh" title="Documentation">📖</a></td>
|
|
630
627
|
</tr>
|
|
631
628
|
</tbody>
|
|
632
629
|
<tfoot>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
agentscope_runtime/__init__.py,sha256=LMAUeUpPo2qzqh3zyZ-JJwc8GrsiT9b-yNhQMxlKmfE,84
|
|
2
|
-
agentscope_runtime/version.py,sha256=
|
|
2
|
+
agentscope_runtime/version.py,sha256=hgie0jkmrUKvruOn51H4rrCOC1w8NeJLz9hMspmajRE,49
|
|
3
3
|
agentscope_runtime/adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
agentscope_runtime/adapters/agentscope/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
5
|
agentscope_runtime/adapters/agentscope/message.py,sha256=cq7O8A0wkAaibfWk8ULCywnPnUKATPfkb719I1DYZKs,20330
|
|
@@ -37,13 +37,13 @@ agentscope_runtime/common/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
|
|
|
37
37
|
agentscope_runtime/common/utils/lazy_loader.py,sha256=YbhbKNJrm1d3adCZ6gM6ljZE0QCCcpt4yGDCjNWtkJ4,1937
|
|
38
38
|
agentscope_runtime/engine/__init__.py,sha256=lJV0pGExSfUmyW43MNdTG06jOTNnMrLHSgBS2AhYvyQ,656
|
|
39
39
|
agentscope_runtime/engine/constant.py,sha256=KOXujjNLky8Jcm8D_gPhQLsQdzPcU4RfrQzAvJUCrpU,128
|
|
40
|
-
agentscope_runtime/engine/runner.py,sha256=
|
|
40
|
+
agentscope_runtime/engine/runner.py,sha256=EeHAbFBzGjk_XEO9w53yib0rRihFZWnQKYjL3Yqr8YU,8961
|
|
41
41
|
agentscope_runtime/engine/app/__init__.py,sha256=8asUQNRTjIEyoWjl955mn3gLkcYna8-CK4A810Eol0Y,87
|
|
42
42
|
agentscope_runtime/engine/app/agent_app.py,sha256=E874OipHIAKN_nRDm-RF-bz0xsys-SQhtz4Zs1cnjyc,10417
|
|
43
43
|
agentscope_runtime/engine/app/base_app.py,sha256=ILLp4GUVslRtLxSjCTrpTX6f1E5QhM9oXefxy4sA28I,2290
|
|
44
44
|
agentscope_runtime/engine/app/celery_mixin.py,sha256=fDPc4loHieUXvgJYRYWAv-3qOSssdbfKH9Fiu-ShrIs,2929
|
|
45
45
|
agentscope_runtime/engine/deployers/__init__.py,sha256=_C1RH1pUZ6Jrc5OqnHJAImn79lHzARbzaRTuuqCvI7Y,540
|
|
46
|
-
agentscope_runtime/engine/deployers/agentrun_deployer.py,sha256=
|
|
46
|
+
agentscope_runtime/engine/deployers/agentrun_deployer.py,sha256=yo6qY4V6JYqvzxgZjVy97RR9xeNF2sZxkDILN5YSmCM,101272
|
|
47
47
|
agentscope_runtime/engine/deployers/base.py,sha256=hqDaLIzGizTxKq-_-n61lYyL21knZxCTSa90UScpLh4,519
|
|
48
48
|
agentscope_runtime/engine/deployers/cli_fc_deploy.py,sha256=OZ6vn6t3FEKQJgbxADvPM5S90WP7OJGdBEBc-te_GiE,6063
|
|
49
49
|
agentscope_runtime/engine/deployers/kubernetes_deployer.py,sha256=21YoKNGG9M6b7Qo0CZ0YrksiaDCrxJoSpaWth8ma6mo,8984
|
|
@@ -70,7 +70,7 @@ agentscope_runtime/engine/deployers/utils/docker_image_utils/docker_image_builde
|
|
|
70
70
|
agentscope_runtime/engine/deployers/utils/docker_image_utils/dockerfile_generator.py,sha256=4aBdBgkjSKaoAJiiDPYjf2Y6t1ianU5uucFGWbD5Cio,7528
|
|
71
71
|
agentscope_runtime/engine/deployers/utils/docker_image_utils/image_factory.py,sha256=OQNMZVMXS-Qv8OkYyr0lmBO5x6wZh2TYiPNFCVoq9RE,12377
|
|
72
72
|
agentscope_runtime/engine/deployers/utils/service_utils/__init__.py,sha256=qYPjEoNP_eJXPc3j-ClR0GnQKYDa0udJ-ymVGV-IsOs,169
|
|
73
|
-
agentscope_runtime/engine/deployers/utils/service_utils/fastapi_factory.py,sha256=
|
|
73
|
+
agentscope_runtime/engine/deployers/utils/service_utils/fastapi_factory.py,sha256=SJHfkBggTC_fW_K2jsEzyxTHR6QMctX85xCgdSs2EnE,36615
|
|
74
74
|
agentscope_runtime/engine/deployers/utils/service_utils/fastapi_templates.py,sha256=xsfoQWKidfT-S9sQWLygcNG_vGsppLQDlwXtBw1nziE,4784
|
|
75
75
|
agentscope_runtime/engine/deployers/utils/service_utils/process_manager.py,sha256=QGYDwIqy9BswXFXtmaqm-vZj_SOcpW0Qy_5uas3t0IM,8391
|
|
76
76
|
agentscope_runtime/engine/deployers/utils/templates/app_main.py.j2,sha256=cgaSFV7_SNu6wfI4myTku1tgBcAgykv9a10QMFGAaSI,2175
|
|
@@ -114,7 +114,7 @@ agentscope_runtime/engine/tracing/local_logging_handler.py,sha256=scx_eJeZHonLYk
|
|
|
114
114
|
agentscope_runtime/engine/tracing/message_util.py,sha256=9ldwWNcm6VqAZ04orHOf8namw0I0CEiU5v89fyKEO_c,18551
|
|
115
115
|
agentscope_runtime/engine/tracing/tracing_metric.py,sha256=X1m6yjLx_hnbmozsCxiW9X3t1gWgrKlbsYEfCMqNSx0,2375
|
|
116
116
|
agentscope_runtime/engine/tracing/tracing_util.py,sha256=tzY-vp4k6BzfjHIIpQLrrgswsxQVMiCVMp6gQXFnzDY,3820
|
|
117
|
-
agentscope_runtime/engine/tracing/wrapper.py,sha256=
|
|
117
|
+
agentscope_runtime/engine/tracing/wrapper.py,sha256=n6x2tDOBmWxO7oobQnjTbi1LBj8joneJgpgelok3oRU,30892
|
|
118
118
|
agentscope_runtime/sandbox/__init__.py,sha256=Rjueu4FRl0ieis-XwHDbW81kopNVudhNRMIso9gAOSo,869
|
|
119
119
|
agentscope_runtime/sandbox/build.py,sha256=RAZkV0rFp24BNmJBZiMYAQ4KafUAELO3V1Ys6Afodwc,8451
|
|
120
120
|
agentscope_runtime/sandbox/constant.py,sha256=NzpxJ1hBDkP9J_c45FsG3iDgBkfEkIlkSKjc4X78tiU,1011
|
|
@@ -232,9 +232,9 @@ agentscope_runtime/tools/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
232
232
|
agentscope_runtime/tools/utils/api_key_util.py,sha256=xIIUsvWgSt4etgYP7lS0WnqVIhZ-REzrBLwzAT-TrVI,1210
|
|
233
233
|
agentscope_runtime/tools/utils/crypto_utils.py,sha256=Wqq4cn3FHQge-2Q1zGSMUyKh4V4A2baiZm8ZNhMqhPo,3382
|
|
234
234
|
agentscope_runtime/tools/utils/mcp_util.py,sha256=n3GGKBEQPJ-fiNXdYnBx_90GVKWvm9eaNbR2G0q2lOw,905
|
|
235
|
-
agentscope_runtime-1.0.
|
|
236
|
-
agentscope_runtime-1.0.
|
|
237
|
-
agentscope_runtime-1.0.
|
|
238
|
-
agentscope_runtime-1.0.
|
|
239
|
-
agentscope_runtime-1.0.
|
|
240
|
-
agentscope_runtime-1.0.
|
|
235
|
+
agentscope_runtime-1.0.0b2.dist-info/licenses/LICENSE,sha256=3MckDTgiTJ0E6cxo8FeamFVEFiwz3XJWsriuTtRJzxY,11337
|
|
236
|
+
agentscope_runtime-1.0.0b2.dist-info/METADATA,sha256=8T1b3SjBKTDC5gvP54eMh7T4gf_fpYqP8hDXDNG95S4,35222
|
|
237
|
+
agentscope_runtime-1.0.0b2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
238
|
+
agentscope_runtime-1.0.0b2.dist-info/entry_points.txt,sha256=iYzbpqpPc42a0HzEZ9JR96jlPOXND7Wg2XFJheRg2oo,380
|
|
239
|
+
agentscope_runtime-1.0.0b2.dist-info/top_level.txt,sha256=0YHketA7WcMmRmF-3lUzedeTOnP7iL77h-ekb-iG720,19
|
|
240
|
+
agentscope_runtime-1.0.0b2.dist-info/RECORD,,
|
|
File without changes
|
{agentscope_runtime-1.0.0.dist-info → agentscope_runtime-1.0.0b2.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{agentscope_runtime-1.0.0.dist-info → agentscope_runtime-1.0.0b2.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|