monocle-apptrace 0.3.1__py3-none-any.whl → 0.4.0__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.

Potentially problematic release.


This version of monocle-apptrace might be problematic. Click here for more details.

Files changed (38) hide show
  1. monocle_apptrace/exporters/aws/s3_exporter.py +3 -1
  2. monocle_apptrace/exporters/azure/blob_exporter.py +2 -2
  3. monocle_apptrace/exporters/base_exporter.py +10 -4
  4. monocle_apptrace/exporters/file_exporter.py +19 -4
  5. monocle_apptrace/exporters/monocle_exporters.py +3 -3
  6. monocle_apptrace/exporters/okahu/okahu_exporter.py +5 -2
  7. monocle_apptrace/instrumentation/common/constants.py +9 -5
  8. monocle_apptrace/instrumentation/common/instrumentor.py +24 -13
  9. monocle_apptrace/instrumentation/common/span_handler.py +79 -38
  10. monocle_apptrace/instrumentation/common/utils.py +90 -54
  11. monocle_apptrace/instrumentation/common/wrapper.py +193 -40
  12. monocle_apptrace/instrumentation/common/wrapper_method.py +13 -6
  13. monocle_apptrace/instrumentation/metamodel/aiohttp/__init__.py +0 -0
  14. monocle_apptrace/instrumentation/metamodel/aiohttp/_helper.py +66 -0
  15. monocle_apptrace/instrumentation/metamodel/aiohttp/entities/http.py +51 -0
  16. monocle_apptrace/instrumentation/metamodel/aiohttp/methods.py +13 -0
  17. monocle_apptrace/instrumentation/metamodel/flask/_helper.py +8 -3
  18. monocle_apptrace/instrumentation/metamodel/flask/entities/http.py +0 -1
  19. monocle_apptrace/instrumentation/metamodel/haystack/_helper.py +17 -4
  20. monocle_apptrace/instrumentation/metamodel/haystack/entities/inference.py +1 -1
  21. monocle_apptrace/instrumentation/metamodel/haystack/methods.py +8 -1
  22. monocle_apptrace/instrumentation/metamodel/langchain/entities/inference.py +1 -1
  23. monocle_apptrace/instrumentation/metamodel/llamaindex/_helper.py +13 -9
  24. monocle_apptrace/instrumentation/metamodel/llamaindex/entities/inference.py +1 -1
  25. monocle_apptrace/instrumentation/metamodel/llamaindex/methods.py +14 -0
  26. monocle_apptrace/instrumentation/metamodel/openai/_helper.py +26 -5
  27. monocle_apptrace/instrumentation/metamodel/openai/entities/inference.py +184 -26
  28. monocle_apptrace/instrumentation/metamodel/openai/methods.py +6 -6
  29. monocle_apptrace/instrumentation/metamodel/requests/_helper.py +1 -1
  30. monocle_apptrace/instrumentation/metamodel/teamsai/_helper.py +55 -5
  31. monocle_apptrace/instrumentation/metamodel/teamsai/entities/inference/actionplanner_output_processor.py +13 -33
  32. monocle_apptrace/instrumentation/metamodel/teamsai/entities/inference/teamsai_output_processor.py +24 -20
  33. monocle_apptrace/instrumentation/metamodel/teamsai/methods.py +54 -8
  34. {monocle_apptrace-0.3.1.dist-info → monocle_apptrace-0.4.0.dist-info}/METADATA +22 -18
  35. {monocle_apptrace-0.3.1.dist-info → monocle_apptrace-0.4.0.dist-info}/RECORD +38 -34
  36. {monocle_apptrace-0.3.1.dist-info → monocle_apptrace-0.4.0.dist-info}/WHEEL +0 -0
  37. {monocle_apptrace-0.3.1.dist-info → monocle_apptrace-0.4.0.dist-info}/licenses/LICENSE +0 -0
  38. {monocle_apptrace-0.3.1.dist-info → monocle_apptrace-0.4.0.dist-info}/licenses/NOTICE +0 -0
@@ -2,7 +2,7 @@ from monocle_apptrace.instrumentation.metamodel.teamsai import (
2
2
  _helper,
3
3
  )
4
4
  ACTIONPLANNER_OUTPUT_PROCESSOR = {
5
- "type": "inference",
5
+ "type": "generic",
6
6
  "attributes": [
7
7
  [
8
8
  {
@@ -28,42 +28,22 @@ ACTIONPLANNER_OUTPUT_PROCESSOR = {
28
28
  {
29
29
  "attribute": "tokenizer",
30
30
  "accessor": lambda arguments: arguments["instance"]._options.tokenizer.__class__.__name__ if hasattr(arguments["instance"], "_options") else "GPTTokenizer"
31
+ },
32
+ {
33
+ "attribute": "prompt_name",
34
+ "accessor": _helper.capture_prompt_info
35
+ },
36
+ {
37
+ "attribute": "validator",
38
+ "accessor": lambda arguments: arguments["kwargs"].get("validator").__class__.__name__ if arguments.get("kwargs", {}).get("validator") else "DefaultResponseValidator"
39
+ },
40
+ {
41
+ "attribute": "memory_type",
42
+ "accessor": lambda arguments: arguments["kwargs"].get("memory").__class__.__name__ if arguments.get("kwargs", {}).get("memory") else "unknown"
31
43
  }
32
44
  ]
33
45
  ],
34
46
  "events": [
35
- {
36
- "name": "data.input",
37
- "_comment": "input configuration to ActionPlanner",
38
- "attributes": [
39
- {
40
- "attribute": "prompt_name",
41
- "accessor": _helper.capture_prompt_info
42
- },
43
- {
44
- "attribute": "validator",
45
- "accessor": lambda arguments: arguments["kwargs"].get("validator").__class__.__name__ if arguments.get("kwargs", {}).get("validator") else "DefaultResponseValidator"
46
- },
47
- {
48
- "attribute": "memory_type",
49
- "accessor": lambda arguments: arguments["kwargs"].get("memory").__class__.__name__ if arguments.get("kwargs", {}).get("memory") else "unknown"
50
- }
51
- ]
52
- },
53
- {
54
- "name": "data.output",
55
- "_comment": "output from ActionPlanner",
56
- "attributes": [
57
- {
58
- "attribute": "status",
59
- "accessor": lambda arguments: _helper.status_check(arguments)
60
- },
61
- {
62
- "attribute": "response",
63
- "accessor": lambda arguments: arguments["result"].message.content if hasattr(arguments["result"], "message") else str(arguments["result"])
64
- }
65
- ]
66
- },
67
47
  {
68
48
  "name": "metadata",
69
49
  "attributes": [
@@ -1,22 +1,23 @@
1
1
  from monocle_apptrace.instrumentation.metamodel.teamsai import (
2
2
  _helper,
3
3
  )
4
+ from monocle_apptrace.instrumentation.common.utils import get_llm_type
4
5
  TEAMAI_OUTPUT_PROCESSOR = {
5
- "type": "inference",
6
+ "type": "inference.framework",
6
7
  "attributes": [
7
8
  [
8
9
  {
9
10
  "_comment": "provider type, name, deployment",
10
11
  "attribute": "type",
11
- "accessor": lambda arguments: "teams.openai"
12
+ "accessor": lambda arguments: 'inference.' + (get_llm_type(arguments['instance']._client) or 'generic')
12
13
  },
13
14
  {
14
15
  "attribute": "provider_name",
15
- "accessor": lambda arguments: "Microsoft Teams AI"
16
+ "accessor": lambda arguments: _helper.extract_provider_name(arguments['instance'])
16
17
  },
17
18
  {
18
- "attribute": "deployment",
19
- "accessor": lambda arguments: arguments["instance"]._options.default_model if hasattr(arguments["instance"], "_options") else "unknown"
19
+ "attribute": "inference_endpoint",
20
+ "accessor": lambda arguments: _helper.extract_inference_endpoint(arguments['instance'])
20
21
  }
21
22
  ],
22
23
  [
@@ -25,6 +26,11 @@ TEAMAI_OUTPUT_PROCESSOR = {
25
26
  "attribute": "name",
26
27
  "accessor": lambda arguments: arguments["instance"]._options.default_model if hasattr(arguments["instance"], "_options") else "unknown"
27
28
  },
29
+ {
30
+ "_comment": "LLM Model",
31
+ "attribute": "type",
32
+ "accessor": lambda arguments: 'model.llm.'+ arguments["instance"]._options.default_model if hasattr(arguments["instance"], "_options") else "unknown"
33
+ },
28
34
  {
29
35
  "attribute": "is_streaming",
30
36
  "accessor": lambda arguments: arguments["instance"]._options.stream if hasattr(arguments["instance"], "_options") else False
@@ -46,25 +52,23 @@ TEAMAI_OUTPUT_PROCESSOR = {
46
52
  "name": "data.output",
47
53
  "_comment": "output from Teams AI",
48
54
  "attributes": [
55
+ {
56
+ "attribute": "status",
57
+ "accessor": lambda arguments: _helper.get_status(arguments)
58
+ },
59
+ {
60
+ "attribute": "status_code",
61
+ "accessor": lambda arguments: _helper.get_status_code(arguments)
62
+ },
49
63
  {
50
64
  "attribute": "response",
51
- "accessor": lambda arguments: arguments["result"].message.content if hasattr(arguments["result"], "message") else str(arguments["result"])
52
- }
53
- ]
54
- },
55
- {
56
- "name": "metadata",
57
- "attributes": [
65
+ "accessor": lambda arguments: _helper.get_response(arguments)
66
+ },
58
67
  {
59
- "_comment": "metadata from Teams AI response",
60
- "accessor": lambda arguments: {
61
- "prompt_tokens": arguments["result"].get("usage", {}).get("prompt_tokens", 0),
62
- "completion_tokens": arguments["result"].get("usage", {}).get("completion_tokens", 0),
63
- "total_tokens": arguments["result"].get("usage", {}).get("total_tokens", 0),
64
- "latency_ms": arguments.get("latency_ms")
65
- }
68
+ "attribute": "check_status",
69
+ "accessor": lambda arguments: _helper.check_status(arguments)
66
70
  }
67
71
  ]
68
- }
72
+ },
69
73
  ]
70
74
  }
@@ -1,26 +1,72 @@
1
- from monocle_apptrace.instrumentation.common.wrapper import atask_wrapper, task_wrapper
1
+ from monocle_apptrace.instrumentation.common.wrapper import (
2
+ ascopes_wrapper,
3
+ atask_wrapper,
4
+ task_wrapper,
5
+ ascope_wrapper,
6
+ )
2
7
  from monocle_apptrace.instrumentation.metamodel.teamsai.entities.inference.teamsai_output_processor import (
3
8
  TEAMAI_OUTPUT_PROCESSOR,
4
9
  )
5
10
  from monocle_apptrace.instrumentation.metamodel.teamsai.entities.inference.actionplanner_output_processor import (
6
11
  ACTIONPLANNER_OUTPUT_PROCESSOR,
7
- )
12
+ )
13
+ def get_id(args, kwargs):
14
+ """
15
+ Extracts the ID from the context.
16
+ """
17
+ scopes: dict[str, dict[str:str]] = {}
18
+ context = kwargs.get("context")
19
+ if context and context.activity and context.activity.channel_id:
20
+ channel_id = context.activity.channel_id or ""
21
+ if channel_id == "msteams":
22
+ scopes[f"msteams.activity.type"] = context.activity.type or ""
23
+
24
+ if hasattr(context.activity,"conversation"):
25
+ scopes[f"msteams.conversation.id"] = context.activity.conversation.id or ""
26
+ scopes[f"msteams.conversation.type"] = context.activity.conversation.conversation_type or ""
27
+ scopes[f"msteams.conversation.name"] = context.activity.conversation.name or ""
28
+
29
+ if hasattr(context.activity,"from_property"):
30
+ scopes[f"msteams.user.from_property.id"] = context.activity.from_property.id or ""
31
+ scopes[f"msteams.user.from_property.name"] = context.activity.from_property.name or ""
32
+ scopes[f"msteams.user.from_property.role"] = context.activity.from_property.role or ""
33
+
34
+ if hasattr(context.activity,"recipient"):
35
+ scopes[f"msteams.recipient.id"] = context.activity.recipient.id or ""
36
+
37
+ if hasattr(context.activity,"channel_data"):
38
+ if "tenant" in context.activity.channel_data:
39
+ scopes[f"msteams.channel_data.tenant.id"] = context.activity.channel_data['tenant']['id'] or ""
40
+ if "team" in context.activity.channel_data:
41
+ scopes[f"msteams.channel_data.team.id"] = context.activity.channel_data['team']['id'] or ""
42
+ if "name" in context.activity.channel_data['team']:
43
+ scopes[f"msteams.channel_data.team.name"] = context.activity.channel_data['team']['name'] or ""
44
+ if "channel" in context.activity.channel_data:
45
+ scopes[f"msteams.channel_data.channel.id"] = context.activity.channel_data['channel']['id'] or ""
46
+ if "name" in context.activity.channel_data['channel']:
47
+ scopes[f"msteams.channel_data.channel.name"] = context.activity.channel_data['channel']['name'] or ""
48
+ return scopes
8
49
 
9
- TEAMAI_METHODS =[
50
+ TEAMAI_METHODS = [
10
51
  {
11
52
  "package": "teams.ai.models.openai_model",
12
53
  "object": "OpenAIModel",
13
54
  "method": "complete_prompt",
14
- "span_name": "teamsai.workflow",
15
55
  "wrapper_method": atask_wrapper,
16
- "output_processor": TEAMAI_OUTPUT_PROCESSOR
56
+ "output_processor": TEAMAI_OUTPUT_PROCESSOR,
17
57
  },
18
58
  {
19
59
  "package": "teams.ai.planners.action_planner",
20
60
  "object": "ActionPlanner",
21
61
  "method": "complete_prompt",
22
- "span_name": "teamsai.workflow",
23
62
  "wrapper_method": atask_wrapper,
24
- "output_processor": ACTIONPLANNER_OUTPUT_PROCESSOR
63
+ "output_processor": ACTIONPLANNER_OUTPUT_PROCESSOR,
64
+ },
65
+ {
66
+ "package": "teams.ai.planners.action_planner",
67
+ "object": "ActionPlanner",
68
+ "method": "complete_prompt",
69
+ "scope_values": get_id,
70
+ "wrapper_method": ascopes_wrapper,
25
71
  }
26
- ]
72
+ ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: monocle_apptrace
3
- Version: 0.3.1
3
+ Version: 0.4.0
4
4
  Summary: package with monocle genAI tracing
5
5
  Project-URL: Homepage, https://github.com/monocle2ai/monocle
6
6
  Project-URL: Issues, https://github.com/monocle2ai/monocle/issues
@@ -16,40 +16,44 @@ Requires-Dist: opentelemetry-sdk>=1.21.0
16
16
  Requires-Dist: requests
17
17
  Requires-Dist: wrapt>=1.14.0
18
18
  Provides-Extra: aws
19
- Requires-Dist: boto3==1.35.19; extra == 'aws'
19
+ Requires-Dist: boto3==1.37.24; extra == 'aws'
20
20
  Provides-Extra: azure
21
21
  Requires-Dist: azure-storage-blob==12.22.0; extra == 'azure'
22
22
  Provides-Extra: dev
23
- Requires-Dist: anthropic==0.49.0; extra == 'dev'
23
+ Requires-Dist: anthropic-haystack; extra == 'dev'
24
+ Requires-Dist: anthropic==0.52.0; extra == 'dev'
24
25
  Requires-Dist: azure-storage-blob==12.22.0; extra == 'dev'
25
- Requires-Dist: boto3==1.34.131; extra == 'dev'
26
- Requires-Dist: chromadb==0.4.22; extra == 'dev'
26
+ Requires-Dist: boto3==1.37.24; extra == 'dev'
27
+ Requires-Dist: chromadb==1.0.10; extra == 'dev'
27
28
  Requires-Dist: datasets==2.20.0; extra == 'dev'
28
29
  Requires-Dist: faiss-cpu==1.8.0; extra == 'dev'
29
30
  Requires-Dist: flask; extra == 'dev'
30
31
  Requires-Dist: haystack-ai==2.3.0; extra == 'dev'
31
32
  Requires-Dist: instructorembedding==1.0.1; extra == 'dev'
32
- Requires-Dist: langchain-aws==0.1.10; extra == 'dev'
33
- Requires-Dist: langchain-chroma==0.1.1; extra == 'dev'
34
- Requires-Dist: langchain-community==0.2.5; extra == 'dev'
35
- Requires-Dist: langchain-mistralai==0.1.13; extra == 'dev'
36
- Requires-Dist: langchain-openai==0.1.8; extra == 'dev'
37
- Requires-Dist: langchain==0.2.5; extra == 'dev'
33
+ Requires-Dist: langchain-anthropic==0.3.13; extra == 'dev'
34
+ Requires-Dist: langchain-aws==0.2.23; extra == 'dev'
35
+ Requires-Dist: langchain-chroma==0.2.4; extra == 'dev'
36
+ Requires-Dist: langchain-community==0.3.24; extra == 'dev'
37
+ Requires-Dist: langchain-mistralai==0.2.10; extra == 'dev'
38
+ Requires-Dist: langchain-openai==0.3.18; extra == 'dev'
39
+ Requires-Dist: langchain==0.3.25; extra == 'dev'
38
40
  Requires-Dist: langchainhub==0.1.21; extra == 'dev'
39
41
  Requires-Dist: langgraph==0.2.68; extra == 'dev'
40
- Requires-Dist: llama-index-embeddings-huggingface==0.2.0; extra == 'dev'
41
- Requires-Dist: llama-index-llms-azure-openai==0.1.9; extra == 'dev'
42
- Requires-Dist: llama-index-llms-mistralai==0.1.20; extra == 'dev'
43
- Requires-Dist: llama-index-vector-stores-chroma==0.1.9; extra == 'dev'
44
- Requires-Dist: llama-index-vector-stores-opensearch==0.1.10; extra == 'dev'
45
- Requires-Dist: llama-index==0.10.30; extra == 'dev'
42
+ Requires-Dist: llama-index-embeddings-huggingface==0.5.4; extra == 'dev'
43
+ Requires-Dist: llama-index-llms-anthropic==0.6.19; extra == 'dev'
44
+ Requires-Dist: llama-index-llms-azure-openai==0.3.2; extra == 'dev'
45
+ Requires-Dist: llama-index-llms-mistralai==0.4.0; extra == 'dev'
46
+ Requires-Dist: llama-index-vector-stores-chroma==0.4.1; extra == 'dev'
47
+ Requires-Dist: llama-index-vector-stores-opensearch==0.5.4; extra == 'dev'
48
+ Requires-Dist: llama-index==0.12.37; extra == 'dev'
46
49
  Requires-Dist: mistral-haystack==0.0.2; extra == 'dev'
47
50
  Requires-Dist: numpy==1.26.4; extra == 'dev'
48
51
  Requires-Dist: opendal==0.45.14; extra == 'dev'
49
52
  Requires-Dist: opensearch-haystack==1.2.0; extra == 'dev'
50
53
  Requires-Dist: opentelemetry-instrumentation-flask; extra == 'dev'
51
54
  Requires-Dist: parameterized==0.9.0; extra == 'dev'
52
- Requires-Dist: pytest==8.0.0; extra == 'dev'
55
+ Requires-Dist: pytest-asyncio==0.26.0; extra == 'dev'
56
+ Requires-Dist: pytest==8.3.5; extra == 'dev'
53
57
  Requires-Dist: requests-aws4auth==1.2.3; extra == 'dev'
54
58
  Requires-Dist: sentence-transformers==2.6.1; extra == 'dev'
55
59
  Requires-Dist: types-requests==2.31.0.20240106; extra == 'dev'
@@ -1,25 +1,29 @@
1
1
  monocle_apptrace/README.md,sha256=T5NFC01bF8VR0oVnAX_n0bhsEtttwqfTxDNAe5Y_ivE,3765
2
2
  monocle_apptrace/__init__.py,sha256=XtoX7gHUSZgkY1nry8IFny8RslPhutZQUuEkqIrBzFQ,30
3
3
  monocle_apptrace/__main__.py,sha256=wBwV0fpwIuj9XSorPRP1MpkHHkZPM9Tg-lIFj1nokkU,609
4
- monocle_apptrace/exporters/base_exporter.py,sha256=Gov_QKp5fonVZ-YdNM2ynoPot7GCaSNmKbCHIP3bDlE,1680
4
+ monocle_apptrace/exporters/base_exporter.py,sha256=xm2MkDjuVZc-vmSXBMMsNMyIoy4z0O4g6wOAyuEnHwo,2062
5
5
  monocle_apptrace/exporters/exporter_processor.py,sha256=-spCIJ_UfJ0fax_jE-ii3ODQBwtnHZgYIGVNd91Q718,6298
6
- monocle_apptrace/exporters/file_exporter.py,sha256=BSEYUb9Z_dascR9i_FL_HxnxnxjyxtR_5teoSjIpZQc,3198
7
- monocle_apptrace/exporters/monocle_exporters.py,sha256=wp4jCjYd_ZgpWZN2rFkPLVvG9Q7nqjaoz2ySStMDEis,2870
8
- monocle_apptrace/exporters/aws/s3_exporter.py,sha256=fvUUuukFM6hIliGqP61WXlVMFbxlIQtMgT3iwjUYDTA,8187
6
+ monocle_apptrace/exporters/file_exporter.py,sha256=KnKXKnrhLv7mXMZlArcz7YTWYBT6YMBYPp5S0aGM1Dg,3723
7
+ monocle_apptrace/exporters/monocle_exporters.py,sha256=qo6S53dp2ko6EzMP-ICL2buqgmw8HZboy19j7iHp1Qk,2882
8
+ monocle_apptrace/exporters/aws/s3_exporter.py,sha256=9GA2tiWOUBLtDdGIdLLyYJEdQ1jRC5SdxxVH3qqR8Qk,8260
9
9
  monocle_apptrace/exporters/aws/s3_exporter_opendal.py,sha256=0aEUxdMgJaDUwqjw0DqlCMr8kjl01KgwUt3_RRCVFds,5917
10
- monocle_apptrace/exporters/azure/blob_exporter.py,sha256=75G8rcISQ0sZCECN2G67-DGFkJGGu2clNyrcoxEm9H8,7371
10
+ monocle_apptrace/exporters/azure/blob_exporter.py,sha256=YqEouaqZQtO8bLF_OIYEAN6XQIwK_XrgtrU-itRQsdM,7285
11
11
  monocle_apptrace/exporters/azure/blob_exporter_opendal.py,sha256=wQUtciyFMD28tpWTiP0-kBjUuxy4LuQSo04aMuHwtb4,7140
12
- monocle_apptrace/exporters/okahu/okahu_exporter.py,sha256=qj7paDHbWbYudH18xanUuxmhOHHlYEVj1kpzK7f2OTY,4601
12
+ monocle_apptrace/exporters/okahu/okahu_exporter.py,sha256=wFkHd87nOXzFMRejrUiO6N0mNIWkxAyRzob6o82lr_c,4765
13
13
  monocle_apptrace/instrumentation/__init__.py,sha256=oa412OuokRm9Vf3XlCJLqpZjz9ZcuxAKxnEBvOK7u2M,21
14
14
  monocle_apptrace/instrumentation/common/__init__.py,sha256=oNEcgw4N36_XzPeN1gc7wxhPjVg-Vhh8EjvUIQZ7pDM,224
15
- monocle_apptrace/instrumentation/common/constants.py,sha256=n_xEv5id2qxmPe0PHgH2TqQ6b-JvYzpN4Y8Vaed-dSo,3001
16
- monocle_apptrace/instrumentation/common/instrumentor.py,sha256=bEyiSaQdpa8JE3Ks06gernG8OhZGzR8ExPMMHEq-0S4,15800
17
- monocle_apptrace/instrumentation/common/span_handler.py,sha256=IENNq8NDaW1mD4j2FxP3rkOz3kGjFxL3jYeEcZr6IBk,10547
15
+ monocle_apptrace/instrumentation/common/constants.py,sha256=XxxPUg0tQGQLM12Z3yzLa-shgU8ZZwlAGsFg9MT7mao,3208
16
+ monocle_apptrace/instrumentation/common/instrumentor.py,sha256=CwQT1oiPyzv_xe8HhdOH7Ucmd18r2Wk3ortOTx6bhpQ,16324
17
+ monocle_apptrace/instrumentation/common/span_handler.py,sha256=Js6RBb6pT-GtlAYSlsVIQC2YBar7IKj6SPNF9cqOQ3U,13228
18
18
  monocle_apptrace/instrumentation/common/tracing.md,sha256=6Lr8QGxEFHKhj-mMvLV3xjFnplKSs6HEdwl0McPK47M,7577
19
- monocle_apptrace/instrumentation/common/utils.py,sha256=vzRiYfZswdyuCq7I010s-zGJp3_6-eETmJGdk45pZvA,12655
20
- monocle_apptrace/instrumentation/common/wrapper.py,sha256=KjCNssEW_EV_Mv7SYODekh-ovteN53t6O5CdqW8VJMo,4598
21
- monocle_apptrace/instrumentation/common/wrapper_method.py,sha256=jf5l7plLhbEz_GHYn833HABE-fEqXlSzXtxgRUnKqH8,3494
19
+ monocle_apptrace/instrumentation/common/utils.py,sha256=oPyUdfBwRCWuxapjtxTd-L4h1Mr6mCDvhSs3do8p0z8,13928
20
+ monocle_apptrace/instrumentation/common/wrapper.py,sha256=NZC0xymn2q6_bFK0d91F0Z-W-YoCmIjOZEm1t1XKSY4,11409
21
+ monocle_apptrace/instrumentation/common/wrapper_method.py,sha256=ig98if45QDU-N76uNAxcb1O7xL8YpwtxJLcb5Dh71bc,4013
22
22
  monocle_apptrace/instrumentation/metamodel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
+ monocle_apptrace/instrumentation/metamodel/aiohttp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
+ monocle_apptrace/instrumentation/metamodel/aiohttp/_helper.py,sha256=h-zrif2vgPL9JbCf1eKHbKBYHAxMdHxOdY-soIDGti8,2361
25
+ monocle_apptrace/instrumentation/metamodel/aiohttp/methods.py,sha256=rcfGoRMLJeu-X2O9fGv6nhhjUrBJALKOJ-axiedavMI,435
26
+ monocle_apptrace/instrumentation/metamodel/aiohttp/entities/http.py,sha256=9mRr8nwUB4DSnFzpU9kwJkShlZbqwIPYztDfDp3_l0s,1701
23
27
  monocle_apptrace/instrumentation/metamodel/anthropic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
28
  monocle_apptrace/instrumentation/metamodel/anthropic/_helper.py,sha256=gnKlf3AlG-yEwX7w3TcWDoRcqKPTa1tiJpWSWu-eirU,2543
25
29
  monocle_apptrace/instrumentation/metamodel/anthropic/methods.py,sha256=WVXoN_i5h9hXjrJV5xF9wIQIpmP_gCN3P8HEPfAsfik,703
@@ -32,20 +36,20 @@ monocle_apptrace/instrumentation/metamodel/botocore/entities/__init__.py,sha256=
32
36
  monocle_apptrace/instrumentation/metamodel/botocore/entities/inference.py,sha256=rAsvhRIR9XYGd8NHTFDJQuiQSTzFoZ4oKeA6kEhK0QQ,2363
33
37
  monocle_apptrace/instrumentation/metamodel/botocore/handlers/botocore_span_handler.py,sha256=8FSdoQSS6DuowF7KHhCRj5kpxYF-bBNR47W1tB-gVh0,1433
34
38
  monocle_apptrace/instrumentation/metamodel/flask/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
- monocle_apptrace/instrumentation/metamodel/flask/_helper.py,sha256=9OlGFeDuhT3g7FGWngM_DAWaDQ_qPHUDCJvXkgCiKZk,2745
39
+ monocle_apptrace/instrumentation/metamodel/flask/_helper.py,sha256=seLVsL5gE3GbjY3Yetgg1WnswhDzb0zEQR05fHf5xTM,3094
36
40
  monocle_apptrace/instrumentation/metamodel/flask/methods.py,sha256=dWCMEDk-HWHiD0vlMoAVYbIFclstmVkUpRrCtqDWyFE,739
37
- monocle_apptrace/instrumentation/metamodel/flask/entities/http.py,sha256=D5XXYBo6_BVgpYTX6ubf53olp5ZHkCE2qeG7rsRLyNg,1553
41
+ monocle_apptrace/instrumentation/metamodel/flask/entities/http.py,sha256=wIudpNk6-DY72k0p90XtvjKt8BilvOd-87Q2iqJnWa8,1525
38
42
  monocle_apptrace/instrumentation/metamodel/haystack/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
- monocle_apptrace/instrumentation/metamodel/haystack/_helper.py,sha256=VgTrKn7rZMcv4OVdVEBI76G-5B0Rux4guiI6Nsso14s,4833
40
- monocle_apptrace/instrumentation/metamodel/haystack/methods.py,sha256=lhkuBPPNliIYGS4AWt3tPXpzFaRVA9IGhtS3rp_iQ8Q,1348
43
+ monocle_apptrace/instrumentation/metamodel/haystack/_helper.py,sha256=HjPZUA9K2dPUcQQNzMN3jX8UV0OHF9N7tQ6kSl1OvxM,5439
44
+ monocle_apptrace/instrumentation/metamodel/haystack/methods.py,sha256=Zd70ycMQ5qWsjPXnQL6qoThNKrQA80P6t11sFyEbQR4,1585
41
45
  monocle_apptrace/instrumentation/metamodel/haystack/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
- monocle_apptrace/instrumentation/metamodel/haystack/entities/inference.py,sha256=p8zemjFl4kNoDGlOj3PImHQ7imOOjqvYPkVRcQlIU5c,3207
46
+ monocle_apptrace/instrumentation/metamodel/haystack/entities/inference.py,sha256=FzUg66WRYAcPbWqdq8iqfv7inkry9L_MrC1o5wd96bg,3217
43
47
  monocle_apptrace/instrumentation/metamodel/haystack/entities/retrieval.py,sha256=nq3lsk2qFxXqwrAHsBt8zrh4ZVGAJABkPtylrjUCCqc,2357
44
48
  monocle_apptrace/instrumentation/metamodel/langchain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
49
  monocle_apptrace/instrumentation/metamodel/langchain/_helper.py,sha256=CziW8KUmRqGCi_y2fcC9YMsP2wP11OMUitqKupSXStg,5315
46
50
  monocle_apptrace/instrumentation/metamodel/langchain/methods.py,sha256=sQLrji0NLuG8i8q5UdbgzPUjWh_WmromfvWL3pGZdCk,2941
47
51
  monocle_apptrace/instrumentation/metamodel/langchain/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
- monocle_apptrace/instrumentation/metamodel/langchain/entities/inference.py,sha256=2CNHloheb4LG7rPEUIF3E3M1cuc8CWVZf9J6l_hvK1E,2764
52
+ monocle_apptrace/instrumentation/metamodel/langchain/entities/inference.py,sha256=RrLPoYLfn3AB9-siwo1NFLT2aPDJtJm9Hgoj6ad2S7Y,2774
49
53
  monocle_apptrace/instrumentation/metamodel/langchain/entities/retrieval.py,sha256=r4UqTCT5vOfkbz9lwoTRoiMkUUJtPMwqOYbqo53A6K8,2039
50
54
  monocle_apptrace/instrumentation/metamodel/langgraph/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
55
  monocle_apptrace/instrumentation/metamodel/langgraph/_helper.py,sha256=-XmAbhkgqwaunFZa-BP0zWZ3e-uD-ihSszbn5Cz75yc,2043
@@ -53,31 +57,31 @@ monocle_apptrace/instrumentation/metamodel/langgraph/methods.py,sha256=gnrKhcEPo
53
57
  monocle_apptrace/instrumentation/metamodel/langgraph/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
58
  monocle_apptrace/instrumentation/metamodel/langgraph/entities/inference.py,sha256=OaPeQ8pkyEP5j6ad537MTPp0BdDI7nabxf60u66Dzbk,1659
55
59
  monocle_apptrace/instrumentation/metamodel/llamaindex/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
56
- monocle_apptrace/instrumentation/metamodel/llamaindex/_helper.py,sha256=5nqG-bSW3-ZEADZcwlHXIhhGZoTZu2a5Sc3Lo_AByeo,6199
57
- monocle_apptrace/instrumentation/metamodel/llamaindex/methods.py,sha256=Ey7Rr_QO4L7TBwFF4o8TgcY7zBRtWPj7sxWJl7cwWzo,2605
60
+ monocle_apptrace/instrumentation/metamodel/llamaindex/_helper.py,sha256=1Rq2sfoLT2L_4w7lMy5tWtGzIgcp9Nbn45nHEKGahMU,6645
61
+ monocle_apptrace/instrumentation/metamodel/llamaindex/methods.py,sha256=p2mDYF_Izgz9M919n3Do5tlc5XRAZt_rnkFRqqIO5yo,3001
58
62
  monocle_apptrace/instrumentation/metamodel/llamaindex/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
59
63
  monocle_apptrace/instrumentation/metamodel/llamaindex/entities/agent.py,sha256=g7IEwFMLjYvxljX7iHoYSPJW6k-wC7Z3i_y2qlNEZcs,1338
60
- monocle_apptrace/instrumentation/metamodel/llamaindex/entities/inference.py,sha256=Hich1AoEHnCUvh0MIISNOjbH9t71eex_IsY_4j3JN5U,2727
64
+ monocle_apptrace/instrumentation/metamodel/llamaindex/entities/inference.py,sha256=XJI6CbGdsogQLQC41KEJqkRe1THEN_vu8pA_H5RGNww,2737
61
65
  monocle_apptrace/instrumentation/metamodel/llamaindex/entities/retrieval.py,sha256=QBF1nrqog5KHh925jiY2V-kejL6iVLKUowZmqUDoiJ4,1870
62
66
  monocle_apptrace/instrumentation/metamodel/openai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
63
- monocle_apptrace/instrumentation/metamodel/openai/_helper.py,sha256=G_2-FafJGjTY0lU5OXQFNGCP2Z7OmgUMbTgNa37AVec,4256
64
- monocle_apptrace/instrumentation/metamodel/openai/methods.py,sha256=gH8ZFN_x1nRM45F4FUVqoj9dao52247MSgOCxtzCpmA,1838
67
+ monocle_apptrace/instrumentation/metamodel/openai/_helper.py,sha256=KmW1Xbrfw1aWsXrRGtF6bAd2TjblU5i2-X0KVMYHS5M,5682
68
+ monocle_apptrace/instrumentation/metamodel/openai/methods.py,sha256=jpqZyfiJbzMz1r3W3fwMCGiQsbiDSkhqgADJextGxFQ,1796
65
69
  monocle_apptrace/instrumentation/metamodel/openai/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
66
- monocle_apptrace/instrumentation/metamodel/openai/entities/inference.py,sha256=Egpx7ROZvwH6E3hqDWXa1gCXiNijnH3LD0HqQWhfspg,2716
70
+ monocle_apptrace/instrumentation/metamodel/openai/entities/inference.py,sha256=8UdUnKnQsWFPsrKnhNYVRM5ZAMFQl_PZlh67QC_wQ0k,8271
67
71
  monocle_apptrace/instrumentation/metamodel/openai/entities/retrieval.py,sha256=LU7aec302ZqPrs9MzFWU-JTnhK8OpYfgQKMmktlD6-8,1457
68
72
  monocle_apptrace/instrumentation/metamodel/requests/__init__.py,sha256=mg04UgoPzzcH-cPOahYUqN9T-TolZyOZipnBwDg5TP8,250
69
- monocle_apptrace/instrumentation/metamodel/requests/_helper.py,sha256=I1vx9pSlSct05AjPVxlEtX77Dc_CVt3QtJIA1B36-Gc,2001
73
+ monocle_apptrace/instrumentation/metamodel/requests/_helper.py,sha256=GS03VbT9LiGwt4Mz2DPHtxuWd3xhQL4liS9-dfpy9SE,1985
70
74
  monocle_apptrace/instrumentation/metamodel/requests/methods.py,sha256=O7lkglRvV97zqnCu6r2JwvW8WQqi4uvlpmNkAPpXigE,440
71
75
  monocle_apptrace/instrumentation/metamodel/requests/entities/http.py,sha256=TlY4NZtPleewbF5W0qV61L2ByDOf44EOZhKQgwzRIKc,1669
72
76
  monocle_apptrace/instrumentation/metamodel/teamsai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
- monocle_apptrace/instrumentation/metamodel/teamsai/_helper.py,sha256=ZkYLD4TqdhALq_0mYAmTR-cYuvHfKdXQz8_h2FK22ZI,2283
74
- monocle_apptrace/instrumentation/metamodel/teamsai/methods.py,sha256=PUi7bLwP1_WztTCGGGgxbJLjNjviqD3JLWRB2_-MQP8,949
77
+ monocle_apptrace/instrumentation/metamodel/teamsai/_helper.py,sha256=mrN-AQ0Nn59_jKidyvibP76JI17SdVFAdpBw_ouuu2U,3821
78
+ monocle_apptrace/instrumentation/metamodel/teamsai/methods.py,sha256=PW-buAoTP3CkZ352YXrYiXoBj-pW5oXbGpA_gtmRiUU,3396
75
79
  monocle_apptrace/instrumentation/metamodel/teamsai/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
76
80
  monocle_apptrace/instrumentation/metamodel/teamsai/entities/inference/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
77
- monocle_apptrace/instrumentation/metamodel/teamsai/entities/inference/actionplanner_output_processor.py,sha256=Y_aFDLgPVu9DA8J2z4DBpo4YpR5q-9FRHUtQOgunYM8,3168
78
- monocle_apptrace/instrumentation/metamodel/teamsai/entities/inference/teamsai_output_processor.py,sha256=G7qdMuHRVv1AQVhE5yceonwcYAlfAc_4iOKmzD3IZt4,2564
79
- monocle_apptrace-0.3.1.dist-info/METADATA,sha256=kmaWh-zKlFT8BG5W6l6PnB-b2vVr9zonkd6vPRbtXcU,6361
80
- monocle_apptrace-0.3.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
81
- monocle_apptrace-0.3.1.dist-info/licenses/LICENSE,sha256=ay9trLiP5I7ZsFXo6AqtkLYdRqe5S9r-DrPOvsNlZrg,9136
82
- monocle_apptrace-0.3.1.dist-info/licenses/NOTICE,sha256=9jn4xtwM_uUetJMx5WqGnhrR7MIhpoRlpokjSTlyt8c,112
83
- monocle_apptrace-0.3.1.dist-info/RECORD,,
81
+ monocle_apptrace/instrumentation/metamodel/teamsai/entities/inference/actionplanner_output_processor.py,sha256=6rb75bFKh_hvgD8dJzcIeXeJjLjhm9nXuxHI3F-icqo,2405
82
+ monocle_apptrace/instrumentation/metamodel/teamsai/entities/inference/teamsai_output_processor.py,sha256=M5uPEbP5c57txrd7BDRXhK5rvRJfyNyvqavtkXuPjXU,2738
83
+ monocle_apptrace-0.4.0.dist-info/METADATA,sha256=CAD7m6DUIPxAfpehfTZgcSxdyF7lfC6ThHWum_ZD40o,6590
84
+ monocle_apptrace-0.4.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
85
+ monocle_apptrace-0.4.0.dist-info/licenses/LICENSE,sha256=ay9trLiP5I7ZsFXo6AqtkLYdRqe5S9r-DrPOvsNlZrg,9136
86
+ monocle_apptrace-0.4.0.dist-info/licenses/NOTICE,sha256=9jn4xtwM_uUetJMx5WqGnhrR7MIhpoRlpokjSTlyt8c,112
87
+ monocle_apptrace-0.4.0.dist-info/RECORD,,