ragaai-catalyst 2.1.4b7__py3-none-any.whl → 2.1.4.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.
@@ -271,7 +271,7 @@ class ComponentInfo:
271
271
  cost: Optional[Dict[str, float]] = None
272
272
 
273
273
  class Trace:
274
- def __init__(self, id: str, trace_name: str, project_name: str, start_time: str, end_time: str, metadata: Optional[Metadata] = None, data: Optional[List[Dict[str, Any]]] = None, replays: Optional[Dict[str, Any]] = None):
274
+ def __init__(self, id: str, trace_name: str, project_name: str, start_time: str, end_time: str, metadata: Optional[Metadata] = None, data: Optional[List[Dict[str, Any]]] = None, replays: Optional[Dict[str, Any]] = None, metrics: Optional[List[Dict[str, Any]]] = None):
275
275
  self.id = id
276
276
  self.trace_name = trace_name
277
277
  self.project_name = project_name
@@ -280,6 +280,7 @@ class Trace:
280
280
  self.metadata = metadata or Metadata()
281
281
  self.data = data or []
282
282
  self.replays = replays
283
+ self.metrics = metrics or []
283
284
 
284
285
  def to_dict(self):
285
286
  return {
@@ -288,7 +289,8 @@ class Trace:
288
289
  "project_name": self.project_name,
289
290
  "start_time": self.start_time,
290
291
  "end_time": self.end_time,
291
- "metadata": self.metadata.to_dict() if self.metadata else None,
292
+ "metadata": self.metadata,
292
293
  "data": self.data,
293
294
  "replays": self.replays,
295
+ "metrics": self.metrics
294
296
  }
@@ -5,7 +5,7 @@ import psutil
5
5
  import pkg_resources
6
6
  from datetime import datetime
7
7
  from pathlib import Path
8
- from typing import List, Any
8
+ from typing import List, Any, Dict
9
9
  import uuid
10
10
  import sys
11
11
  import tempfile
@@ -81,6 +81,7 @@ class BaseTracer:
81
81
  self.project_id = self.user_details["project_id"] # Access the project_id
82
82
  self.trace_name = self.user_details["trace_name"] # Access the trace_name
83
83
  self.visited_metrics = []
84
+ self.trace_metrics = [] # Store metrics here
84
85
 
85
86
  # Initialize trace data
86
87
  self.trace_id = None
@@ -211,6 +212,10 @@ class BaseTracer:
211
212
  threading.Thread(target=self._track_disk_usage).start()
212
213
  threading.Thread(target=self._track_network_usage).start()
213
214
 
215
+ # Reset metrics
216
+ self.visited_metrics = []
217
+ self.trace_metrics = []
218
+
214
219
  metadata = Metadata(
215
220
  cost={},
216
221
  tokens={},
@@ -241,6 +246,7 @@ class BaseTracer:
241
246
  metadata=metadata,
242
247
  data=self.data_key,
243
248
  replays={"source": None},
249
+ metrics=[] # Initialize empty metrics list
244
250
  )
245
251
 
246
252
  def stop(self):
@@ -300,8 +306,12 @@ class BaseTracer:
300
306
  # replace source code with zip_path
301
307
  self.trace.metadata.system_info.source_code = hash_id
302
308
 
309
+ # Add metrics to trace before saving
310
+ trace_data = self.trace.to_dict()
311
+
312
+ trace_data["metrics"] = self.trace_metrics
313
+
303
314
  # Clean up trace_data before saving
304
- trace_data = self.trace.__dict__
305
315
  cleaned_trace_data = self._clean_trace(trace_data)
306
316
 
307
317
  # Format interactions and add to trace
@@ -609,9 +619,7 @@ class BaseTracer:
609
619
  "span_id": child.get("id"),
610
620
  "interaction_type": "llm_call_end",
611
621
  "name": child.get("name"),
612
- "content": {
613
- "response": child.get("data", {}).get("output")
614
- },
622
+ "content": {"response": child.get("data", {}).get("output")},
615
623
  "timestamp": child.get("end_time"),
616
624
  "error": child.get("error"),
617
625
  }
@@ -882,8 +890,90 @@ class BaseTracer:
882
890
 
883
891
  return {"workflow": sorted_interactions}
884
892
 
893
+ def add_metrics(
894
+ self,
895
+ name: str | List[Dict[str, Any]] | Dict[str, Any] = None,
896
+ score: float | int = None,
897
+ reasoning: str = "",
898
+ cost: float = None,
899
+ latency: float = None,
900
+ metadata: Dict[str, Any] = None,
901
+ config: Dict[str, Any] = None,
902
+ ):
903
+ """Add metrics at the trace level.
904
+
905
+ Can be called in two ways:
906
+ 1. With individual parameters:
907
+ tracer.add_metrics(name="metric_name", score=0.9, reasoning="Good performance")
908
+
909
+ 2. With a dictionary or list of dictionaries:
910
+ tracer.add_metrics({"name": "metric_name", "score": 0.9})
911
+ tracer.add_metrics([{"name": "metric1", "score": 0.9}, {"name": "metric2", "score": 0.8}])
912
+
913
+ Args:
914
+ name: Either the metric name (str) or a metric dictionary/list of dictionaries
915
+ score: Score value (float or int) when using individual parameters
916
+ reasoning: Optional explanation for the score
917
+ cost: Optional cost associated with the metric
918
+ latency: Optional latency measurement
919
+ metadata: Optional additional metadata as key-value pairs
920
+ config: Optional configuration parameters
921
+ """
922
+ if not hasattr(self, 'trace'):
923
+ logger.warning("Cannot add metrics before trace is initialized. Call start() first.")
924
+ return
925
+
926
+ # Convert individual parameters to metric dict if needed
927
+ if isinstance(name, str):
928
+ metrics = [{
929
+ "name": name,
930
+ "score": score,
931
+ "reasoning": reasoning,
932
+ "cost": cost,
933
+ "latency": latency,
934
+ "metadata": metadata or {},
935
+ "config": config or {}
936
+ }]
937
+ else:
938
+ # Handle dict or list input
939
+ metrics = name if isinstance(name, list) else [name] if isinstance(name, dict) else []
940
+
941
+ try:
942
+ for metric in metrics:
943
+ if not isinstance(metric, dict):
944
+ raise ValueError(f"Expected dict, got {type(metric)}")
945
+
946
+ if "name" not in metric or "score" not in metric:
947
+ raise ValueError("Metric must contain 'name' and 'score' fields")
948
+
949
+ # Handle duplicate metric names
950
+ metric_name = metric["name"]
951
+ if metric_name in self.visited_metrics:
952
+ count = sum(1 for m in self.visited_metrics if m.startswith(metric_name))
953
+ metric_name = f"{metric_name}_{count + 1}"
954
+ self.visited_metrics.append(metric_name)
955
+
956
+ formatted_metric = {
957
+ "name": metric_name, # Use potentially modified name
958
+ "score": metric["score"],
959
+ "reason": metric.get("reasoning", ""),
960
+ "source": "user",
961
+ "cost": metric.get("cost"),
962
+ "latency": metric.get("latency"),
963
+ "metadata": metric.get("metadata", {}),
964
+ "mappings": [],
965
+ "config": metric.get("config", {})
966
+ }
967
+
968
+ self.trace_metrics.append(formatted_metric)
969
+ logger.debug(f"Added trace-level metric: {formatted_metric}")
970
+
971
+ except ValueError as e:
972
+ logger.error(f"Validation Error: {e}")
973
+ except Exception as e:
974
+ logger.error(f"Error adding metric: {e}")
975
+
885
976
  def span(self, span_name):
886
977
  if span_name not in self.span_attributes_dict:
887
978
  self.span_attributes_dict[span_name] = SpanAttributes(span_name)
888
- return self.span_attributes_dict[span_name]
889
-
979
+ return self.span_attributes_dict[span_name]
@@ -59,6 +59,13 @@ def _get_children_metrics_of_agent(children_traces):
59
59
 
60
60
  def get_trace_metrics_from_trace(traces):
61
61
  metrics = []
62
+
63
+ # get trace level metrics
64
+ if "metrics" in traces.keys():
65
+ if len(traces["metrics"]) > 0:
66
+ metrics.extend(traces["metrics"])
67
+
68
+ # get span level metrics
62
69
  for span in traces["data"][0]["spans"]:
63
70
  if span["type"] == "agent":
64
71
  children_metric = _get_children_metrics_of_agent(span["data"]["children"])
@@ -181,7 +181,7 @@ class LlamaIndexTracer:
181
181
  # self._upload_traces(save_json_to_pwd=True)
182
182
  self.callback_manager.remove_handler(self.trace_handler)
183
183
  self._restore_original_inits()
184
- print("Traces uplaoded")
184
+ print("Traces uploaded")
185
185
  self._upload_task = True
186
186
 
187
187
  def _restore_original_inits(self):
@@ -351,7 +351,7 @@ class LlamaIndexTracer:
351
351
  presignedUrl = self._get_presigned_url()
352
352
  self._put_presigned_url(presignedUrl, filename)
353
353
  self._insert_traces(presignedUrl)
354
- print("Traces uplaoded")
354
+ print("Traces uploaded")
355
355
 
356
356
  def get_upload_status(self):
357
357
  """Check the status of the trace upload."""
@@ -124,4 +124,4 @@ class UploadTraces:
124
124
  presignedUrl = self._get_presigned_url()
125
125
  self._put_presigned_url(presignedUrl, self.json_file_path)
126
126
  self._insert_traces(presignedUrl)
127
- print("Traces uplaoded")
127
+ print("Traces uploaded")
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -1,10 +1,11 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: ragaai_catalyst
3
- Version: 2.1.4b7
3
+ Version: 2.1.4.1
4
4
  Summary: RAGA AI CATALYST
5
5
  Author-email: Kiran Scaria <kiran.scaria@raga.ai>, Kedar Gaikwad <kedar.gaikwad@raga.ai>, Dushyant Mahajan <dushyant.mahajan@raga.ai>, Siddhartha Kosti <siddhartha.kosti@raga.ai>, Ritika Goel <ritika.goel@raga.ai>, Vijay Chaurasia <vijay.chaurasia@raga.ai>
6
6
  Requires-Python: <3.13,>=3.9
7
7
  Description-Content-Type: text/markdown
8
+ License-File: LICENSE
8
9
  Requires-Dist: aiohttp>=3.10.2
9
10
  Requires-Dist: opentelemetry-api==1.25.0
10
11
  Requires-Dist: opentelemetry-sdk==1.25.0
@@ -12,13 +12,13 @@ ragaai_catalyst/ragaai_catalyst.py,sha256=FdqMzwuQLqS2-3JJDsTQ8uh2itllOxfPrRUjb8
12
12
  ragaai_catalyst/synthetic_data_generation.py,sha256=uDV9tNwto2xSkWg5XHXUvjErW-4P34CTrxaJpRfezyA,19250
13
13
  ragaai_catalyst/utils.py,sha256=TlhEFwLyRU690HvANbyoRycR3nQ67lxVUQoUOfTPYQ0,3772
14
14
  ragaai_catalyst/tracers/__init__.py,sha256=yxepo7iVjTNI_wFdk3Z6Ghu64SazVyszCPEHYrX5WQk,50
15
- ragaai_catalyst/tracers/llamaindex_callback.py,sha256=Qxq4khDwM3YmhPxjSVML8LTEmUNd0cgfOWwNGX6IyBw,14028
15
+ ragaai_catalyst/tracers/llamaindex_callback.py,sha256=ZY0BJrrlz-P9Mg2dX-ZkVKG3gSvzwqBtk7JL_05MiYA,14028
16
16
  ragaai_catalyst/tracers/tracer.py,sha256=UX-01NYWcH2y4UW1W287Cn-jy760rgaFqu8llJbeMdg,15654
17
- ragaai_catalyst/tracers/upload_traces.py,sha256=hs0PEmit3n3_uUqrdbwcBdyK5Nbkik3JQVwJMEwYTd4,4796
17
+ ragaai_catalyst/tracers/upload_traces.py,sha256=mT5rverNUL5Rcal9VR5_c75wHBAUrm2pvYetTZqP3ok,4796
18
18
  ragaai_catalyst/tracers/agentic_tracing/README.md,sha256=X4QwLb7-Jg7GQMIXj-SerZIgDETfw-7VgYlczOR8ZeQ,4508
19
19
  ragaai_catalyst/tracers/agentic_tracing/__init__.py,sha256=yf6SKvOPSpH-9LiKaoLKXwqj5sez8F_5wkOb91yp0oE,260
20
20
  ragaai_catalyst/tracers/agentic_tracing/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
- ragaai_catalyst/tracers/agentic_tracing/data/data_structure.py,sha256=nFnwqL1-Uznwndi2ugDnhziUbIASlcBYnM6Dyq7pPt8,9243
21
+ ragaai_catalyst/tracers/agentic_tracing/data/data_structure.py,sha256=icAtNzKN_I0YtfuJ3RF8BdZJK3ohqxkVZIdvM5_YugY,9327
22
22
  ragaai_catalyst/tracers/agentic_tracing/tests/FinancialAnalysisSystem.ipynb,sha256=0qZxjWqYCTAVvdo3Tsp544D8Am48wfeMQ9RKpKgAL8g,34291
23
23
  ragaai_catalyst/tracers/agentic_tracing/tests/GameActivityEventPlanner.ipynb,sha256=QCMFJYbGX0fd9eMW4PqyQLZjyWuTXo7n1nqO_hMLf0s,4225
24
24
  ragaai_catalyst/tracers/agentic_tracing/tests/TravelPlanner.ipynb,sha256=fU3inXoemJbdTkGAQl_N1UwVEZ10LrKv4gCEpbQ4ISg,43481
@@ -27,7 +27,7 @@ ragaai_catalyst/tracers/agentic_tracing/tests/ai_travel_agent.py,sha256=S4rCcKzU
27
27
  ragaai_catalyst/tracers/agentic_tracing/tests/unique_decorator_test.py,sha256=Xk1cLzs-2A3dgyBwRRnCWs7Eubki40FVonwd433hPN8,4805
28
28
  ragaai_catalyst/tracers/agentic_tracing/tracers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
29
  ragaai_catalyst/tracers/agentic_tracing/tracers/agent_tracer.py,sha256=aLiq5nPie5TT61QYtvAtvErsxjPFYiUxjayn5aCX1_k,25543
30
- ragaai_catalyst/tracers/agentic_tracing/tracers/base.py,sha256=u2DX_BsMGsuJkWqN6ucxboMO8GnvOcArKJe5L08y-YI,35014
30
+ ragaai_catalyst/tracers/agentic_tracing/tracers/base.py,sha256=13AkXbO6NE1a2rlimsROW3527vUnmin8_bRMNZfXarg,38783
31
31
  ragaai_catalyst/tracers/agentic_tracing/tracers/custom_tracer.py,sha256=uay8lU7T-CKsVu8KvWX31qfMqufK9S3Ive7XKo2Ksmk,12252
32
32
  ragaai_catalyst/tracers/agentic_tracing/tracers/langgraph_tracer.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
33
  ragaai_catalyst/tracers/agentic_tracing/tracers/llm_tracer.py,sha256=fn5qxb365GmQkJy_yZAY5TiiWRMFKPNJdYk8KFr8uWA,29343
@@ -38,7 +38,7 @@ ragaai_catalyst/tracers/agentic_tracing/tracers/user_interaction_tracer.py,sha25
38
38
  ragaai_catalyst/tracers/agentic_tracing/upload/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
39
  ragaai_catalyst/tracers/agentic_tracing/upload/upload_agentic_traces.py,sha256=1MDKXAAPzOEdxFKWWQrRgrmM3kz--DGXSywGXQmR3lQ,6041
40
40
  ragaai_catalyst/tracers/agentic_tracing/upload/upload_code.py,sha256=HgpMgI-JTWZrizcM7GGUIaAgaZF4aRT3D0dJXVEkblY,4271
41
- ragaai_catalyst/tracers/agentic_tracing/upload/upload_trace_metric.py,sha256=iFagpPltlg6aKvdyAFvXsuxyjUUjcHAMmvXlevL-uYM,3312
41
+ ragaai_catalyst/tracers/agentic_tracing/upload/upload_trace_metric.py,sha256=id66gfx-XYj_zsAmicBKojBOqJQ__FJLSoZ0db56aes,3493
42
42
  ragaai_catalyst/tracers/agentic_tracing/utils/__init__.py,sha256=XdB3X_ufe4RVvGorxSqAiB9dYv4UD7Hvvuw3bsDUppY,60
43
43
  ragaai_catalyst/tracers/agentic_tracing/utils/api_utils.py,sha256=JyNCbfpW-w4O9CjtemTqmor2Rh1WGpQwhRaDSRmBxw8,689
44
44
  ragaai_catalyst/tracers/agentic_tracing/utils/create_dataset_schema.py,sha256=lgvJL0cakJrX8WGsnU05YGvotequSj6HgSohyR4OJNE,804
@@ -60,7 +60,8 @@ ragaai_catalyst/tracers/instrumentators/llamaindex.py,sha256=SMrRlR4xM7k9HK43hak
60
60
  ragaai_catalyst/tracers/instrumentators/openai.py,sha256=14R4KW9wQCR1xysLfsP_nxS7cqXrTPoD8En4MBAaZUU,379
61
61
  ragaai_catalyst/tracers/utils/__init__.py,sha256=KeMaZtYaTojilpLv65qH08QmpYclfpacDA0U3wg6Ybw,64
62
62
  ragaai_catalyst/tracers/utils/utils.py,sha256=ViygfJ7vZ7U0CTSA1lbxVloHp4NSlmfDzBRNCJuMhis,2374
63
- ragaai_catalyst-2.1.4b7.dist-info/METADATA,sha256=ivt8Ahq71DIZMXQ2qXrtro3uEeywqK87vZi_6dgcvG0,12770
64
- ragaai_catalyst-2.1.4b7.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
65
- ragaai_catalyst-2.1.4b7.dist-info/top_level.txt,sha256=HpgsdRgEJMk8nqrU6qdCYk3di7MJkDL0B19lkc7dLfM,16
66
- ragaai_catalyst-2.1.4b7.dist-info/RECORD,,
63
+ ragaai_catalyst-2.1.4.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
64
+ ragaai_catalyst-2.1.4.1.dist-info/METADATA,sha256=xSMdfBF4b6Lxq5Jr18JGwbablD9jS6YNObF27g6yDmQ,12792
65
+ ragaai_catalyst-2.1.4.1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
66
+ ragaai_catalyst-2.1.4.1.dist-info/top_level.txt,sha256=HpgsdRgEJMk8nqrU6qdCYk3di7MJkDL0B19lkc7dLfM,16
67
+ ragaai_catalyst-2.1.4.1.dist-info/RECORD,,