monocle-apptrace 0.3.0b7__py3-none-any.whl → 0.3.1__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 (41) hide show
  1. monocle_apptrace/exporters/monocle_exporters.py +5 -2
  2. monocle_apptrace/instrumentation/common/__init__.py +1 -1
  3. monocle_apptrace/instrumentation/common/constants.py +7 -1
  4. monocle_apptrace/instrumentation/common/instrumentor.py +20 -9
  5. monocle_apptrace/instrumentation/common/span_handler.py +36 -25
  6. monocle_apptrace/instrumentation/common/tracing.md +68 -0
  7. monocle_apptrace/instrumentation/common/utils.py +25 -10
  8. monocle_apptrace/instrumentation/common/wrapper.py +24 -22
  9. monocle_apptrace/instrumentation/common/wrapper_method.py +5 -2
  10. monocle_apptrace/instrumentation/metamodel/anthropic/__init__.py +0 -0
  11. monocle_apptrace/instrumentation/metamodel/anthropic/_helper.py +64 -0
  12. monocle_apptrace/instrumentation/metamodel/anthropic/entities/__init__.py +0 -0
  13. monocle_apptrace/instrumentation/metamodel/anthropic/entities/inference.py +72 -0
  14. monocle_apptrace/instrumentation/metamodel/anthropic/methods.py +24 -0
  15. monocle_apptrace/instrumentation/metamodel/botocore/entities/inference.py +2 -2
  16. monocle_apptrace/instrumentation/metamodel/botocore/handlers/botocore_span_handler.py +1 -1
  17. monocle_apptrace/instrumentation/metamodel/flask/_helper.py +45 -3
  18. monocle_apptrace/instrumentation/metamodel/flask/entities/http.py +49 -0
  19. monocle_apptrace/instrumentation/metamodel/flask/methods.py +10 -1
  20. monocle_apptrace/instrumentation/metamodel/haystack/entities/inference.py +4 -1
  21. monocle_apptrace/instrumentation/metamodel/haystack/methods.py +1 -4
  22. monocle_apptrace/instrumentation/metamodel/langchain/_helper.py +12 -4
  23. monocle_apptrace/instrumentation/metamodel/langchain/methods.py +6 -14
  24. monocle_apptrace/instrumentation/metamodel/llamaindex/methods.py +2 -15
  25. monocle_apptrace/instrumentation/metamodel/openai/_helper.py +9 -4
  26. monocle_apptrace/instrumentation/metamodel/openai/methods.py +16 -2
  27. monocle_apptrace/instrumentation/metamodel/requests/_helper.py +31 -0
  28. monocle_apptrace/instrumentation/metamodel/requests/entities/http.py +51 -0
  29. monocle_apptrace/instrumentation/metamodel/requests/methods.py +2 -1
  30. monocle_apptrace/instrumentation/metamodel/teamsai/__init__.py +0 -0
  31. monocle_apptrace/instrumentation/metamodel/teamsai/_helper.py +58 -0
  32. monocle_apptrace/instrumentation/metamodel/teamsai/entities/__init__.py +0 -0
  33. monocle_apptrace/instrumentation/metamodel/teamsai/entities/inference/__init__.py +0 -0
  34. monocle_apptrace/instrumentation/metamodel/teamsai/entities/inference/actionplanner_output_processor.py +80 -0
  35. monocle_apptrace/instrumentation/metamodel/teamsai/entities/inference/teamsai_output_processor.py +70 -0
  36. monocle_apptrace/instrumentation/metamodel/teamsai/methods.py +26 -0
  37. {monocle_apptrace-0.3.0b7.dist-info → monocle_apptrace-0.3.1.dist-info}/METADATA +2 -1
  38. {monocle_apptrace-0.3.0b7.dist-info → monocle_apptrace-0.3.1.dist-info}/RECORD +41 -26
  39. {monocle_apptrace-0.3.0b7.dist-info → monocle_apptrace-0.3.1.dist-info}/WHEEL +0 -0
  40. {monocle_apptrace-0.3.0b7.dist-info → monocle_apptrace-0.3.1.dist-info}/licenses/LICENSE +0 -0
  41. {monocle_apptrace-0.3.0b7.dist-info → monocle_apptrace-0.3.1.dist-info}/licenses/NOTICE +0 -0
@@ -0,0 +1,58 @@
1
+ from monocle_apptrace.instrumentation.common.utils import MonocleSpanException
2
+ def capture_input(arguments):
3
+ """
4
+ Captures the input from Teams AI state.
5
+ Args:
6
+ arguments (dict): Arguments containing state and context information
7
+ Returns:
8
+ str: The input message or error message
9
+ """
10
+ try:
11
+ # Get the memory object from kwargs
12
+ kwargs = arguments.get("kwargs", {})
13
+
14
+ # If memory exists, try to get the input from temp
15
+ if "memory" in kwargs:
16
+ memory = kwargs["memory"]
17
+ # Check if it's a TurnState object
18
+ if hasattr(memory, "get"):
19
+ # Use proper TurnState.get() method
20
+ temp = memory.get("temp")
21
+ if temp and hasattr(temp, "get"):
22
+ input_value = temp.get("input")
23
+ if input_value:
24
+ return str(input_value)
25
+
26
+ # Try alternative path through context if memory path fails
27
+ context = kwargs.get("context")
28
+ if hasattr(context, "activity") and hasattr(context.activity, "text"):
29
+ return str(context.activity.text)
30
+
31
+ return "No input found in memory or context"
32
+ except Exception as e:
33
+ print(f"Debug - Arguments structure: {str(arguments)}")
34
+ print(f"Debug - kwargs: {str(kwargs)}")
35
+ if "memory" in kwargs:
36
+ print(f"Debug - memory type: {type(kwargs['memory'])}")
37
+ return f"Error capturing input: {str(e)}"
38
+
39
+ def capture_prompt_info(arguments):
40
+ """Captures prompt information from ActionPlanner state"""
41
+ try:
42
+ kwargs = arguments.get("kwargs", {})
43
+ prompt = kwargs.get("prompt")
44
+
45
+ if isinstance(prompt, str):
46
+ return prompt
47
+ elif hasattr(prompt, "name"):
48
+ return prompt.name
49
+
50
+ return "No prompt information found"
51
+ except Exception as e:
52
+ return f"Error capturing prompt: {str(e)}"
53
+
54
+ def status_check(arguments):
55
+ if hasattr(arguments["result"], "error") and arguments["result"].error is not None:
56
+ error_msg:str = arguments["result"].error
57
+ error_code:str = arguments["result"].status if hasattr(arguments["result"], "status") else "unknown"
58
+ raise MonocleSpanException(f"Error: {error_code} - {error_msg}")
@@ -0,0 +1,80 @@
1
+ from monocle_apptrace.instrumentation.metamodel.teamsai import (
2
+ _helper,
3
+ )
4
+ ACTIONPLANNER_OUTPUT_PROCESSOR = {
5
+ "type": "inference",
6
+ "attributes": [
7
+ [
8
+ {
9
+ "_comment": "planner type and configuration",
10
+ "attribute": "type",
11
+ "accessor": lambda arguments: "teams.planner"
12
+ },
13
+ {
14
+ "attribute": "planner_type",
15
+ "accessor": lambda arguments: "ActionPlanner"
16
+ },
17
+ {
18
+ "attribute": "max_repair_attempts",
19
+ "accessor": lambda arguments: arguments["instance"]._options.max_repair_attempts if hasattr(arguments["instance"], "_options") else 3
20
+ }
21
+ ],
22
+ [
23
+ {
24
+ "_comment": "model configuration",
25
+ "attribute": "model",
26
+ "accessor": lambda arguments: arguments["instance"]._options.model.__class__.__name__ if hasattr(arguments["instance"], "_options") else "unknown"
27
+ },
28
+ {
29
+ "attribute": "tokenizer",
30
+ "accessor": lambda arguments: arguments["instance"]._options.tokenizer.__class__.__name__ if hasattr(arguments["instance"], "_options") else "GPTTokenizer"
31
+ }
32
+ ]
33
+ ],
34
+ "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
+ {
68
+ "name": "metadata",
69
+ "attributes": [
70
+ {
71
+ "_comment": "execution metadata",
72
+ "accessor": lambda arguments: {
73
+ "latency_ms": arguments.get("latency_ms"),
74
+ "feedback_enabled": arguments["instance"]._enable_feedback_loop if hasattr(arguments["instance"], "_enable_feedback_loop") else False
75
+ }
76
+ }
77
+ ]
78
+ }
79
+ ]
80
+ }
@@ -0,0 +1,70 @@
1
+ from monocle_apptrace.instrumentation.metamodel.teamsai import (
2
+ _helper,
3
+ )
4
+ TEAMAI_OUTPUT_PROCESSOR = {
5
+ "type": "inference",
6
+ "attributes": [
7
+ [
8
+ {
9
+ "_comment": "provider type, name, deployment",
10
+ "attribute": "type",
11
+ "accessor": lambda arguments: "teams.openai"
12
+ },
13
+ {
14
+ "attribute": "provider_name",
15
+ "accessor": lambda arguments: "Microsoft Teams AI"
16
+ },
17
+ {
18
+ "attribute": "deployment",
19
+ "accessor": lambda arguments: arguments["instance"]._options.default_model if hasattr(arguments["instance"], "_options") else "unknown"
20
+ }
21
+ ],
22
+ [
23
+ {
24
+ "_comment": "LLM Model",
25
+ "attribute": "name",
26
+ "accessor": lambda arguments: arguments["instance"]._options.default_model if hasattr(arguments["instance"], "_options") else "unknown"
27
+ },
28
+ {
29
+ "attribute": "is_streaming",
30
+ "accessor": lambda arguments: arguments["instance"]._options.stream if hasattr(arguments["instance"], "_options") else False
31
+ }
32
+ ]
33
+ ],
34
+ "events": [
35
+ {
36
+ "name": "data.input",
37
+ "_comment": "input to Teams AI",
38
+ "attributes": [
39
+ {
40
+ "attribute": "input",
41
+ "accessor": _helper.capture_input
42
+ }
43
+ ]
44
+ },
45
+ {
46
+ "name": "data.output",
47
+ "_comment": "output from Teams AI",
48
+ "attributes": [
49
+ {
50
+ "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": [
58
+ {
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
+ }
66
+ }
67
+ ]
68
+ }
69
+ ]
70
+ }
@@ -0,0 +1,26 @@
1
+ from monocle_apptrace.instrumentation.common.wrapper import atask_wrapper, task_wrapper
2
+ from monocle_apptrace.instrumentation.metamodel.teamsai.entities.inference.teamsai_output_processor import (
3
+ TEAMAI_OUTPUT_PROCESSOR,
4
+ )
5
+ from monocle_apptrace.instrumentation.metamodel.teamsai.entities.inference.actionplanner_output_processor import (
6
+ ACTIONPLANNER_OUTPUT_PROCESSOR,
7
+ )
8
+
9
+ TEAMAI_METHODS =[
10
+ {
11
+ "package": "teams.ai.models.openai_model",
12
+ "object": "OpenAIModel",
13
+ "method": "complete_prompt",
14
+ "span_name": "teamsai.workflow",
15
+ "wrapper_method": atask_wrapper,
16
+ "output_processor": TEAMAI_OUTPUT_PROCESSOR
17
+ },
18
+ {
19
+ "package": "teams.ai.planners.action_planner",
20
+ "object": "ActionPlanner",
21
+ "method": "complete_prompt",
22
+ "span_name": "teamsai.workflow",
23
+ "wrapper_method": atask_wrapper,
24
+ "output_processor": ACTIONPLANNER_OUTPUT_PROCESSOR
25
+ }
26
+ ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: monocle_apptrace
3
- Version: 0.3.0b7
3
+ Version: 0.3.1
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
@@ -20,6 +20,7 @@ Requires-Dist: boto3==1.35.19; 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
24
  Requires-Dist: azure-storage-blob==12.22.0; extra == 'dev'
24
25
  Requires-Dist: boto3==1.34.131; extra == 'dev'
25
26
  Requires-Dist: chromadb==0.4.22; extra == 'dev'
@@ -4,39 +4,46 @@ monocle_apptrace/__main__.py,sha256=wBwV0fpwIuj9XSorPRP1MpkHHkZPM9Tg-lIFj1nokkU,
4
4
  monocle_apptrace/exporters/base_exporter.py,sha256=Gov_QKp5fonVZ-YdNM2ynoPot7GCaSNmKbCHIP3bDlE,1680
5
5
  monocle_apptrace/exporters/exporter_processor.py,sha256=-spCIJ_UfJ0fax_jE-ii3ODQBwtnHZgYIGVNd91Q718,6298
6
6
  monocle_apptrace/exporters/file_exporter.py,sha256=BSEYUb9Z_dascR9i_FL_HxnxnxjyxtR_5teoSjIpZQc,3198
7
- monocle_apptrace/exporters/monocle_exporters.py,sha256=TKULSQDZLIrf76NMhxYfsnG3vV11B1l2liI1wEWGaLo,2759
7
+ monocle_apptrace/exporters/monocle_exporters.py,sha256=wp4jCjYd_ZgpWZN2rFkPLVvG9Q7nqjaoz2ySStMDEis,2870
8
8
  monocle_apptrace/exporters/aws/s3_exporter.py,sha256=fvUUuukFM6hIliGqP61WXlVMFbxlIQtMgT3iwjUYDTA,8187
9
9
  monocle_apptrace/exporters/aws/s3_exporter_opendal.py,sha256=0aEUxdMgJaDUwqjw0DqlCMr8kjl01KgwUt3_RRCVFds,5917
10
10
  monocle_apptrace/exporters/azure/blob_exporter.py,sha256=75G8rcISQ0sZCECN2G67-DGFkJGGu2clNyrcoxEm9H8,7371
11
11
  monocle_apptrace/exporters/azure/blob_exporter_opendal.py,sha256=wQUtciyFMD28tpWTiP0-kBjUuxy4LuQSo04aMuHwtb4,7140
12
12
  monocle_apptrace/exporters/okahu/okahu_exporter.py,sha256=qj7paDHbWbYudH18xanUuxmhOHHlYEVj1kpzK7f2OTY,4601
13
13
  monocle_apptrace/instrumentation/__init__.py,sha256=oa412OuokRm9Vf3XlCJLqpZjz9ZcuxAKxnEBvOK7u2M,21
14
- monocle_apptrace/instrumentation/common/__init__.py,sha256=_YD94HPvDvHcrkt9Ll11BaHNzJ4W56GUJ7GPjp_diyA,223
15
- monocle_apptrace/instrumentation/common/constants.py,sha256=6H5oLxGUD0Gd4bvEGq-fKm-W-ULWQ0bMOQs4puz5--I,2676
16
- monocle_apptrace/instrumentation/common/instrumentor.py,sha256=v-ZriWJdHlSOWkwprlwDaxm6kOVKyqehZ3m_kbECm0k,15087
17
- monocle_apptrace/instrumentation/common/span_handler.py,sha256=WHvLc3TSqsrv62qJ_qclC57QT0bFoTCJ4hc-qe3SOYg,10229
18
- monocle_apptrace/instrumentation/common/utils.py,sha256=iGxvC8V-2uLbrhFG9u9NKOyHkbd1moIkg6ukujDT88Y,12023
19
- monocle_apptrace/instrumentation/common/wrapper.py,sha256=FNam-sz5gbTxa0Ym6-xyVhCA5HVAEObKDdQFubasIpU,4474
20
- monocle_apptrace/instrumentation/common/wrapper_method.py,sha256=7k_rHOzbFRfeW40CMfa78wwyPVfSgcXiyDsgezjDcaA,3188
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
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
21
22
  monocle_apptrace/instrumentation/metamodel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
+ monocle_apptrace/instrumentation/metamodel/anthropic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
+ monocle_apptrace/instrumentation/metamodel/anthropic/_helper.py,sha256=gnKlf3AlG-yEwX7w3TcWDoRcqKPTa1tiJpWSWu-eirU,2543
25
+ monocle_apptrace/instrumentation/metamodel/anthropic/methods.py,sha256=WVXoN_i5h9hXjrJV5xF9wIQIpmP_gCN3P8HEPfAsfik,703
26
+ monocle_apptrace/instrumentation/metamodel/anthropic/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
+ monocle_apptrace/instrumentation/metamodel/anthropic/entities/inference.py,sha256=MeHaJWYUKJ9EpvmUvoZ04tOuS57M4LRDHNZq_Ee1OQ8,2721
22
28
  monocle_apptrace/instrumentation/metamodel/botocore/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
29
  monocle_apptrace/instrumentation/metamodel/botocore/_helper.py,sha256=JIYtaN57OXKO9zPuxMZzDycJbgHgAQaQUkwuCI_SzF8,3744
24
30
  monocle_apptrace/instrumentation/metamodel/botocore/methods.py,sha256=LzmjbZjDWy7Uozc0chNjWG6PZhLngh_KJe5L6rw5rqI,452
25
31
  monocle_apptrace/instrumentation/metamodel/botocore/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
- monocle_apptrace/instrumentation/metamodel/botocore/entities/inference.py,sha256=JfTRmrxgU6e-b3dBbunWt5ObY_Ry_ZBYJBwKJB5UlJ8,2255
27
- monocle_apptrace/instrumentation/metamodel/botocore/handlers/botocore_span_handler.py,sha256=Vfbx4g7P3_9iXXCySuqc2FOU_CTP-OZy7PHc7D2qOls,1419
32
+ monocle_apptrace/instrumentation/metamodel/botocore/entities/inference.py,sha256=rAsvhRIR9XYGd8NHTFDJQuiQSTzFoZ4oKeA6kEhK0QQ,2363
33
+ monocle_apptrace/instrumentation/metamodel/botocore/handlers/botocore_span_handler.py,sha256=8FSdoQSS6DuowF7KHhCRj5kpxYF-bBNR47W1tB-gVh0,1433
28
34
  monocle_apptrace/instrumentation/metamodel/flask/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
- monocle_apptrace/instrumentation/metamodel/flask/_helper.py,sha256=AcQ5F6_IDmu9PXaeKKeiGIyq2I2YzA7wu1cvLzR-uyU,1175
30
- monocle_apptrace/instrumentation/metamodel/flask/methods.py,sha256=QkWHX4wKQf_GiJBHmiS9_JD2CiKMTCWMcig2dxAiKgU,340
35
+ monocle_apptrace/instrumentation/metamodel/flask/_helper.py,sha256=9OlGFeDuhT3g7FGWngM_DAWaDQ_qPHUDCJvXkgCiKZk,2745
36
+ monocle_apptrace/instrumentation/metamodel/flask/methods.py,sha256=dWCMEDk-HWHiD0vlMoAVYbIFclstmVkUpRrCtqDWyFE,739
37
+ monocle_apptrace/instrumentation/metamodel/flask/entities/http.py,sha256=D5XXYBo6_BVgpYTX6ubf53olp5ZHkCE2qeG7rsRLyNg,1553
31
38
  monocle_apptrace/instrumentation/metamodel/haystack/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
39
  monocle_apptrace/instrumentation/metamodel/haystack/_helper.py,sha256=VgTrKn7rZMcv4OVdVEBI76G-5B0Rux4guiI6Nsso14s,4833
33
- monocle_apptrace/instrumentation/metamodel/haystack/methods.py,sha256=1XpEfU8-cczTiH2KbxGgSm-27V7xk1j5LxVciWfNuJo,1467
40
+ monocle_apptrace/instrumentation/metamodel/haystack/methods.py,sha256=lhkuBPPNliIYGS4AWt3tPXpzFaRVA9IGhtS3rp_iQ8Q,1348
34
41
  monocle_apptrace/instrumentation/metamodel/haystack/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
- monocle_apptrace/instrumentation/metamodel/haystack/entities/inference.py,sha256=bCAp8qpw2GGt1RRZcrucOGqP_Z9gkN8iCCQh6Mlf_Z0,3022
42
+ monocle_apptrace/instrumentation/metamodel/haystack/entities/inference.py,sha256=p8zemjFl4kNoDGlOj3PImHQ7imOOjqvYPkVRcQlIU5c,3207
36
43
  monocle_apptrace/instrumentation/metamodel/haystack/entities/retrieval.py,sha256=nq3lsk2qFxXqwrAHsBt8zrh4ZVGAJABkPtylrjUCCqc,2357
37
44
  monocle_apptrace/instrumentation/metamodel/langchain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
- monocle_apptrace/instrumentation/metamodel/langchain/_helper.py,sha256=g88Hz4n25ALJnjYFhdbdoIlSFUJUkN-8gho8ru7txEQ,4910
39
- monocle_apptrace/instrumentation/metamodel/langchain/methods.py,sha256=hlLR43KXwiwYshvgoBrlqMOemFifhpgeR7smTb4zkCc,3225
45
+ monocle_apptrace/instrumentation/metamodel/langchain/_helper.py,sha256=CziW8KUmRqGCi_y2fcC9YMsP2wP11OMUitqKupSXStg,5315
46
+ monocle_apptrace/instrumentation/metamodel/langchain/methods.py,sha256=sQLrji0NLuG8i8q5UdbgzPUjWh_WmromfvWL3pGZdCk,2941
40
47
  monocle_apptrace/instrumentation/metamodel/langchain/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
48
  monocle_apptrace/instrumentation/metamodel/langchain/entities/inference.py,sha256=2CNHloheb4LG7rPEUIF3E3M1cuc8CWVZf9J6l_hvK1E,2764
42
49
  monocle_apptrace/instrumentation/metamodel/langchain/entities/retrieval.py,sha256=r4UqTCT5vOfkbz9lwoTRoiMkUUJtPMwqOYbqo53A6K8,2039
@@ -47,22 +54,30 @@ monocle_apptrace/instrumentation/metamodel/langgraph/entities/__init__.py,sha256
47
54
  monocle_apptrace/instrumentation/metamodel/langgraph/entities/inference.py,sha256=OaPeQ8pkyEP5j6ad537MTPp0BdDI7nabxf60u66Dzbk,1659
48
55
  monocle_apptrace/instrumentation/metamodel/llamaindex/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
49
56
  monocle_apptrace/instrumentation/metamodel/llamaindex/_helper.py,sha256=5nqG-bSW3-ZEADZcwlHXIhhGZoTZu2a5Sc3Lo_AByeo,6199
50
- monocle_apptrace/instrumentation/metamodel/llamaindex/methods.py,sha256=3Lr7C3GPQMScLX7gQTrPxU7hs8TTIYFTXApAGyB2yjU,3137
57
+ monocle_apptrace/instrumentation/metamodel/llamaindex/methods.py,sha256=Ey7Rr_QO4L7TBwFF4o8TgcY7zBRtWPj7sxWJl7cwWzo,2605
51
58
  monocle_apptrace/instrumentation/metamodel/llamaindex/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
52
59
  monocle_apptrace/instrumentation/metamodel/llamaindex/entities/agent.py,sha256=g7IEwFMLjYvxljX7iHoYSPJW6k-wC7Z3i_y2qlNEZcs,1338
53
60
  monocle_apptrace/instrumentation/metamodel/llamaindex/entities/inference.py,sha256=Hich1AoEHnCUvh0MIISNOjbH9t71eex_IsY_4j3JN5U,2727
54
61
  monocle_apptrace/instrumentation/metamodel/llamaindex/entities/retrieval.py,sha256=QBF1nrqog5KHh925jiY2V-kejL6iVLKUowZmqUDoiJ4,1870
55
62
  monocle_apptrace/instrumentation/metamodel/openai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
56
- monocle_apptrace/instrumentation/metamodel/openai/_helper.py,sha256=VDjpKRXXbOTma3clD54SYG1TaMXr-To0S3yotp7_9aY,3877
57
- monocle_apptrace/instrumentation/metamodel/openai/methods.py,sha256=bQ0cW_9Ry5bKKsYGzatys-R6wBW3kpYha5QX328AWLM,1420
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
58
65
  monocle_apptrace/instrumentation/metamodel/openai/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
59
66
  monocle_apptrace/instrumentation/metamodel/openai/entities/inference.py,sha256=Egpx7ROZvwH6E3hqDWXa1gCXiNijnH3LD0HqQWhfspg,2716
60
67
  monocle_apptrace/instrumentation/metamodel/openai/entities/retrieval.py,sha256=LU7aec302ZqPrs9MzFWU-JTnhK8OpYfgQKMmktlD6-8,1457
61
68
  monocle_apptrace/instrumentation/metamodel/requests/__init__.py,sha256=mg04UgoPzzcH-cPOahYUqN9T-TolZyOZipnBwDg5TP8,250
62
- monocle_apptrace/instrumentation/metamodel/requests/_helper.py,sha256=lKU7py-M0eweHA_LWatwdyWbSGSlQNhScGZ43Xko7us,1115
63
- monocle_apptrace/instrumentation/metamodel/requests/methods.py,sha256=OJtosy_07xy01o5Qv-53--aCLQLkr82NZtyi2t6ZDEM,326
64
- monocle_apptrace-0.3.0b7.dist-info/METADATA,sha256=sKSON_WUMObjmugvQx9wCLmoy_jj6yp5RwQgVHtQ6qE,6314
65
- monocle_apptrace-0.3.0b7.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
66
- monocle_apptrace-0.3.0b7.dist-info/licenses/LICENSE,sha256=ay9trLiP5I7ZsFXo6AqtkLYdRqe5S9r-DrPOvsNlZrg,9136
67
- monocle_apptrace-0.3.0b7.dist-info/licenses/NOTICE,sha256=9jn4xtwM_uUetJMx5WqGnhrR7MIhpoRlpokjSTlyt8c,112
68
- monocle_apptrace-0.3.0b7.dist-info/RECORD,,
69
+ monocle_apptrace/instrumentation/metamodel/requests/_helper.py,sha256=I1vx9pSlSct05AjPVxlEtX77Dc_CVt3QtJIA1B36-Gc,2001
70
+ monocle_apptrace/instrumentation/metamodel/requests/methods.py,sha256=O7lkglRvV97zqnCu6r2JwvW8WQqi4uvlpmNkAPpXigE,440
71
+ monocle_apptrace/instrumentation/metamodel/requests/entities/http.py,sha256=TlY4NZtPleewbF5W0qV61L2ByDOf44EOZhKQgwzRIKc,1669
72
+ 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
75
+ monocle_apptrace/instrumentation/metamodel/teamsai/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
76
+ 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,,