divi 0.0.1.dev14__py3-none-any.whl → 0.0.1.dev15__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.
- divi/__init__.py +1 -1
- divi/proto/trace/v1/trace_pb2.py +7 -9
- divi/proto/trace/v1/trace_pb2.pyi +0 -12
- {divi-0.0.1.dev14.dist-info → divi-0.0.1.dev15.dist-info}/METADATA +3 -3
- {divi-0.0.1.dev14.dist-info → divi-0.0.1.dev15.dist-info}/RECORD +7 -7
- {divi-0.0.1.dev14.dist-info → divi-0.0.1.dev15.dist-info}/WHEEL +0 -0
- {divi-0.0.1.dev14.dist-info → divi-0.0.1.dev15.dist-info}/licenses/LICENSE +0 -0
divi/__init__.py
CHANGED
divi/proto/trace/v1/trace_pb2.py
CHANGED
@@ -25,7 +25,7 @@ _sym_db = _symbol_database.Default()
|
|
25
25
|
from divi.proto.common.v1 import common_pb2 as divi_dot_proto_dot_common_dot_v1_dot_common__pb2
|
26
26
|
|
27
27
|
|
28
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1f\x64ivi/proto/trace/v1/trace.proto\x12\x13\x64ivi.proto.trace.v1\x1a!divi/proto/common/v1/common.proto\"
|
28
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1f\x64ivi/proto/trace/v1/trace.proto\x12\x13\x64ivi.proto.trace.v1\x1a!divi/proto/common/v1/common.proto\"6\n\nScopeSpans\x12(\n\x05spans\x18\x02 \x03(\x0b\x32\x19.divi.proto.trace.v1.Span\"\xa4\x02\n\x04Span\x12\x10\n\x08trace_id\x18\x01 \x01(\x0c\x12\x0f\n\x07span_id\x18\x02 \x01(\x0c\x12\x16\n\x0eparent_span_id\x18\x03 \x01(\x0c\x12\x0c\n\x04name\x18\x04 \x01(\t\x12\x30\n\x04kind\x18\x05 \x01(\x0e\x32\".divi.proto.trace.v1.Span.SpanKind\x12\x1c\n\x14start_time_unix_nano\x18\x06 \x01(\x06\x12\x1a\n\x12\x65nd_time_unix_nano\x18\x07 \x01(\x06\x12\x30\n\x08metadata\x18\x08 \x03(\x0b\x32\x1e.divi.proto.common.v1.KeyValue\"5\n\x08SpanKind\x12\x16\n\x12SPAN_KIND_FUNCTION\x10\x00\x12\x11\n\rSPAN_KIND_LLM\x10\x01\x42\rZ\x0bservices/pbb\x06proto3')
|
29
29
|
|
30
30
|
_globals = globals()
|
31
31
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
@@ -33,12 +33,10 @@ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'divi.proto.trace.v1.trace_p
|
|
33
33
|
if not _descriptor._USE_C_DESCRIPTORS:
|
34
34
|
_globals['DESCRIPTOR']._loaded_options = None
|
35
35
|
_globals['DESCRIPTOR']._serialized_options = b'Z\013services/pb'
|
36
|
-
_globals['
|
37
|
-
_globals['
|
38
|
-
_globals['
|
39
|
-
_globals['
|
40
|
-
_globals['
|
41
|
-
_globals['
|
42
|
-
_globals['_SPAN_SPANKIND']._serialized_start=521
|
43
|
-
_globals['_SPAN_SPANKIND']._serialized_end=574
|
36
|
+
_globals['_SCOPESPANS']._serialized_start=91
|
37
|
+
_globals['_SCOPESPANS']._serialized_end=145
|
38
|
+
_globals['_SPAN']._serialized_start=148
|
39
|
+
_globals['_SPAN']._serialized_end=440
|
40
|
+
_globals['_SPAN_SPANKIND']._serialized_start=387
|
41
|
+
_globals['_SPAN_SPANKIND']._serialized_end=440
|
44
42
|
# @@protoc_insertion_point(module_scope)
|
@@ -7,18 +7,6 @@ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Map
|
|
7
7
|
|
8
8
|
DESCRIPTOR: _descriptor.FileDescriptor
|
9
9
|
|
10
|
-
class Trace(_message.Message):
|
11
|
-
__slots__ = ("trace_id", "start_time_unix_nano", "end_time_unix_nano", "spans")
|
12
|
-
TRACE_ID_FIELD_NUMBER: _ClassVar[int]
|
13
|
-
START_TIME_UNIX_NANO_FIELD_NUMBER: _ClassVar[int]
|
14
|
-
END_TIME_UNIX_NANO_FIELD_NUMBER: _ClassVar[int]
|
15
|
-
SPANS_FIELD_NUMBER: _ClassVar[int]
|
16
|
-
trace_id: bytes
|
17
|
-
start_time_unix_nano: int
|
18
|
-
end_time_unix_nano: int
|
19
|
-
spans: _containers.RepeatedCompositeFieldContainer[ScopeSpans]
|
20
|
-
def __init__(self, trace_id: _Optional[bytes] = ..., start_time_unix_nano: _Optional[int] = ..., end_time_unix_nano: _Optional[int] = ..., spans: _Optional[_Iterable[_Union[ScopeSpans, _Mapping]]] = ...) -> None: ...
|
21
|
-
|
22
10
|
class ScopeSpans(_message.Message):
|
23
11
|
__slots__ = ("spans",)
|
24
12
|
SPANS_FIELD_NUMBER: _ClassVar[int]
|
@@ -1,11 +1,11 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: divi
|
3
|
-
Version: 0.0.1.
|
3
|
+
Version: 0.0.1.dev15
|
4
4
|
Summary: The Agent Platform for Observability & Evaluation
|
5
5
|
License-File: LICENSE
|
6
6
|
Requires-Python: >=3.11
|
7
|
-
Requires-Dist: grpcio>=1.
|
8
|
-
Requires-Dist: protobuf
|
7
|
+
Requires-Dist: grpcio>=1.71.0
|
8
|
+
Requires-Dist: protobuf<6.0.dev0,>=5.26.1
|
9
9
|
Requires-Dist: pyjwt>=2.10.1
|
10
10
|
Requires-Dist: requests>=2.32.3
|
11
11
|
Description-Content-Type: text/markdown
|
@@ -1,4 +1,4 @@
|
|
1
|
-
divi/__init__.py,sha256=
|
1
|
+
divi/__init__.py,sha256=RmQ9wc0IZRqR9DN6hACn0YMUrhHC_AJ9gXsKrgvkcWs,396
|
2
2
|
divi/utils.py,sha256=3iVDogCjqQg0jEjhUKEuQ6vHPFp9w7kXNjSVwXt8KmI,574
|
3
3
|
divi/config/config.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
4
|
divi/decorators/__init__.py,sha256=HkyWdC1ctTsVFucCWCkj57JB4NmwONus1d2S2dUbvs4,110
|
@@ -15,8 +15,8 @@ divi/proto/metric/v1/metric.proto,sha256=YHRMLUW-MtakHuibR3PJ0s2w5KgV12kc4737iHw
|
|
15
15
|
divi/proto/metric/v1/metric_pb2.py,sha256=uvBhyy8QpaES3Jl82yVfsGazW5654XpRnsdGlpVgIRE,1974
|
16
16
|
divi/proto/metric/v1/metric_pb2.pyi,sha256=S7ipsojkD7QZAYefDE4b3PO99Yzc6mOdtSLxH3-b67A,1304
|
17
17
|
divi/proto/trace/v1/trace.proto,sha256=mh1nzEgufzRTJx3p8NNute-ozEwEYwClWJTdWUGGVA8,1284
|
18
|
-
divi/proto/trace/v1/trace_pb2.py,sha256=
|
19
|
-
divi/proto/trace/v1/trace_pb2.pyi,sha256=
|
18
|
+
divi/proto/trace/v1/trace_pb2.py,sha256=CuTkSSvhxCa1bk3Ku7tgLqRSovp_Gi52CZ0zLcLP2Ew,2327
|
19
|
+
divi/proto/trace/v1/trace_pb2.pyi,sha256=rPo2Oa3NWrINE_dyOVU9HUYHo5LY82Bm5TMenj5dnK8,2136
|
20
20
|
divi/services/__init__.py,sha256=TcVJ_gKxyPIcwhT9GgttqHeyk0icW44uE285KmUiyh4,185
|
21
21
|
divi/services/finish.py,sha256=XKPKGJ5cWd5H95G_VpIOlOZOLrcf9StoTs7ayRic2jY,173
|
22
22
|
divi/services/init.py,sha256=JVzRQ1m1DTHXFVGUMYnsv-vRvzCO8XFdR6MjIwOL_NY,433
|
@@ -39,7 +39,7 @@ divi/session/teardown.py,sha256=YiBz_3yCiljMFEofZ60VmRL5sb8WA5GT7EYF8nFznZ4,133
|
|
39
39
|
divi/signals/__init__.py,sha256=K1PaTAMwyBDsK6jJUg4QWy0xVJ_5MA6dlWiUyJeiSQA,44
|
40
40
|
divi/signals/trace/__init__.py,sha256=K1PaTAMwyBDsK6jJUg4QWy0xVJ_5MA6dlWiUyJeiSQA,44
|
41
41
|
divi/signals/trace/trace.py,sha256=y8Xio8Tp_e1tO8l_DAkUuzMrmENNKfIdklF0iWrjGYk,4547
|
42
|
-
divi-0.0.1.
|
43
|
-
divi-0.0.1.
|
44
|
-
divi-0.0.1.
|
45
|
-
divi-0.0.1.
|
42
|
+
divi-0.0.1.dev15.dist-info/METADATA,sha256=pV_UinVgV7tlDH6lgD1eYH-k_enKQGKe_FTDhenmjWM,467
|
43
|
+
divi-0.0.1.dev15.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
44
|
+
divi-0.0.1.dev15.dist-info/licenses/LICENSE,sha256=5OJuZ4wMMEV0DgF0tofhAlS_KLkaUsZwwwDS2U_GwQ0,1063
|
45
|
+
divi-0.0.1.dev15.dist-info/RECORD,,
|
File without changes
|
File without changes
|