Merged
Conversation
The changes made have simplified some existing code for clarity. The code initially assigned to the 'result' variable has been condensed into a single line, enhancing readability. Additionally, a type ignore comment has been added to the 'process_data' function call for ignoring type checks. The changes have been made to correct prior failed commit hooks.
A revised step in the contribution process was added to CONTRIBUTING.md to include setting up a local clone of the project for development. This helps contributing members correctly prepare their environment with required dependencies and pre-commit hooks.
Refactored code in checkbox.py and related files to accommodate Separator objects. Changes ensure that Separator objects get recognized and processed correctly, enhancing data organization and user interface by properly displaying separators in checkboxes.
Fixed a typo, replacing all instances of 'Seperator' with 'Separator' across multiple files. Also improved the handling of data in the prompts to include Separator objects within the OptionsList type. This both improves the functionality of data processing and provides a seamless and appropriate user interface.
Added test cases in various prompt tests to check the incorporation of 'Separator' objects within the options. This ensures that data processing now handles separator objects correctly, providing more flexible and robust prompt structure for users.
89c6d2f to
dbd5f8c
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR introduces separators to the
prompt types.
closes #40