Skip to content
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
8b8d1fe
add langchain loaders to docs
shahules786 Oct 19, 2023
cd7f411
Merge branch 'main' of https://github.com/explodinggradients/ragas
shahules786 Oct 20, 2023
5b18325
Merge branch 'main' of https://github.com/explodinggradients/ragas
shahules786 Oct 26, 2023
bb8d984
Merge branch 'main' of https://github.com/explodinggradients/ragas
shahules786 Oct 26, 2023
9cbb57d
Merge branch 'main' of https://github.com/explodinggradients/ragas
shahules786 Oct 29, 2023
479e636
Merge branch 'main' of https://github.com/explodinggradients/ragas
shahules786 Nov 7, 2023
3eeb7ea
Merge branch 'main' of https://github.com/explodinggradients/ragas
shahules786 Nov 12, 2023
b09003f
Merge branch 'main' of https://github.com/explodinggradients/ragas
shahules786 Nov 17, 2023
0d28d62
Merge branch 'main' of https://github.com/explodinggradients/ragas
shahules786 Nov 20, 2023
8e7c0c4
Merge branch 'main' of https://github.com/explodinggradients/ragas
shahules786 Nov 24, 2023
dd218e1
Merge branch 'main' of https://github.com/explodinggradients/ragas
shahules786 Nov 26, 2023
eab12df
Merge branch 'main' of https://github.com/explodinggradients/ragas
shahules786 Nov 27, 2023
a0f1b9b
Merge branch 'main' of https://github.com/explodinggradients/ragas
shahules786 Nov 29, 2023
2487430
Merge branch 'main' of https://github.com/explodinggradients/ragas
shahules786 Dec 1, 2023
fb5064e
Merge branch 'main' of https://github.com/explodinggradients/ragas
shahules786 Dec 10, 2023
fd8f458
Merge branch 'main' of https://github.com/explodinggradients/ragas
shahules786 Dec 10, 2023
c2f4be8
Merge branch 'main' of https://github.com/explodinggradients/ragas
shahules786 Dec 13, 2023
3247925
hindi prompts for faithfulness
shahules786 Dec 17, 2023
a5fcded
Merge branch 'main' of https://github.com/explodinggradients/ragas
shahules786 Dec 18, 2023
f39a9ca
Merge branch 'main' of https://github.com/explodinggradients/ragas
shahules786 Dec 25, 2023
30a82ba
Merge branch 'main' of https://github.com/explodinggradients/ragas
shahules786 Jan 3, 2024
5fecf0f
Merge branch 'main' of https://github.com/explodinggradients/ragas
shahules786 Jan 5, 2024
18e985a
Merge branch 'main' of https://github.com/explodinggradients/ragas
shahules786 Jan 7, 2024
6cd69c1
change to dict
shahules786 Jan 7, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ragas/_analytics.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def track(event_properties: BaseEvent):
if do_not_track():
return

payload = asdict(event_properties)
payload = event_properties.dict()

if _usage_event_debugging():
# For internal debugging purpose
Expand Down