monocle-apptrace 0.5.0b1__py3-none-any.whl → 0.5.1b1__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 (72) hide show
  1. monocle_apptrace/exporters/file_exporter.py +2 -1
  2. monocle_apptrace/instrumentation/common/__init__.py +7 -5
  3. monocle_apptrace/instrumentation/common/constants.py +103 -12
  4. monocle_apptrace/instrumentation/common/instrumentor.py +1 -6
  5. monocle_apptrace/instrumentation/common/method_wrappers.py +10 -125
  6. monocle_apptrace/instrumentation/common/scope_wrapper.py +126 -0
  7. monocle_apptrace/instrumentation/common/span_handler.py +32 -8
  8. monocle_apptrace/instrumentation/common/utils.py +34 -3
  9. monocle_apptrace/instrumentation/common/wrapper.py +208 -41
  10. monocle_apptrace/instrumentation/common/wrapper_method.py +9 -1
  11. monocle_apptrace/instrumentation/metamodel/a2a/entities/inference.py +3 -1
  12. monocle_apptrace/instrumentation/metamodel/adk/__init__.py +0 -0
  13. monocle_apptrace/instrumentation/metamodel/adk/_helper.py +206 -0
  14. monocle_apptrace/instrumentation/metamodel/adk/entities/agent.py +111 -0
  15. monocle_apptrace/instrumentation/metamodel/adk/entities/tool.py +59 -0
  16. monocle_apptrace/instrumentation/metamodel/adk/methods.py +31 -0
  17. monocle_apptrace/instrumentation/metamodel/agents/__init__.py +0 -0
  18. monocle_apptrace/instrumentation/metamodel/agents/_helper.py +225 -0
  19. monocle_apptrace/instrumentation/metamodel/agents/agents_processor.py +174 -0
  20. monocle_apptrace/instrumentation/metamodel/agents/entities/__init__.py +0 -0
  21. monocle_apptrace/instrumentation/metamodel/agents/entities/inference.py +196 -0
  22. monocle_apptrace/instrumentation/metamodel/agents/methods.py +55 -0
  23. monocle_apptrace/instrumentation/metamodel/aiohttp/entities/http.py +2 -1
  24. monocle_apptrace/instrumentation/metamodel/anthropic/_helper.py +82 -5
  25. monocle_apptrace/instrumentation/metamodel/anthropic/entities/inference.py +6 -1
  26. monocle_apptrace/instrumentation/metamodel/azfunc/entities/http.py +2 -1
  27. monocle_apptrace/instrumentation/metamodel/azureaiinference/entities/inference.py +2 -1
  28. monocle_apptrace/instrumentation/metamodel/botocore/entities/inference.py +2 -1
  29. monocle_apptrace/instrumentation/metamodel/fastapi/entities/http.py +2 -1
  30. monocle_apptrace/instrumentation/metamodel/fastapi/methods.py +18 -18
  31. monocle_apptrace/instrumentation/metamodel/finish_types.py +79 -1
  32. monocle_apptrace/instrumentation/metamodel/flask/entities/http.py +2 -1
  33. monocle_apptrace/instrumentation/metamodel/gemini/entities/inference.py +7 -3
  34. monocle_apptrace/instrumentation/metamodel/gemini/entities/retrieval.py +2 -1
  35. monocle_apptrace/instrumentation/metamodel/gemini/methods.py +8 -1
  36. monocle_apptrace/instrumentation/metamodel/haystack/_helper.py +64 -0
  37. monocle_apptrace/instrumentation/metamodel/haystack/entities/inference.py +12 -1
  38. monocle_apptrace/instrumentation/metamodel/haystack/entities/retrieval.py +2 -1
  39. monocle_apptrace/instrumentation/metamodel/lambdafunc/entities/http.py +2 -1
  40. monocle_apptrace/instrumentation/metamodel/langchain/_helper.py +18 -0
  41. monocle_apptrace/instrumentation/metamodel/langchain/entities/inference.py +6 -1
  42. monocle_apptrace/instrumentation/metamodel/langchain/entities/retrieval.py +2 -1
  43. monocle_apptrace/instrumentation/metamodel/langgraph/_helper.py +6 -0
  44. monocle_apptrace/instrumentation/metamodel/langgraph/entities/inference.py +10 -5
  45. monocle_apptrace/instrumentation/metamodel/langgraph/langgraph_processor.py +11 -4
  46. monocle_apptrace/instrumentation/metamodel/langgraph/methods.py +27 -23
  47. monocle_apptrace/instrumentation/metamodel/litellm/__init__.py +0 -0
  48. monocle_apptrace/instrumentation/metamodel/litellm/_helper.py +89 -0
  49. monocle_apptrace/instrumentation/metamodel/litellm/entities/__init__.py +0 -0
  50. monocle_apptrace/instrumentation/metamodel/litellm/entities/inference.py +109 -0
  51. monocle_apptrace/instrumentation/metamodel/litellm/methods.py +19 -0
  52. monocle_apptrace/instrumentation/metamodel/llamaindex/entities/agent.py +9 -4
  53. monocle_apptrace/instrumentation/metamodel/llamaindex/entities/inference.py +2 -1
  54. monocle_apptrace/instrumentation/metamodel/llamaindex/entities/retrieval.py +2 -1
  55. monocle_apptrace/instrumentation/metamodel/llamaindex/llamaindex_processor.py +14 -3
  56. monocle_apptrace/instrumentation/metamodel/llamaindex/methods.py +1 -1
  57. monocle_apptrace/instrumentation/metamodel/mcp/_helper.py +2 -1
  58. monocle_apptrace/instrumentation/metamodel/mcp/entities/inference.py +3 -1
  59. monocle_apptrace/instrumentation/metamodel/mcp/mcp_processor.py +0 -5
  60. monocle_apptrace/instrumentation/metamodel/mcp/methods.py +1 -1
  61. monocle_apptrace/instrumentation/metamodel/openai/_helper.py +110 -5
  62. monocle_apptrace/instrumentation/metamodel/openai/entities/inference.py +59 -13
  63. monocle_apptrace/instrumentation/metamodel/requests/entities/http.py +2 -1
  64. monocle_apptrace/instrumentation/metamodel/teamsai/_helper.py +12 -1
  65. monocle_apptrace/instrumentation/metamodel/teamsai/entities/inference/teamsai_output_processor.py +12 -1
  66. monocle_apptrace/mcp_server.py +94 -0
  67. {monocle_apptrace-0.5.0b1.dist-info → monocle_apptrace-0.5.1b1.dist-info}/METADATA +41 -11
  68. {monocle_apptrace-0.5.0b1.dist-info → monocle_apptrace-0.5.1b1.dist-info}/RECORD +72 -53
  69. monocle_apptrace-0.5.1b1.dist-info/entry_points.txt +2 -0
  70. {monocle_apptrace-0.5.0b1.dist-info → monocle_apptrace-0.5.1b1.dist-info}/WHEEL +0 -0
  71. {monocle_apptrace-0.5.0b1.dist-info → monocle_apptrace-0.5.1b1.dist-info}/licenses/LICENSE +0 -0
  72. {monocle_apptrace-0.5.0b1.dist-info → monocle_apptrace-0.5.1b1.dist-info}/licenses/NOTICE +0 -0
@@ -1,18 +1,23 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: monocle_apptrace
3
- Version: 0.5.0b1
3
+ Version: 0.5.1b1
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
7
+ Author-email: "Okahu Inc." <okahu-pypi@okahu.ai>
8
+ License: Apache-2.0
7
9
  License-File: LICENSE
8
10
  License-File: NOTICE
9
- Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: License :: OSI Approved :: Apache Software License
10
12
  Classifier: Operating System :: OS Independent
11
13
  Classifier: Programming Language :: Python :: 3
12
14
  Requires-Python: >=3.8
15
+ Requires-Dist: click==8.2.1
16
+ Requires-Dist: mcp>=1.13.1
13
17
  Requires-Dist: opentelemetry-api>=1.21.0
14
18
  Requires-Dist: opentelemetry-instrumentation
15
19
  Requires-Dist: opentelemetry-sdk>=1.21.0
20
+ Requires-Dist: pydantic>=2.11.7
16
21
  Requires-Dist: requests
17
22
  Requires-Dist: wrapt>=1.14.0
18
23
  Provides-Extra: aws
@@ -25,12 +30,14 @@ Requires-Dist: anthropic-haystack; extra == 'dev'
25
30
  Requires-Dist: anthropic==0.57.1; extra == 'dev'
26
31
  Requires-Dist: azure-storage-blob==12.22.0; extra == 'dev'
27
32
  Requires-Dist: boto3==1.37.24; extra == 'dev'
28
- Requires-Dist: chromadb==1.0.10; extra == 'dev'
33
+ Requires-Dist: chromadb==1.0.15; extra == 'dev'
29
34
  Requires-Dist: click==8.2.1; extra == 'dev'
30
35
  Requires-Dist: datasets==2.20.0; extra == 'dev'
31
36
  Requires-Dist: faiss-cpu==1.8.0; extra == 'dev'
32
- Requires-Dist: fastapi>=0.115.1; extra == 'dev'
37
+ Requires-Dist: fastapi>=0.115.0; extra == 'dev'
33
38
  Requires-Dist: flask; extra == 'dev'
39
+ Requires-Dist: google-adk==1.10.0; extra == 'dev'
40
+ Requires-Dist: google-generativeai==0.8.5; extra == 'dev'
34
41
  Requires-Dist: haystack-ai==2.3.0; extra == 'dev'
35
42
  Requires-Dist: httpx==0.28.1; extra == 'dev'
36
43
  Requires-Dist: instructorembedding==1.0.1; extra == 'dev'
@@ -46,16 +53,19 @@ Requires-Dist: langchain==0.3.25; extra == 'dev'
46
53
  Requires-Dist: langchainhub==0.1.21; extra == 'dev'
47
54
  Requires-Dist: langgraph-supervisor==0.0.28; extra == 'dev'
48
55
  Requires-Dist: langgraph==0.5.4; extra == 'dev'
49
- Requires-Dist: llama-index-embeddings-huggingface==0.5.4; extra == 'dev'
50
- Requires-Dist: llama-index-llms-anthropic==0.6.19; extra == 'dev'
51
- Requires-Dist: llama-index-llms-azure-openai==0.3.2; extra == 'dev'
52
- Requires-Dist: llama-index-llms-mistralai==0.4.0; extra == 'dev'
53
- Requires-Dist: llama-index-vector-stores-chroma==0.4.1; extra == 'dev'
54
- Requires-Dist: llama-index-vector-stores-opensearch==0.5.4; extra == 'dev'
55
- Requires-Dist: llama-index==0.12.37; extra == 'dev'
56
+ Requires-Dist: llama-index-embeddings-huggingface==0.6.0; extra == 'dev'
57
+ Requires-Dist: llama-index-llms-anthropic==0.8.1; extra == 'dev'
58
+ Requires-Dist: llama-index-llms-azure-openai==0.4.0; extra == 'dev'
59
+ Requires-Dist: llama-index-llms-mistralai==0.7.0; extra == 'dev'
60
+ Requires-Dist: llama-index-llms-openai==0.5.0; extra == 'dev'
61
+ Requires-Dist: llama-index-tools-mcp==0.3.0; extra == 'dev'
62
+ Requires-Dist: llama-index-vector-stores-chroma==0.5.0; extra == 'dev'
63
+ Requires-Dist: llama-index-vector-stores-opensearch==0.6.0; extra == 'dev'
64
+ Requires-Dist: llama-index==0.13.0; extra == 'dev'
56
65
  Requires-Dist: mcp==1.12.1; extra == 'dev'
57
66
  Requires-Dist: mistral-haystack==0.0.2; extra == 'dev'
58
67
  Requires-Dist: numpy==1.26.4; extra == 'dev'
68
+ Requires-Dist: openai-agents==0.2.6; extra == 'dev'
59
69
  Requires-Dist: opendal==0.45.14; extra == 'dev'
60
70
  Requires-Dist: opensearch-haystack==1.2.0; extra == 'dev'
61
71
  Requires-Dist: opentelemetry-instrumentation-flask; extra == 'dev'
@@ -127,6 +137,26 @@ Benefits:
127
137
  See [Monocle user guide](Monocle_User_Guide.md) for more details.
128
138
 
129
139
 
140
+ ## Use Monocle MCP
141
+
142
+ First install monocle-apptrace: pip install monocle-apptrace
143
+
144
+ Open bash and run the following command to run the monocle mcp server with stdio:
145
+ monocle_apptrace
146
+
147
+ If you are using VS Code you can add following entry to your .vscode/mcp.json
148
+
149
+ ```json
150
+ "monocle-mcp-server": {
151
+ "type": "stdio",
152
+ "command": "uvx",
153
+ "args": [
154
+ "monocle_apptrace"
155
+ ],
156
+ "env": {}
157
+ }
158
+ ```
159
+
130
160
  ## Roadmap
131
161
 
132
162
  Goal of Monocle is to support tracing for apps written in *any language* with *any LLM orchestration or agentic framework* and built using models, vectors, agents or other components served up by *any cloud or model inference provider*.
@@ -1,9 +1,10 @@
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=MLLPbC4YTp8O2wQrn8BROSZGvQpQd5brk_d1n_dWVWA,573
4
+ monocle_apptrace/mcp_server.py,sha256=X5NFOE1QHkIktykGlRH-bzOnLsby5E9sTRAT-4BOQx0,5591
4
5
  monocle_apptrace/exporters/base_exporter.py,sha256=xm2MkDjuVZc-vmSXBMMsNMyIoy4z0O4g6wOAyuEnHwo,2062
5
6
  monocle_apptrace/exporters/exporter_processor.py,sha256=-spCIJ_UfJ0fax_jE-ii3ODQBwtnHZgYIGVNd91Q718,6298
6
- monocle_apptrace/exporters/file_exporter.py,sha256=j-5nPMmW984ZB5MN_qlVxkWIDoHz7QEGSfWVPtC6WRU,7823
7
+ monocle_apptrace/exporters/file_exporter.py,sha256=bqRo1h9ubuUltYTj7-LxHWtPwlevBV6dvRbnJXQEwqs,7873
7
8
  monocle_apptrace/exporters/monocle_exporters.py,sha256=qo6S53dp2ko6EzMP-ICL2buqgmw8HZboy19j7iHp1Qk,2882
8
9
  monocle_apptrace/exporters/aws/s3_exporter.py,sha256=9GA2tiWOUBLtDdGIdLLyYJEdQ1jRC5SdxxVH3qqR8Qk,8260
9
10
  monocle_apptrace/exporters/aws/s3_exporter_opendal.py,sha256=0aEUxdMgJaDUwqjw0DqlCMr8kjl01KgwUt3_RRCVFds,5917
@@ -11,116 +12,134 @@ monocle_apptrace/exporters/azure/blob_exporter.py,sha256=YqEouaqZQtO8bLF_OIYEAN6
11
12
  monocle_apptrace/exporters/azure/blob_exporter_opendal.py,sha256=wQUtciyFMD28tpWTiP0-kBjUuxy4LuQSo04aMuHwtb4,7140
12
13
  monocle_apptrace/exporters/okahu/okahu_exporter.py,sha256=wFkHd87nOXzFMRejrUiO6N0mNIWkxAyRzob6o82lr_c,4765
13
14
  monocle_apptrace/instrumentation/__init__.py,sha256=wCzg-Ivla7p2F01pM1fEEQMztzcZZB4vD5cZ9CsTigw,94
14
- monocle_apptrace/instrumentation/common/__init__.py,sha256=5iGX1KANnPGqLJJb8FG0H8HTyt94BZIr9lXjMBEBdTs,403
15
- monocle_apptrace/instrumentation/common/constants.py,sha256=t1u5nKhN05aD0pDB9rVaAmXlxDOaXzGTDkgGdooHsgE,3545
16
- monocle_apptrace/instrumentation/common/instrumentor.py,sha256=76-KyE10A53JKDVxBc5YfxqvSt-FxQqu33E0JUuLuLY,10966
17
- monocle_apptrace/instrumentation/common/method_wrappers.py,sha256=jwY7kd40tyRqzIxIkg75nnLoZohsxc5z96VqNVKvVRc,13763
18
- monocle_apptrace/instrumentation/common/span_handler.py,sha256=hP29_nP9yxInIoSEsPmC7lcF-QsDBtYedzmyDHRPMaw,13911
15
+ monocle_apptrace/instrumentation/common/__init__.py,sha256=iVcdQectswd-J_h5n0n-PqAXsrmCRxdK8YeyqYGArC8,432
16
+ monocle_apptrace/instrumentation/common/constants.py,sha256=dAbIKrfI97oYMKNj5gdPWvP-YEvnLcRbd6Qec2k2MYk,6281
17
+ monocle_apptrace/instrumentation/common/instrumentor.py,sha256=2mxnnxlnBpaJUpIhS2dihIfbmbUEbLN8H2hUtN34c9o,10849
18
+ monocle_apptrace/instrumentation/common/method_wrappers.py,sha256=jC3G_R2YVD0JWCzxx1zNzJbe_BsNhsveVMegJRXA3IQ,10152
19
+ monocle_apptrace/instrumentation/common/scope_wrapper.py,sha256=Ysr4zmb71sZm3R-fNabctnNJHnmLVL9FE-4EmQo3HxA,3927
20
+ monocle_apptrace/instrumentation/common/span_handler.py,sha256=ZpFyw1YY6JtNjLB5HRdgVkugqOTx27Pe4lezDbBULpo,15084
19
21
  monocle_apptrace/instrumentation/common/tracing.md,sha256=6Lr8QGxEFHKhj-mMvLV3xjFnplKSs6HEdwl0McPK47M,7577
20
- monocle_apptrace/instrumentation/common/utils.py,sha256=XXePKPNnENiKBUq_JKpKT2StAcf9BgRRjk1WK_pXh1c,14633
21
- monocle_apptrace/instrumentation/common/wrapper.py,sha256=AFlT1cxrI7_tcGzWBX138ywpriav-7VyeAurfNFJLHg,11563
22
- monocle_apptrace/instrumentation/common/wrapper_method.py,sha256=kMF7jPyTgKPtjnl9x2_aM09mVjFYMYQ45SH1DlB6b6M,6125
22
+ monocle_apptrace/instrumentation/common/utils.py,sha256=TZmKMYCfHAGycMLQyqnrnto5llgBlKp-yPN0QtNKRfE,15621
23
+ monocle_apptrace/instrumentation/common/wrapper.py,sha256=vbt2650Z3YNcxIvrT3odZ1RHIIeAHrrvYQOqFNUGXHQ,20285
24
+ monocle_apptrace/instrumentation/common/wrapper_method.py,sha256=E_OWQ2I4AAthWAtSBWHrzicHs0ug7vMkZIWJlp6D-H8,6583
23
25
  monocle_apptrace/instrumentation/metamodel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
- monocle_apptrace/instrumentation/metamodel/finish_types.py,sha256=NtL52bI1s6eLZf6SJgM6QQREl4z96luFfnk2IiQdMxM,16315
26
+ monocle_apptrace/instrumentation/metamodel/finish_types.py,sha256=ck-bWfMezrNIkUHy9QpW25cLCmNsjmceYzBzEydm92w,19267
25
27
  monocle_apptrace/instrumentation/metamodel/a2a/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
28
  monocle_apptrace/instrumentation/metamodel/a2a/_helper.py,sha256=BHuhF5OnEFEQR081lM4R538c83P--t1J5xHOREFDBpo,1281
27
29
  monocle_apptrace/instrumentation/metamodel/a2a/methods.py,sha256=_KiCczpRZWfTkzpwQ36kLp5t6Fw-8UEse2Yg4kaHwUk,675
28
30
  monocle_apptrace/instrumentation/metamodel/a2a/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
- monocle_apptrace/instrumentation/metamodel/a2a/entities/inference.py,sha256=D3TnjuoPn8fg5n02vGRbbXGcLoyZ4ew_SSBCQikeHtY,3580
31
+ monocle_apptrace/instrumentation/metamodel/a2a/entities/inference.py,sha256=5v37Q5mqE0JzWsmC6x1ZvJB3Zpkyce3hKyfCHF7iD9Q,3715
32
+ monocle_apptrace/instrumentation/metamodel/adk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
+ monocle_apptrace/instrumentation/metamodel/adk/_helper.py,sha256=mEs8AU1ti9ClWDdKzNGDYdOw_gMqKdbHc39hN7WxFKU,6417
34
+ monocle_apptrace/instrumentation/metamodel/adk/methods.py,sha256=Wp6MJArvLotY2CIAf1PlwJzdcH8qBk7II1KPBRET7c0,917
35
+ monocle_apptrace/instrumentation/metamodel/adk/entities/agent.py,sha256=qIdDqnsu1yiJS2UERhi7gfjnqogquOdr6ZRR1PDqMEs,3450
36
+ monocle_apptrace/instrumentation/metamodel/adk/entities/tool.py,sha256=uKTOBbyJtP1nn-gI-zsF__MkhRY_Y7xgcQr6keG4VtA,1933
37
+ monocle_apptrace/instrumentation/metamodel/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
+ monocle_apptrace/instrumentation/metamodel/agents/_helper.py,sha256=bHF3BaJyCli8VFgd-eRxaditoYT5UXLF7a1-zzMafik,7625
39
+ monocle_apptrace/instrumentation/metamodel/agents/agents_processor.py,sha256=P95dNBh18M74Bw-BklwcN3wRfyi4vC3Q9EOcR8QBheg,6194
40
+ monocle_apptrace/instrumentation/metamodel/agents/methods.py,sha256=l7KwBLm_olUfZsN9UxUVc_spvSGLNqBJzKh3cyX40-o,1758
41
+ monocle_apptrace/instrumentation/metamodel/agents/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
+ monocle_apptrace/instrumentation/metamodel/agents/entities/inference.py,sha256=5drQmhd4fRVzKs7ossH3RmbdQRKXerEiqtq7xAKlpX8,6110
30
43
  monocle_apptrace/instrumentation/metamodel/aiohttp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
44
  monocle_apptrace/instrumentation/metamodel/aiohttp/_helper.py,sha256=LjAYaZUUXw59dzol-NDTiz9uZNTZ2Mwu6WXggGpefd8,2088
32
45
  monocle_apptrace/instrumentation/metamodel/aiohttp/methods.py,sha256=rcfGoRMLJeu-X2O9fGv6nhhjUrBJALKOJ-axiedavMI,435
33
- monocle_apptrace/instrumentation/metamodel/aiohttp/entities/http.py,sha256=9mRr8nwUB4DSnFzpU9kwJkShlZbqwIPYztDfDp3_l0s,1701
46
+ monocle_apptrace/instrumentation/metamodel/aiohttp/entities/http.py,sha256=8j5x6Mgkoq076_ZvOFP05zBpsGt5hmREk8IqVihwwYQ,1783
34
47
  monocle_apptrace/instrumentation/metamodel/anthropic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
- monocle_apptrace/instrumentation/metamodel/anthropic/_helper.py,sha256=OzNwPS5VxXYdgPRzgN0loNGiUGVnyzGAgLY0aV86H8g,4551
48
+ monocle_apptrace/instrumentation/metamodel/anthropic/_helper.py,sha256=fuILJFil-Gr2hIDIK-2xlHyibCwVXLbakFgJ2P9AKNE,8615
36
49
  monocle_apptrace/instrumentation/metamodel/anthropic/methods.py,sha256=WVXoN_i5h9hXjrJV5xF9wIQIpmP_gCN3P8HEPfAsfik,703
37
50
  monocle_apptrace/instrumentation/metamodel/anthropic/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
- monocle_apptrace/instrumentation/metamodel/anthropic/entities/inference.py,sha256=UVE1jncYeotD4XA_SDEP8OVfb3SDKEdXaQHyBTAGtXg,3379
51
+ monocle_apptrace/instrumentation/metamodel/anthropic/entities/inference.py,sha256=6mwMs-ZYoS0B4mkUXwy1VFBzJQd8olEwhEqYgUSyVIc,3643
39
52
  monocle_apptrace/instrumentation/metamodel/azfunc/_helper.py,sha256=Syy5hvVBGdA_NUebidt_wzcCWDUx-eAaThclr-oHVsQ,2725
40
53
  monocle_apptrace/instrumentation/metamodel/azfunc/methods.py,sha256=dCcptd9nLsXkkWtSgXBh7zRia-1g-A3rgiC4cqt5Tzo,916
41
54
  monocle_apptrace/instrumentation/metamodel/azfunc/wrapper.py,sha256=zssmQNWG-kn9cSfE1JYwqHsl1hU4zrN2xUcFbyos8oM,712
42
- monocle_apptrace/instrumentation/metamodel/azfunc/entities/http.py,sha256=erarpDjLK69B0PcG70VIkeuDHuWKegBtxbgw6IfLMqo,1931
55
+ monocle_apptrace/instrumentation/metamodel/azfunc/entities/http.py,sha256=UyZ88dLw_PMHsC6k-VbT_eCKVWcx8a1bZNSMvpcbloc,2013
43
56
  monocle_apptrace/instrumentation/metamodel/azureaiinference/__init__.py,sha256=zHdtJf4MZKSIi-4KPxdDR_dZdRAdZuy7Z8yDRa6cBps,44
44
57
  monocle_apptrace/instrumentation/metamodel/azureaiinference/_helper.py,sha256=j0f9ej0k0696kXrmOq_bmO4uQuxcgM5UsMCVDWXcbCI,11734
45
58
  monocle_apptrace/instrumentation/metamodel/azureaiinference/methods.py,sha256=PsxJPFSc9yp9uzdpwVUWUAd2PVwF7MYwf3I2_cqHSOk,810
46
- monocle_apptrace/instrumentation/metamodel/azureaiinference/entities/inference.py,sha256=hcfBjq_2CsOZuFKka-DF7LcYLiRRiABZTqlbViKbX0Q,8664
59
+ monocle_apptrace/instrumentation/metamodel/azureaiinference/entities/inference.py,sha256=veszCGFtEiMKhbM88X-HVQL6KM2plsLzFUL2TF46x8A,8746
47
60
  monocle_apptrace/instrumentation/metamodel/botocore/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
61
  monocle_apptrace/instrumentation/metamodel/botocore/_helper.py,sha256=bNvnv2kASii1DYYoOW9CFGcefJgTC4rq8JiGFXBKud4,8387
49
62
  monocle_apptrace/instrumentation/metamodel/botocore/methods.py,sha256=LzmjbZjDWy7Uozc0chNjWG6PZhLngh_KJe5L6rw5rqI,452
50
63
  monocle_apptrace/instrumentation/metamodel/botocore/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
- monocle_apptrace/instrumentation/metamodel/botocore/entities/inference.py,sha256=gcbcdTKSUC7RPtf6gVisP5P1_xdVLJXKDZejHDXkCGk,2991
64
+ monocle_apptrace/instrumentation/metamodel/botocore/entities/inference.py,sha256=-YW5pBQ3fWy3TMbiRfBfJyDx_4bR4OgTjS2poG-hWoM,3073
52
65
  monocle_apptrace/instrumentation/metamodel/botocore/handlers/botocore_span_handler.py,sha256=aZ_jxngqjihxxTPFOqYH8rjoEdF_WVwE_3-TB57d_8I,1444
53
66
  monocle_apptrace/instrumentation/metamodel/fastapi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
67
  monocle_apptrace/instrumentation/metamodel/fastapi/_helper.py,sha256=3hdf-3oag50k5cPfknWwMrYJTS6Oo93WJHE4l-oLWzg,3205
55
- monocle_apptrace/instrumentation/metamodel/fastapi/methods.py,sha256=uDtrkk9JbK8VxxotCfDeEudzY6akdsBiimYxiA1tBrw,805
68
+ monocle_apptrace/instrumentation/metamodel/fastapi/methods.py,sha256=iOtZc-D5jSQuH9mPzhymuxe2wsx2QbwT1yLwef2hJ1A,841
56
69
  monocle_apptrace/instrumentation/metamodel/fastapi/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
57
- monocle_apptrace/instrumentation/metamodel/fastapi/entities/http.py,sha256=ELKl5M_FOuMYH71cHebxp217EP4lMucYzzoXUKPeNCs,1257
70
+ monocle_apptrace/instrumentation/metamodel/fastapi/entities/http.py,sha256=Q2cyNNMenDU63tZBbL5dNKqEnu08NC8NmLp46SEusu8,1339
58
71
  monocle_apptrace/instrumentation/metamodel/flask/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
59
72
  monocle_apptrace/instrumentation/metamodel/flask/_helper.py,sha256=vvP1k3ArXfX7oMqnjaEE77rOYcl_ssAmjjknBRX8jlg,2821
60
73
  monocle_apptrace/instrumentation/metamodel/flask/methods.py,sha256=dWCMEDk-HWHiD0vlMoAVYbIFclstmVkUpRrCtqDWyFE,739
61
- monocle_apptrace/instrumentation/metamodel/flask/entities/http.py,sha256=wIudpNk6-DY72k0p90XtvjKt8BilvOd-87Q2iqJnWa8,1525
74
+ monocle_apptrace/instrumentation/metamodel/flask/entities/http.py,sha256=-4VAWx2vHEONIyG-JCVBadJt0F8eI_WliDCi5BjpAmo,1607
62
75
  monocle_apptrace/instrumentation/metamodel/gemini/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
63
76
  monocle_apptrace/instrumentation/metamodel/gemini/_helper.py,sha256=qCjZGPYP_aidE4Eue4GK0x8RbTkh74ayJfJkFRLdhpg,5103
64
- monocle_apptrace/instrumentation/metamodel/gemini/methods.py,sha256=e50QqYBZyBf2rX7118NkTyfZTtPRlLhr8NFLTdzwDPM,670
77
+ monocle_apptrace/instrumentation/metamodel/gemini/methods.py,sha256=prvi1oY4n1DAefP6IJ7McfrtprHRlwmtGBb-R1kxlPQ,881
65
78
  monocle_apptrace/instrumentation/metamodel/gemini/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
66
- monocle_apptrace/instrumentation/metamodel/gemini/entities/inference.py,sha256=1AR9TBeOsgNjCbCWUgA_5h3gKVjnPUQabkdw5oJEyPA,3011
67
- monocle_apptrace/instrumentation/metamodel/gemini/entities/retrieval.py,sha256=V0ZaWC-FDBW-k9-CI7hvt67COZrFv6gK59bDYZWZcFo,1303
79
+ monocle_apptrace/instrumentation/metamodel/gemini/entities/inference.py,sha256=hd1lnoi_q80gw4F7380uKsKa14V6tqjezNWKWblukdU,3219
80
+ monocle_apptrace/instrumentation/metamodel/gemini/entities/retrieval.py,sha256=slqLu3U3Y1MsO_kxi2XRcyryB72JpsEusWt7lRVOwB4,1385
68
81
  monocle_apptrace/instrumentation/metamodel/haystack/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
69
- monocle_apptrace/instrumentation/metamodel/haystack/_helper.py,sha256=bJxw_bFU-mJpL2jZ0wagrEES_lIGVKIpDPkdSpTJFbA,6363
82
+ monocle_apptrace/instrumentation/metamodel/haystack/_helper.py,sha256=0sT-RlhtbZDIWBCts0qtSeVdsmZ7QRFtAAN8Gh-oIZw,9166
70
83
  monocle_apptrace/instrumentation/metamodel/haystack/methods.py,sha256=fuICw7KVTA2zib4b0CmLp_WKA53Lu7YjgsEBeWAQ4eY,1826
71
84
  monocle_apptrace/instrumentation/metamodel/haystack/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
72
- monocle_apptrace/instrumentation/metamodel/haystack/entities/inference.py,sha256=b-PrRRzygSsw6DNnhGEif39W2oCQlVA-w5M3r_xAek8,3356
73
- monocle_apptrace/instrumentation/metamodel/haystack/entities/retrieval.py,sha256=nq3lsk2qFxXqwrAHsBt8zrh4ZVGAJABkPtylrjUCCqc,2357
85
+ monocle_apptrace/instrumentation/metamodel/haystack/entities/inference.py,sha256=pykGCW_ucEdPkp_yshSyHeK7p2WxJpnzxHEPt7TONp0,3880
86
+ monocle_apptrace/instrumentation/metamodel/haystack/entities/retrieval.py,sha256=bWagT0us1sGFlvHEToYlVk4PPDxFimQC0l_BJmrjnxc,2439
74
87
  monocle_apptrace/instrumentation/metamodel/lambdafunc/_helper.py,sha256=tA79BQtHoCmQrEhUdpwPvOXjM3IrCzR_9cLbds9xBgI,2496
75
88
  monocle_apptrace/instrumentation/metamodel/lambdafunc/methods.py,sha256=-b5dfI5oZVdRmBjfrVJgQuN910p7SUOu9Tc1AUhkz3A,934
76
89
  monocle_apptrace/instrumentation/metamodel/lambdafunc/wrapper.py,sha256=nxnfCwPftoRdHfjuRNrILEFOvB1e8oXqHRfPn-qxyZY,716
77
- monocle_apptrace/instrumentation/metamodel/lambdafunc/entities/http.py,sha256=PPpyh-7w4k4sCllXNODF3IfI7ZBZWTWi1FyafZCJJ90,1707
90
+ monocle_apptrace/instrumentation/metamodel/lambdafunc/entities/http.py,sha256=QKROulDBLkzhWRdn0Aq-3JYhs9jwqegvTw0TU3fQc68,1789
78
91
  monocle_apptrace/instrumentation/metamodel/langchain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
79
- monocle_apptrace/instrumentation/metamodel/langchain/_helper.py,sha256=VE3bIEB871mlBW3CRRIfnBY2y2G5DF98cpMIq5BlF_I,11347
92
+ monocle_apptrace/instrumentation/metamodel/langchain/_helper.py,sha256=Xt-PRVLDMU6buiKLcUhw-IwL5sj1FF-etkp403HGRs0,12339
80
93
  monocle_apptrace/instrumentation/metamodel/langchain/methods.py,sha256=sQLrji0NLuG8i8q5UdbgzPUjWh_WmromfvWL3pGZdCk,2941
81
94
  monocle_apptrace/instrumentation/metamodel/langchain/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
82
- monocle_apptrace/instrumentation/metamodel/langchain/entities/inference.py,sha256=m2EZ3dgnBtnLnIfUj5ofFeEhtr5oiPpzly9wDlz4g20,3382
83
- monocle_apptrace/instrumentation/metamodel/langchain/entities/retrieval.py,sha256=r4UqTCT5vOfkbz9lwoTRoiMkUUJtPMwqOYbqo53A6K8,2039
95
+ monocle_apptrace/instrumentation/metamodel/langchain/entities/inference.py,sha256=Bqv7pDj-wQGtD5iJf4sG67aEHF4nJxHy7FfTEw4Ec5g,3646
96
+ monocle_apptrace/instrumentation/metamodel/langchain/entities/retrieval.py,sha256=rRzp_oi_-yEKgCnQUxIS2ForJKtUQFGADYOou91sXU0,2121
84
97
  monocle_apptrace/instrumentation/metamodel/langgraph/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
85
- monocle_apptrace/instrumentation/metamodel/langgraph/_helper.py,sha256=zzSQPJ2gXzQbvPlKDj3Hvucc1gYSHT2_m2K5XevLYeU,3890
86
- monocle_apptrace/instrumentation/metamodel/langgraph/langgraph_processor.py,sha256=3HBxGVwjRRvpip_Fila2p7icfaGGnrSY3VrMerdE6Ts,2582
87
- monocle_apptrace/instrumentation/metamodel/langgraph/methods.py,sha256=bivhMI8UIAWCOY7fwd0fS2MAfOtxTUkzGrhmkW2YiEM,1216
98
+ monocle_apptrace/instrumentation/metamodel/langgraph/_helper.py,sha256=O0x8fLwc5SqIZCQVovvbxAtR1ewZJobNLmOqM1DzQWA,4031
99
+ monocle_apptrace/instrumentation/metamodel/langgraph/langgraph_processor.py,sha256=0JZKLwWcdXTvp7QoBhCV6CoplohMoH3jdZ0EtfUNi2s,3156
100
+ monocle_apptrace/instrumentation/metamodel/langgraph/methods.py,sha256=xu3BkxjupktwdAPAvavOd2_ZhjllqfYQQ3s1RWrhWlE,1295
88
101
  monocle_apptrace/instrumentation/metamodel/langgraph/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
89
- monocle_apptrace/instrumentation/metamodel/langgraph/entities/inference.py,sha256=of8YhcUhEVkBQXyNY-ud2D4ZVZtvxncEkFWjxru94yc,4802
102
+ monocle_apptrace/instrumentation/metamodel/langgraph/entities/inference.py,sha256=Md5IMxvqPu1FRSwMkxLE-9uJi3UuVafBFp7DgHHJvdw,5134
103
+ monocle_apptrace/instrumentation/metamodel/litellm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
104
+ monocle_apptrace/instrumentation/metamodel/litellm/_helper.py,sha256=Yo0RtiJ4WKDRuC9VqUmXmdQmRLduOsVGHMNwswwdcLk,3433
105
+ monocle_apptrace/instrumentation/metamodel/litellm/methods.py,sha256=D3rT7bQKzPRxGIs3GxwPmjmmti8ndF7_5Cmz8ojfSJQ,627
106
+ monocle_apptrace/instrumentation/metamodel/litellm/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
107
+ monocle_apptrace/instrumentation/metamodel/litellm/entities/inference.py,sha256=uh8b8o770BCYgz9QGdFYTMU6pOK3XG7uzwjOBAPi1Ko,3636
90
108
  monocle_apptrace/instrumentation/metamodel/llamaindex/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
91
109
  monocle_apptrace/instrumentation/metamodel/llamaindex/_helper.py,sha256=-Vw215wWAqLuvWsdSDzllmHaKAm6Vd-kAUfDRevnWxY,16221
92
- monocle_apptrace/instrumentation/metamodel/llamaindex/llamaindex_processor.py,sha256=c00tazxqjO9E3DJlk1E3GOkP_BXLwrBOD8YUxqExX2U,3386
93
- monocle_apptrace/instrumentation/metamodel/llamaindex/methods.py,sha256=Jw9TcFKtSSz5hG5QVPjU38vlGDrNT7kiRhyoctcM7bY,5167
110
+ monocle_apptrace/instrumentation/metamodel/llamaindex/llamaindex_processor.py,sha256=BRZWUSY5M6cpU1YpsBjL2jBtrWD2suWLN04eDcL1xsM,3903
111
+ monocle_apptrace/instrumentation/metamodel/llamaindex/methods.py,sha256=OQjFgyBC6ykHOrsV3otw81gHPtPiAV20UUT_-c9L-Vs,5166
94
112
  monocle_apptrace/instrumentation/metamodel/llamaindex/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
95
- monocle_apptrace/instrumentation/metamodel/llamaindex/entities/agent.py,sha256=EjxwuMUksUZeO00jleM4MnWuufXL7YNGKeOzEmUJNos,4955
96
- monocle_apptrace/instrumentation/metamodel/llamaindex/entities/inference.py,sha256=t25og0SOnWLeL9_CI94SGLoTuE2FI3oftd8a3B3XWr4,3319
97
- monocle_apptrace/instrumentation/metamodel/llamaindex/entities/retrieval.py,sha256=QBF1nrqog5KHh925jiY2V-kejL6iVLKUowZmqUDoiJ4,1870
113
+ monocle_apptrace/instrumentation/metamodel/llamaindex/entities/agent.py,sha256=sSJBS6F7lmQGeRSSbud9UTQ0l0R7SkClnVrpSJWVV5k,5256
114
+ monocle_apptrace/instrumentation/metamodel/llamaindex/entities/inference.py,sha256=sWXR1-Vp6QxQVm9yYrrb3N6i8vS4vuR7G1MkS-DFY9o,3401
115
+ monocle_apptrace/instrumentation/metamodel/llamaindex/entities/retrieval.py,sha256=z9jWZW_UCYL0fKCUKXEiIzloZeYi14kGkOPqewO4If8,1952
98
116
  monocle_apptrace/instrumentation/metamodel/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
99
- monocle_apptrace/instrumentation/metamodel/mcp/_helper.py,sha256=fqb3SnkI01lq8PW2s-XKO49b_JZlUxafDkbbYvb-uX8,3840
100
- monocle_apptrace/instrumentation/metamodel/mcp/mcp_processor.py,sha256=oR6n1lLy2WfhvfqhEg1-ff2p8A5RSSQ_MUXYuPqZD-k,562
101
- monocle_apptrace/instrumentation/metamodel/mcp/methods.py,sha256=udDKg5r89PHuYo-0y44cr0qSJgDKtku19WNP-lnrsAU,686
117
+ monocle_apptrace/instrumentation/metamodel/mcp/_helper.py,sha256=m67hrdAD_plMdMOvUzUU3AcC6zVRSQ3NwOfYDNl9PxM,3937
118
+ monocle_apptrace/instrumentation/metamodel/mcp/mcp_processor.py,sha256=bCAEUYNudGcXhpS-U7GP6Zt917AhvxJWJpoykfjE044,377
119
+ monocle_apptrace/instrumentation/metamodel/mcp/methods.py,sha256=rgd5lZG8Z8x4vGZ5JxZiPeAwBoaZp6wOuwO8uYzHRCs,685
102
120
  monocle_apptrace/instrumentation/metamodel/mcp/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
103
- monocle_apptrace/instrumentation/metamodel/mcp/entities/inference.py,sha256=h1YTuSgInXymc3icwZiXmE8hfhtjjOP90kdETqUlS7A,1410
121
+ monocle_apptrace/instrumentation/metamodel/mcp/entities/inference.py,sha256=CcceJdDcBtAMu4Jlpchd6qQ37KXNLeVzvulkj3L77sQ,1545
104
122
  monocle_apptrace/instrumentation/metamodel/openai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
105
- monocle_apptrace/instrumentation/metamodel/openai/_helper.py,sha256=i5slMz_ljqUdx88MuasF6gRvjw359dNbu2fqIWNsDBs,9284
123
+ monocle_apptrace/instrumentation/metamodel/openai/_helper.py,sha256=Iy8bsvpMTXEj0Ay60aBZKT1u2h2fxllBCnj0zb7FLHc,14985
106
124
  monocle_apptrace/instrumentation/metamodel/openai/methods.py,sha256=jpqZyfiJbzMz1r3W3fwMCGiQsbiDSkhqgADJextGxFQ,1796
107
125
  monocle_apptrace/instrumentation/metamodel/openai/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
108
- monocle_apptrace/instrumentation/metamodel/openai/entities/inference.py,sha256=MjcSYC-j5-mStbBxeczLQiR2r0nTLdoWkAVWhdMmt1M,8544
126
+ monocle_apptrace/instrumentation/metamodel/openai/entities/inference.py,sha256=IyiC2CEamBFIYaDi73kv5HFtmneDXGW-paYVcaiUtm8,10354
109
127
  monocle_apptrace/instrumentation/metamodel/openai/entities/retrieval.py,sha256=atvkAmG-7OiNndmH9kNWOMfN1vBpZ6lEZgMR_JISCe8,1457
110
128
  monocle_apptrace/instrumentation/metamodel/requests/__init__.py,sha256=mg04UgoPzzcH-cPOahYUqN9T-TolZyOZipnBwDg5TP8,250
111
129
  monocle_apptrace/instrumentation/metamodel/requests/_helper.py,sha256=GS03VbT9LiGwt4Mz2DPHtxuWd3xhQL4liS9-dfpy9SE,1985
112
130
  monocle_apptrace/instrumentation/metamodel/requests/methods.py,sha256=O7lkglRvV97zqnCu6r2JwvW8WQqi4uvlpmNkAPpXigE,440
113
- monocle_apptrace/instrumentation/metamodel/requests/entities/http.py,sha256=TlY4NZtPleewbF5W0qV61L2ByDOf44EOZhKQgwzRIKc,1669
131
+ monocle_apptrace/instrumentation/metamodel/requests/entities/http.py,sha256=wM7HVf6GMnnso7sAO-YfRkYLWW21M_kLPMM8Ak9czLk,1751
114
132
  monocle_apptrace/instrumentation/metamodel/teamsai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
- monocle_apptrace/instrumentation/metamodel/teamsai/_helper.py,sha256=LmF_FYctfnpy5Fhu8oBKCl_HBs00RGlpzWYYRDTKYQU,6855
133
+ monocle_apptrace/instrumentation/metamodel/teamsai/_helper.py,sha256=9DJgmdHNEeTELnv4Qu0ZCbeknFFtTA8f0XsSOIsmETs,7195
116
134
  monocle_apptrace/instrumentation/metamodel/teamsai/methods.py,sha256=5fPh2l8nSi524KwHGp-m6GVEy3lXmBG-97i7r0CpE2g,3453
117
135
  monocle_apptrace/instrumentation/metamodel/teamsai/sample.json,sha256=GnlzIad8rjugqkOh18bhKdxNlrJW77zSjwT6JEqDwyU,26003
118
136
  monocle_apptrace/instrumentation/metamodel/teamsai/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
119
137
  monocle_apptrace/instrumentation/metamodel/teamsai/entities/inference/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
120
138
  monocle_apptrace/instrumentation/metamodel/teamsai/entities/inference/actionplanner_output_processor.py,sha256=FRR9iBdDBXfYscP-lkORMNKl_lllflZN6gMlC7m_94w,3206
121
- monocle_apptrace/instrumentation/metamodel/teamsai/entities/inference/teamsai_output_processor.py,sha256=pXudFpi4mbRYZZ6aYk7gWVAJo-F5uzpYUAB5Sf3JLNY,2616
122
- monocle_apptrace-0.5.0b1.dist-info/METADATA,sha256=iwcH0SaQi4sBCwlGxgbDldedDe1kRNZSQSwhV4b5Tbs,7146
123
- monocle_apptrace-0.5.0b1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
124
- monocle_apptrace-0.5.0b1.dist-info/licenses/LICENSE,sha256=ay9trLiP5I7ZsFXo6AqtkLYdRqe5S9r-DrPOvsNlZrg,9136
125
- monocle_apptrace-0.5.0b1.dist-info/licenses/NOTICE,sha256=9jn4xtwM_uUetJMx5WqGnhrR7MIhpoRlpokjSTlyt8c,112
126
- monocle_apptrace-0.5.0b1.dist-info/RECORD,,
139
+ monocle_apptrace/instrumentation/metamodel/teamsai/entities/inference/teamsai_output_processor.py,sha256=o9jrBIEqPDg3VfR6zexUCpkq3jlX0lQji8CKLUUK4Wk,3022
140
+ monocle_apptrace-0.5.1b1.dist-info/METADATA,sha256=ScYyK_Mw2BqC9Eyet78MFcoV3b7CwtQ3GHkseNJQd2o,8013
141
+ monocle_apptrace-0.5.1b1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
142
+ monocle_apptrace-0.5.1b1.dist-info/entry_points.txt,sha256=rxpPKb3klrgZEbSyOFQ2J6KRPO7ri9ES-zmC8Jtikx8,70
143
+ monocle_apptrace-0.5.1b1.dist-info/licenses/LICENSE,sha256=ay9trLiP5I7ZsFXo6AqtkLYdRqe5S9r-DrPOvsNlZrg,9136
144
+ monocle_apptrace-0.5.1b1.dist-info/licenses/NOTICE,sha256=9jn4xtwM_uUetJMx5WqGnhrR7MIhpoRlpokjSTlyt8c,112
145
+ monocle_apptrace-0.5.1b1.dist-info/RECORD,,
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ monocle_apptrace = monocle_apptrace.mcp_server:main