Replies: 1 comment 1 reply
-
Hi there! Thought this would be a good point to get started to contribute to LangFuse. If you have any idea, comments are welcomed. 😄 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
1. Introduction
Currently, users can only create dataset items through the API or SDK, requiring additional coding effort when dealing with large datasets. This proposal aims to introduce a user interface (UI) for uploading dataset items directly, enhancing accessibility and efficiency, particularly for non-developer users. This feature will:
2. Problem Statement
To enhance user experience and system performance, we need to address several challenges:
3. Proposed Solution
3.1 Dataset File Format
Support will be added for Excel, CSV, and JSON formats. The proposed formats are:
CSV/Excel: The first row should include field names, with each subsequent row representing one record.
Example CSV:
JSON: The file should be a list of records.
Example JSON:
3.2 Import Process and Feedback
3.3 File Size Limitation
As described above, file parsing is done on client side. The file size limit should be set to a reasonable value,
e.g.
10MB
, to prevent browser performance issues.3.4 Handling Duplicates and Mapping
Initially, complex functionalities like handling duplicates and field mapping will not be implemented. However, the design will be extensible to accommodate these features in future versions.
4. Implementation Steps
5. References
Beta Was this translation helpful? Give feedback.
All reactions