-
Notifications
You must be signed in to change notification settings - Fork 32
Open
Labels
good first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needed
Description
Feedback: use_flash_attn: bool | None = None is a tri-state Boolean.
- Replace the tri-state Boolean with a clearer alternative:
- Either make it strictly a
boolwith a well-defined default (TrueorFalse), - Or use an Enum like
FlashAttentionOption = Enum("FlashAttentionOption", ["AUTO", "ENABLED", "DISABLED"]).
- Either make it strictly a
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needed