From 912b0150c4ab7a1bdb124a87267fa6cd6992d12b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Spoturno?= Date: Tue, 21 Apr 2026 16:54:45 -0300 Subject: [PATCH] fix: remove phantom exports load_tokenizer and get_vocab_size from __all__ These symbols were listed in __all__ but never defined anywhere in the package, causing ImportError when using 'from open_mythos import *' or importing them by name. --- open_mythos/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/open_mythos/__init__.py b/open_mythos/__init__.py index 73c2c04..64fcdad 100644 --- a/open_mythos/__init__.py +++ b/open_mythos/__init__.py @@ -49,7 +49,5 @@ "mythos_100b", "mythos_500b", "mythos_1t", - "load_tokenizer", - "get_vocab_size", "MythosTokenizer", ]