Skip to content

Commit

Permalink
list -> set
Browse files Browse the repository at this point in the history
  • Loading branch information
calpt committed Feb 10, 2025
1 parent 096297a commit 8f17f5e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/adapters/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,15 +79,15 @@ class ForwardContext(ContextManager):
# thread-local storage that holds a stack of active contexts
storage = threading.local()

context_args = [
context_args = {
"output_adapter_gating_scores",
"output_adapter_fusion_attentions",
"adapter_input_parallelized",
]
context_attributes = [
}
context_attributes = {
"adapter_gating_scores",
"adapter_fusion_attentions",
]
}
# Additional used attributes not exposed to the user
# - prompt_tokens_length: length of the prompt tokens

Expand Down

0 comments on commit 8f17f5e

Please sign in to comment.