diff --git a/shortfin/python/shortfin_apps/llm/components/kvcache/trie_attention_cache.py b/shortfin/python/shortfin_apps/llm/components/kvcache/trie_attention_cache.py index 7690857ae..c2a31039d 100644 --- a/shortfin/python/shortfin_apps/llm/components/kvcache/trie_attention_cache.py +++ b/shortfin/python/shortfin_apps/llm/components/kvcache/trie_attention_cache.py @@ -52,7 +52,7 @@ class TrieNode: page: PageInfo children: Optional[Dict[Tuple[int, ...], "TrieNode"]] = None parent: Optional["TrieNode"] = None - ref_count: RefCount + ref_count: RefCount = None access_time: float = 0.0 def __post_init__(self) -> None: