lmnr 0.7.10__py3-none-any.whl → 0.7.12__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.
- lmnr/opentelemetry_lib/__init__.py +6 -0
- lmnr/opentelemetry_lib/decorators/__init__.py +1 -1
- lmnr/opentelemetry_lib/litellm/__init__.py +277 -32
- lmnr/opentelemetry_lib/litellm/utils.py +76 -0
- lmnr/opentelemetry_lib/opentelemetry/instrumentation/anthropic/__init__.py +136 -44
- lmnr/opentelemetry_lib/opentelemetry/instrumentation/anthropic/span_utils.py +93 -6
- lmnr/opentelemetry_lib/opentelemetry/instrumentation/anthropic/utils.py +155 -3
- lmnr/opentelemetry_lib/opentelemetry/instrumentation/cua_agent/__init__.py +100 -0
- lmnr/opentelemetry_lib/opentelemetry/instrumentation/cua_computer/__init__.py +477 -0
- lmnr/opentelemetry_lib/opentelemetry/instrumentation/cua_computer/utils.py +12 -0
- lmnr/opentelemetry_lib/opentelemetry/instrumentation/openai/shared/__init__.py +14 -0
- lmnr/opentelemetry_lib/opentelemetry/instrumentation/openai/utils.py +10 -1
- lmnr/opentelemetry_lib/opentelemetry/instrumentation/openai/v1/responses_wrappers.py +100 -8
- lmnr/opentelemetry_lib/tracing/__init__.py +9 -0
- lmnr/opentelemetry_lib/tracing/_instrument_initializers.py +56 -3
- lmnr/opentelemetry_lib/tracing/exporter.py +24 -9
- lmnr/opentelemetry_lib/tracing/instruments.py +8 -0
- lmnr/opentelemetry_lib/tracing/processor.py +26 -0
- lmnr/sdk/browser/browser_use_cdp_otel.py +12 -7
- lmnr/sdk/browser/bubus_otel.py +71 -0
- lmnr/sdk/browser/cdp_utils.py +318 -87
- lmnr/sdk/evaluations.py +22 -2
- lmnr/sdk/laminar.py +17 -3
- lmnr/version.py +1 -1
- {lmnr-0.7.10.dist-info → lmnr-0.7.12.dist-info}/METADATA +50 -50
- {lmnr-0.7.10.dist-info → lmnr-0.7.12.dist-info}/RECORD +28 -24
- {lmnr-0.7.10.dist-info → lmnr-0.7.12.dist-info}/WHEEL +0 -0
- {lmnr-0.7.10.dist-info → lmnr-0.7.12.dist-info}/entry_points.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: lmnr
|
3
|
-
Version: 0.7.
|
3
|
+
Version: 0.7.12
|
4
4
|
Summary: Python SDK for Laminar
|
5
5
|
Author: lmnr.ai
|
6
6
|
Author-email: lmnr.ai <founders@lmnr.ai>
|
@@ -19,59 +19,59 @@ Requires-Dist: opentelemetry-exporter-otlp-proto-http>=1.33.0
|
|
19
19
|
Requires-Dist: opentelemetry-exporter-otlp-proto-grpc>=1.33.0
|
20
20
|
Requires-Dist: opentelemetry-instrumentation>=0.54b0
|
21
21
|
Requires-Dist: opentelemetry-semantic-conventions>=0.54b0
|
22
|
-
Requires-Dist: opentelemetry-semantic-conventions-ai>=0.4.
|
22
|
+
Requires-Dist: opentelemetry-semantic-conventions-ai>=0.4.13
|
23
23
|
Requires-Dist: tqdm>=4.0
|
24
24
|
Requires-Dist: tenacity>=8.0
|
25
25
|
Requires-Dist: grpcio>=1
|
26
|
-
Requires-Dist: httpx>=0.
|
27
|
-
Requires-Dist: orjson>=3.
|
26
|
+
Requires-Dist: httpx>=0.24.0
|
27
|
+
Requires-Dist: orjson>=3.0.0
|
28
28
|
Requires-Dist: packaging>=22.0
|
29
|
-
Requires-Dist: opentelemetry-instrumentation-alephalpha>=0.
|
30
|
-
Requires-Dist: opentelemetry-instrumentation-alephalpha>=0.
|
31
|
-
Requires-Dist: opentelemetry-instrumentation-bedrock>=0.
|
32
|
-
Requires-Dist: opentelemetry-instrumentation-chromadb>=0.
|
33
|
-
Requires-Dist: opentelemetry-instrumentation-cohere>=0.
|
34
|
-
Requires-Dist: opentelemetry-instrumentation-crewai>=0.
|
35
|
-
Requires-Dist: opentelemetry-instrumentation-haystack>=0.
|
36
|
-
Requires-Dist: opentelemetry-instrumentation-lancedb>=0.
|
37
|
-
Requires-Dist: opentelemetry-instrumentation-langchain>=0.
|
38
|
-
Requires-Dist: opentelemetry-instrumentation-llamaindex>=0.
|
39
|
-
Requires-Dist: opentelemetry-instrumentation-marqo>=0.
|
40
|
-
Requires-Dist: opentelemetry-instrumentation-mcp>=0.
|
41
|
-
Requires-Dist: opentelemetry-instrumentation-milvus>=0.
|
42
|
-
Requires-Dist: opentelemetry-instrumentation-mistralai>=0.
|
43
|
-
Requires-Dist: opentelemetry-instrumentation-ollama>=0.
|
44
|
-
Requires-Dist: opentelemetry-instrumentation-pinecone>=0.
|
45
|
-
Requires-Dist: opentelemetry-instrumentation-qdrant>=0.
|
46
|
-
Requires-Dist: opentelemetry-instrumentation-replicate>=0.
|
47
|
-
Requires-Dist: opentelemetry-instrumentation-sagemaker>=0.
|
48
|
-
Requires-Dist: opentelemetry-instrumentation-together>=0.
|
49
|
-
Requires-Dist: opentelemetry-instrumentation-transformers>=0.
|
50
|
-
Requires-Dist: opentelemetry-instrumentation-vertexai>=0.
|
51
|
-
Requires-Dist: opentelemetry-instrumentation-watsonx>=0.
|
52
|
-
Requires-Dist: opentelemetry-instrumentation-weaviate>=0.
|
53
|
-
Requires-Dist: opentelemetry-instrumentation-bedrock>=0.
|
54
|
-
Requires-Dist: opentelemetry-instrumentation-chromadb>=0.
|
55
|
-
Requires-Dist: opentelemetry-instrumentation-cohere>=0.
|
56
|
-
Requires-Dist: opentelemetry-instrumentation-crewai>=0.
|
57
|
-
Requires-Dist: opentelemetry-instrumentation-haystack>=0.
|
58
|
-
Requires-Dist: opentelemetry-instrumentation-lancedb>=0.
|
59
|
-
Requires-Dist: opentelemetry-instrumentation-langchain>=0.
|
60
|
-
Requires-Dist: opentelemetry-instrumentation-llamaindex>=0.
|
61
|
-
Requires-Dist: opentelemetry-instrumentation-marqo>=0.
|
62
|
-
Requires-Dist: opentelemetry-instrumentation-mcp>=0.
|
63
|
-
Requires-Dist: opentelemetry-instrumentation-milvus>=0.
|
64
|
-
Requires-Dist: opentelemetry-instrumentation-mistralai>=0.
|
65
|
-
Requires-Dist: opentelemetry-instrumentation-ollama>=0.
|
66
|
-
Requires-Dist: opentelemetry-instrumentation-pinecone>=0.
|
67
|
-
Requires-Dist: opentelemetry-instrumentation-qdrant>=0.
|
68
|
-
Requires-Dist: opentelemetry-instrumentation-replicate>=0.
|
69
|
-
Requires-Dist: opentelemetry-instrumentation-sagemaker>=0.
|
70
|
-
Requires-Dist: opentelemetry-instrumentation-together>=0.
|
71
|
-
Requires-Dist: opentelemetry-instrumentation-transformers>=0.
|
72
|
-
Requires-Dist: opentelemetry-instrumentation-vertexai>=0.
|
73
|
-
Requires-Dist: opentelemetry-instrumentation-watsonx>=0.
|
74
|
-
Requires-Dist: opentelemetry-instrumentation-weaviate>=0.
|
29
|
+
Requires-Dist: opentelemetry-instrumentation-alephalpha>=0.46.2 ; extra == 'alephalpha'
|
30
|
+
Requires-Dist: opentelemetry-instrumentation-alephalpha>=0.46.2 ; extra == 'all'
|
31
|
+
Requires-Dist: opentelemetry-instrumentation-bedrock>=0.46.2 ; extra == 'all'
|
32
|
+
Requires-Dist: opentelemetry-instrumentation-chromadb>=0.46.2 ; extra == 'all'
|
33
|
+
Requires-Dist: opentelemetry-instrumentation-cohere>=0.46.2 ; extra == 'all'
|
34
|
+
Requires-Dist: opentelemetry-instrumentation-crewai>=0.46.2 ; extra == 'all'
|
35
|
+
Requires-Dist: opentelemetry-instrumentation-haystack>=0.46.2 ; extra == 'all'
|
36
|
+
Requires-Dist: opentelemetry-instrumentation-lancedb>=0.46.2 ; extra == 'all'
|
37
|
+
Requires-Dist: opentelemetry-instrumentation-langchain>=0.46.2 ; extra == 'all'
|
38
|
+
Requires-Dist: opentelemetry-instrumentation-llamaindex>=0.46.2 ; extra == 'all'
|
39
|
+
Requires-Dist: opentelemetry-instrumentation-marqo>=0.46.2 ; extra == 'all'
|
40
|
+
Requires-Dist: opentelemetry-instrumentation-mcp>=0.46.2 ; extra == 'all'
|
41
|
+
Requires-Dist: opentelemetry-instrumentation-milvus>=0.46.2 ; extra == 'all'
|
42
|
+
Requires-Dist: opentelemetry-instrumentation-mistralai>=0.46.2 ; extra == 'all'
|
43
|
+
Requires-Dist: opentelemetry-instrumentation-ollama>=0.46.2 ; extra == 'all'
|
44
|
+
Requires-Dist: opentelemetry-instrumentation-pinecone>=0.46.2 ; extra == 'all'
|
45
|
+
Requires-Dist: opentelemetry-instrumentation-qdrant>=0.46.2 ; extra == 'all'
|
46
|
+
Requires-Dist: opentelemetry-instrumentation-replicate>=0.46.2 ; extra == 'all'
|
47
|
+
Requires-Dist: opentelemetry-instrumentation-sagemaker>=0.46.2 ; extra == 'all'
|
48
|
+
Requires-Dist: opentelemetry-instrumentation-together>=0.46.2 ; extra == 'all'
|
49
|
+
Requires-Dist: opentelemetry-instrumentation-transformers>=0.46.2 ; extra == 'all'
|
50
|
+
Requires-Dist: opentelemetry-instrumentation-vertexai>=0.46.2 ; extra == 'all'
|
51
|
+
Requires-Dist: opentelemetry-instrumentation-watsonx>=0.46.2 ; extra == 'all'
|
52
|
+
Requires-Dist: opentelemetry-instrumentation-weaviate>=0.46.2 ; extra == 'all'
|
53
|
+
Requires-Dist: opentelemetry-instrumentation-bedrock>=0.46.2 ; extra == 'bedrock'
|
54
|
+
Requires-Dist: opentelemetry-instrumentation-chromadb>=0.46.2 ; extra == 'chromadb'
|
55
|
+
Requires-Dist: opentelemetry-instrumentation-cohere>=0.46.2 ; extra == 'cohere'
|
56
|
+
Requires-Dist: opentelemetry-instrumentation-crewai>=0.46.2 ; extra == 'crewai'
|
57
|
+
Requires-Dist: opentelemetry-instrumentation-haystack>=0.46.2 ; extra == 'haystack'
|
58
|
+
Requires-Dist: opentelemetry-instrumentation-lancedb>=0.46.2 ; extra == 'lancedb'
|
59
|
+
Requires-Dist: opentelemetry-instrumentation-langchain>=0.46.2 ; extra == 'langchain'
|
60
|
+
Requires-Dist: opentelemetry-instrumentation-llamaindex>=0.46.2 ; extra == 'llamaindex'
|
61
|
+
Requires-Dist: opentelemetry-instrumentation-marqo>=0.46.2 ; extra == 'marqo'
|
62
|
+
Requires-Dist: opentelemetry-instrumentation-mcp>=0.46.2 ; extra == 'mcp'
|
63
|
+
Requires-Dist: opentelemetry-instrumentation-milvus>=0.46.2 ; extra == 'milvus'
|
64
|
+
Requires-Dist: opentelemetry-instrumentation-mistralai>=0.46.2 ; extra == 'mistralai'
|
65
|
+
Requires-Dist: opentelemetry-instrumentation-ollama>=0.46.2 ; extra == 'ollama'
|
66
|
+
Requires-Dist: opentelemetry-instrumentation-pinecone>=0.46.2 ; extra == 'pinecone'
|
67
|
+
Requires-Dist: opentelemetry-instrumentation-qdrant>=0.46.2 ; extra == 'qdrant'
|
68
|
+
Requires-Dist: opentelemetry-instrumentation-replicate>=0.46.2 ; extra == 'replicate'
|
69
|
+
Requires-Dist: opentelemetry-instrumentation-sagemaker>=0.46.2 ; extra == 'sagemaker'
|
70
|
+
Requires-Dist: opentelemetry-instrumentation-together>=0.46.2 ; extra == 'together'
|
71
|
+
Requires-Dist: opentelemetry-instrumentation-transformers>=0.46.2 ; extra == 'transformers'
|
72
|
+
Requires-Dist: opentelemetry-instrumentation-vertexai>=0.46.2 ; extra == 'vertexai'
|
73
|
+
Requires-Dist: opentelemetry-instrumentation-watsonx>=0.46.2 ; extra == 'watsonx'
|
74
|
+
Requires-Dist: opentelemetry-instrumentation-weaviate>=0.46.2 ; extra == 'weaviate'
|
75
75
|
Requires-Python: >=3.10, <4
|
76
76
|
Provides-Extra: alephalpha
|
77
77
|
Provides-Extra: all
|
@@ -1,18 +1,21 @@
|
|
1
1
|
lmnr/__init__.py,sha256=8be7b56ab62735fd54ca90a0642784c6153ed1d6e0f12734619ca0618dd9fbdb,1398
|
2
2
|
lmnr/cli.py,sha256=b8780b51f37fe9e20db5495c41d3ad3837f6b48f408b09a58688d017850c0796,6047
|
3
3
|
lmnr/opentelemetry_lib/.flake8,sha256=6c2c6e0e51b1dd8439e501ca3e21899277076a787da868d0254ba37056b79405,150
|
4
|
-
lmnr/opentelemetry_lib/__init__.py,sha256=
|
5
|
-
lmnr/opentelemetry_lib/decorators/__init__.py,sha256=
|
6
|
-
lmnr/opentelemetry_lib/litellm/__init__.py,sha256=
|
7
|
-
lmnr/opentelemetry_lib/litellm/utils.py,sha256=
|
8
|
-
lmnr/opentelemetry_lib/opentelemetry/instrumentation/anthropic/__init__.py,sha256=
|
4
|
+
lmnr/opentelemetry_lib/__init__.py,sha256=abdd649b6c906a7dd2985b5a0903067904a457341d0da28a559c89a9faf939c7,2572
|
5
|
+
lmnr/opentelemetry_lib/decorators/__init__.py,sha256=d18206ae4e65147b3101b82b3bb7413f765149c5523616a6a06be1939b0878b8,11793
|
6
|
+
lmnr/opentelemetry_lib/litellm/__init__.py,sha256=af1d6c1067c1d30b35f5bdfdbc7ad3565f1178a571fd770974c411fef7b5ff0f,27478
|
7
|
+
lmnr/opentelemetry_lib/litellm/utils.py,sha256=642c3857e09d8c8dfc327c23e711687c15cbed6c0ba3f0a7be7751356beb8b43,3427
|
8
|
+
lmnr/opentelemetry_lib/opentelemetry/instrumentation/anthropic/__init__.py,sha256=897b1a255ce2370d196018abcaf5942295a374cf367b668a3b418c3bddd29251,26461
|
9
9
|
lmnr/opentelemetry_lib/opentelemetry/instrumentation/anthropic/config.py,sha256=972919b821b9b7e5dc7cd191ba7e78b30b6efa5d63514e8cb301996d6386392c,369
|
10
10
|
lmnr/opentelemetry_lib/opentelemetry/instrumentation/anthropic/event_emitter.py,sha256=812b3ea1c5a04412113d4dd770717561861595f9eec5b94dd8174c6ddfb7572a,6831
|
11
11
|
lmnr/opentelemetry_lib/opentelemetry/instrumentation/anthropic/event_models.py,sha256=3c27c21b1aeb02bc19a91fb8c05717ae1c10ab4b01300c664aba42e0f50cb5a3,876
|
12
|
-
lmnr/opentelemetry_lib/opentelemetry/instrumentation/anthropic/span_utils.py,sha256=
|
12
|
+
lmnr/opentelemetry_lib/opentelemetry/instrumentation/anthropic/span_utils.py,sha256=4b52dacf32483bd927ab2c7e895500bbd70c754858c4879984ee48e42a7c9bd7,14912
|
13
13
|
lmnr/opentelemetry_lib/opentelemetry/instrumentation/anthropic/streaming.py,sha256=7ca9f49e4d9a3bac292d13a8ee9827fdfb8a46d13ebdcbbfbac9c5584d11eaf3,13441
|
14
|
-
lmnr/opentelemetry_lib/opentelemetry/instrumentation/anthropic/utils.py,sha256=
|
14
|
+
lmnr/opentelemetry_lib/opentelemetry/instrumentation/anthropic/utils.py,sha256=8d59ae659c85b308180cc12ab19dd617c9476475c5f4666e7dcd162050db9141,10413
|
15
15
|
lmnr/opentelemetry_lib/opentelemetry/instrumentation/anthropic/version.py,sha256=5aacde4ca55ef50ed07a239ad8a86889e0621b1cc72be19bd93be7c9e20910a9,23
|
16
|
+
lmnr/opentelemetry_lib/opentelemetry/instrumentation/cua_agent/__init__.py,sha256=48391d935883506fe1dc4f6ace6011ecaed76a8f82f8026ccb553b2180afdb8c,3455
|
17
|
+
lmnr/opentelemetry_lib/opentelemetry/instrumentation/cua_computer/__init__.py,sha256=61d2681e99c3084d1bcc27f7ca551f44a70126df6c5f23320c1e9c1654e05c42,15037
|
18
|
+
lmnr/opentelemetry_lib/opentelemetry/instrumentation/cua_computer/utils.py,sha256=19090d4d9a0511645f66112ebe6f05a9993905b11d8ae3060dab2dcc4c1a5fb2,329
|
16
19
|
lmnr/opentelemetry_lib/opentelemetry/instrumentation/google_genai/__init__.py,sha256=e0f5283e5d960e91766c2658af12837e43772d7c23f13ee44365a145e891e6c4,19453
|
17
20
|
lmnr/opentelemetry_lib/opentelemetry/instrumentation/google_genai/config.py,sha256=db9cdebc9ee0dccb493ffe608eede3047efec20ed26c3924b72b2e50edbd92c2,245
|
18
21
|
lmnr/opentelemetry_lib/opentelemetry/instrumentation/google_genai/schema_utils.py,sha256=b10619e76e5893f8b891f92531d29dcf6651e8f9a7dcbf81c3f35341ce311f6e,753
|
@@ -27,7 +30,7 @@ lmnr/opentelemetry_lib/opentelemetry/instrumentation/groq/version.py,sha256=5aac
|
|
27
30
|
lmnr/opentelemetry_lib/opentelemetry/instrumentation/langgraph/__init__.py,sha256=b77a70771741b95006cb27d7f9fc26e4b79b1f10ca24b93a3160a458c3397a9d,3313
|
28
31
|
lmnr/opentelemetry_lib/opentelemetry/instrumentation/langgraph/utils.py,sha256=9dff6c2595e79edb38818668aed1220efc188d8a982594c04f4ceeb6e3ff47a6,1512
|
29
32
|
lmnr/opentelemetry_lib/opentelemetry/instrumentation/openai/__init__.py,sha256=8b91dc16af927eee75b969c0980c606680b347a87f8533bc0f4a092e5ec6e5c9,2071
|
30
|
-
lmnr/opentelemetry_lib/opentelemetry/instrumentation/openai/shared/__init__.py,sha256=
|
33
|
+
lmnr/opentelemetry_lib/opentelemetry/instrumentation/openai/shared/__init__.py,sha256=626be64cde043335c1d0fea51e0788a8c35ffaed28dae08281e7f750484dfcbc,15597
|
31
34
|
lmnr/opentelemetry_lib/opentelemetry/instrumentation/openai/shared/chat_wrappers.py,sha256=98ebc2a7f7f4774ff4ab1fd1b612a5b049ae6f714bb60cd1c286d3a756ddc083,39056
|
32
35
|
lmnr/opentelemetry_lib/opentelemetry/instrumentation/openai/shared/completion_wrappers.py,sha256=3a45c07d9d0f37baf409a48e2a1b577f28041c623c41f59ada1c87b94285ae3b,9537
|
33
36
|
lmnr/opentelemetry_lib/opentelemetry/instrumentation/openai/shared/config.py,sha256=8016e4af0291a77484ce88d7d1ca06146b1229ae0e0a0f46e042faf75b456a8f,507
|
@@ -35,24 +38,24 @@ lmnr/opentelemetry_lib/opentelemetry/instrumentation/openai/shared/embeddings_wr
|
|
35
38
|
lmnr/opentelemetry_lib/opentelemetry/instrumentation/openai/shared/event_emitter.py,sha256=9c96455b5ca2064dd3a9fb570d78b14ebbdf3d02f8e33255ee9e301c31336c9e,3043
|
36
39
|
lmnr/opentelemetry_lib/opentelemetry/instrumentation/openai/shared/event_models.py,sha256=3c27c21b1aeb02bc19a91fb8c05717ae1c10ab4b01300c664aba42e0f50cb5a3,876
|
37
40
|
lmnr/opentelemetry_lib/opentelemetry/instrumentation/openai/shared/image_gen_wrappers.py,sha256=9650a0e4ad2d3bfb2a072590da189bcf4f807aca070945af26a9f9b99d779b77,2021
|
38
|
-
lmnr/opentelemetry_lib/opentelemetry/instrumentation/openai/utils.py,sha256=
|
41
|
+
lmnr/opentelemetry_lib/opentelemetry/instrumentation/openai/utils.py,sha256=6369cad1325daf6644dbeb613c6bada21ce8665b9fd25862a47343194fe69469,5015
|
39
42
|
lmnr/opentelemetry_lib/opentelemetry/instrumentation/openai/v0/__init__.py,sha256=7f43421e052bd8f64d5d5b03170a3b7187c2ce038362fa15b5d1d0c43bc1a40d,6143
|
40
43
|
lmnr/opentelemetry_lib/opentelemetry/instrumentation/openai/v1/__init__.py,sha256=7bdbf691ac89efb42ade686b7dbe69bd139a84f48482a013b7b68d3baa5b9c98,13527
|
41
44
|
lmnr/opentelemetry_lib/opentelemetry/instrumentation/openai/v1/assistant_wrappers.py,sha256=558036c734559b3526647c1b18cfb986699e8fb322855af72ea054c2e458f721,10404
|
42
45
|
lmnr/opentelemetry_lib/opentelemetry/instrumentation/openai/v1/event_handler_wrapper.py,sha256=4809cde003e5892822828b373aa3e43a8adbaee4ff443f198401003f43c15e8a,4366
|
43
|
-
lmnr/opentelemetry_lib/opentelemetry/instrumentation/openai/v1/responses_wrappers.py,sha256=
|
46
|
+
lmnr/opentelemetry_lib/opentelemetry/instrumentation/openai/v1/responses_wrappers.py,sha256=e465cd40216e481d7ff533ef077e052c30ce029584320589721148922981db37,28922
|
44
47
|
lmnr/opentelemetry_lib/opentelemetry/instrumentation/openai/version.py,sha256=4f39aaa913f3e49b0c174bc23028687d00bfaffc745bd3fe241e0ae6b442bed1,24
|
45
48
|
lmnr/opentelemetry_lib/opentelemetry/instrumentation/openhands_ai/__init__.py,sha256=8f5f73528e1e0ced28938cbedf5b9774b408e178ae42191284f4630d0aa99beb,13648
|
46
49
|
lmnr/opentelemetry_lib/opentelemetry/instrumentation/opentelemetry/__init__.py,sha256=1f86cdf738e2f68586b0a4569bb1e40edddd85c529f511ef49945ddb7b61fab5,2648
|
47
50
|
lmnr/opentelemetry_lib/opentelemetry/instrumentation/skyvern/__init__.py,sha256=764e4fe979fb08d7821419a3cc5c3ae89a6664b626ef928259f8f175c939eaea,6334
|
48
51
|
lmnr/opentelemetry_lib/opentelemetry/instrumentation/threading/__init__.py,sha256=90aa8558467d7e469fe1a6c75372c113da403557715f03b522b2fab94b287c40,6320
|
49
|
-
lmnr/opentelemetry_lib/tracing/__init__.py,sha256=
|
50
|
-
lmnr/opentelemetry_lib/tracing/_instrument_initializers.py,sha256=
|
52
|
+
lmnr/opentelemetry_lib/tracing/__init__.py,sha256=6e29f4d8d7ce1b63567f18f469914c9673594cfbbfb084ebc876fc5443936994,11322
|
53
|
+
lmnr/opentelemetry_lib/tracing/_instrument_initializers.py,sha256=4f4447f1eabf8330380b48376e297ae26a2d86f3b56e5824ac0bdbf0e0c1f25a,17166
|
51
54
|
lmnr/opentelemetry_lib/tracing/attributes.py,sha256=a879e337ff4e8569a4454544d303ccbc3b04bd42e1cdb765eb563aeaa08f731d,1653
|
52
55
|
lmnr/opentelemetry_lib/tracing/context.py,sha256=83f842be0fc29a96647cbf005c39ea761b0fb5913c4102f965411f47906a6135,4103
|
53
|
-
lmnr/opentelemetry_lib/tracing/exporter.py,sha256=
|
54
|
-
lmnr/opentelemetry_lib/tracing/instruments.py,sha256=
|
55
|
-
lmnr/opentelemetry_lib/tracing/processor.py,sha256=
|
56
|
+
lmnr/opentelemetry_lib/tracing/exporter.py,sha256=a5a1e7627061f30109c0b7c4c951a2a1ed2e346af33c66804b7c981dc3550468,2470
|
57
|
+
lmnr/opentelemetry_lib/tracing/instruments.py,sha256=a748249130f8610e9d9f64f90f082e643f300765ebf46899a51bd9b6d6f5a03e,6066
|
58
|
+
lmnr/opentelemetry_lib/tracing/processor.py,sha256=74a4c6967c6b0b0672d1292c626fe294375f426a87056362f56c5c4195647d0b,4279
|
56
59
|
lmnr/opentelemetry_lib/tracing/tracer.py,sha256=33769a9a97385f5697eb0e0a6b1813a57ed956c7a8379d7ac2523e700e7dd528,1362
|
57
60
|
lmnr/opentelemetry_lib/utils/__init__.py,sha256=a4d85fd06def4dde5c728734de2d4c5c36eb89c49a8aa09b8b50cb5a149e90af,604
|
58
61
|
lmnr/opentelemetry_lib/utils/json_encoder.py,sha256=74ae9bfdac6bef42182fb56ff9bbb8c27b6f0c3bb29eda2ab0769d76a5fb3f9f,463
|
@@ -61,9 +64,10 @@ lmnr/opentelemetry_lib/utils/wrappers.py,sha256=f7b1134809f2c408976a71e661fee5cb
|
|
61
64
|
lmnr/py.typed,sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855,0
|
62
65
|
lmnr/sdk/__init__.py,sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855,0
|
63
66
|
lmnr/sdk/browser/__init__.py,sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855,0
|
64
|
-
lmnr/sdk/browser/browser_use_cdp_otel.py,sha256=
|
67
|
+
lmnr/sdk/browser/browser_use_cdp_otel.py,sha256=4ee0ce6b60b8b20c8a862d5ebce9f2a99dbf0867d549cc44455294ab1281137d,3379
|
65
68
|
lmnr/sdk/browser/browser_use_otel.py,sha256=e5549878c07bad451efef9f460ce52202284cff50075bce700ca61749102c5eb,5065
|
66
|
-
lmnr/sdk/browser/
|
69
|
+
lmnr/sdk/browser/bubus_otel.py,sha256=92991ba5f6b5e2a6e131ab57df7c383345b57982acfdb1437540a1609ad1f876,2465
|
70
|
+
lmnr/sdk/browser/cdp_utils.py,sha256=e49b2a526f4c6dfc0646e26d33c0f4beebbc9dad5d5d2b0389737b339c6cc0b4,35067
|
67
71
|
lmnr/sdk/browser/patchright_otel.py,sha256=9d22ab1f28f1eddbcfd0032a14fe306bfe00bfc7f11128cb99836c4dd15fb7c8,4800
|
68
72
|
lmnr/sdk/browser/playwright_otel.py,sha256=859d220d856c8fe7104863efca0c6a3ed5464d778675e07d7f79c48f73d5e838,10416
|
69
73
|
lmnr/sdk/browser/pw_utils.py,sha256=a75769eb977d8e56c38a0eefad09b87550b872f8d4df186b36a8c4d4af2bffaf,29021
|
@@ -88,13 +92,13 @@ lmnr/sdk/client/synchronous/sync_client.py,sha256=0bebe88e3aed689505e9ed3d32036f
|
|
88
92
|
lmnr/sdk/datasets.py,sha256=3fd851c5f97bf88eaa84b1451a053eaff23b4497cbb45eac2f9ea0e5f2886c00,1708
|
89
93
|
lmnr/sdk/decorators.py,sha256=c709b76a814e019c919fd811591850787a2f266b7b6f46123f66ddd92e1092d5,6920
|
90
94
|
lmnr/sdk/eval_control.py,sha256=291394ac385c653ae9b5167e871bebeb4fe8fc6b7ff2ed38e636f87015dcba86,184
|
91
|
-
lmnr/sdk/evaluations.py,sha256=
|
92
|
-
lmnr/sdk/laminar.py,sha256=
|
95
|
+
lmnr/sdk/evaluations.py,sha256=7e55cbca77fa32cb64cb77aed8076a1994258a5b652c7f1d45231928e4aefe26,23885
|
96
|
+
lmnr/sdk/laminar.py,sha256=1bd434297a1487679093fed27113d4b031a4129d65b0517f6a668dad75f4c4bd,38106
|
93
97
|
lmnr/sdk/log.py,sha256=9edfd83263f0d4845b1b2d1beeae2b4ed3f8628de941f371a893d72b79c348d4,2213
|
94
98
|
lmnr/sdk/types.py,sha256=f8a8368e225c4d2f82df54d92f029065afb60c3eff494c77c6e574963ed524ff,13454
|
95
99
|
lmnr/sdk/utils.py,sha256=0c5a81c305dcd3922f4b31c4f42cf83719c03888725838395adae167de92db76,5019
|
96
|
-
lmnr/version.py,sha256=
|
97
|
-
lmnr-0.7.
|
98
|
-
lmnr-0.7.
|
99
|
-
lmnr-0.7.
|
100
|
-
lmnr-0.7.
|
100
|
+
lmnr/version.py,sha256=c8627d415d619760cd3a9ef67286da4e10a35e6bf840e9e24f3221987e222aa8,1322
|
101
|
+
lmnr-0.7.12.dist-info/WHEEL,sha256=ab6157bc637547491fb4567cd7ddf26b04d63382916ca16c29a5c8e94c9c9ef7,79
|
102
|
+
lmnr-0.7.12.dist-info/entry_points.txt,sha256=abdf3411b7dd2d7329a241f2da6669bab4e314a747a586ecdb9f888f3035003c,39
|
103
|
+
lmnr-0.7.12.dist-info/METADATA,sha256=a67d7715fe3222f9824606190898cc679ca3d0215851dac36c6a966aa5bb6122,14195
|
104
|
+
lmnr-0.7.12.dist-info/RECORD,,
|
File without changes
|
File without changes
|