chembfn-webui 1.2.1__tar.gz → 1.2.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of chembfn-webui might be problematic. Click here for more details.
- {chembfn_webui-1.2.1 → chembfn_webui-1.2.2}/PKG-INFO +1 -1
- {chembfn_webui-1.2.1 → chembfn_webui-1.2.2}/chembfn_webui/bin/app.py +7 -1
- chembfn_webui-1.2.2/chembfn_webui/bin/favicon.png +0 -0
- chembfn_webui-1.2.2/chembfn_webui/cache/results.csv +0 -0
- {chembfn_webui-1.2.1 → chembfn_webui-1.2.2}/chembfn_webui/lib/version.py +1 -1
- {chembfn_webui-1.2.1 → chembfn_webui-1.2.2}/chembfn_webui.egg-info/PKG-INFO +1 -1
- {chembfn_webui-1.2.1 → chembfn_webui-1.2.2}/chembfn_webui.egg-info/SOURCES.txt +1 -0
- {chembfn_webui-1.2.1 → chembfn_webui-1.2.2}/setup.py +7 -1
- chembfn_webui-1.2.1/chembfn_webui/cache/results.csv +0 -5
- {chembfn_webui-1.2.1 → chembfn_webui-1.2.2}/LICENSE +0 -0
- {chembfn_webui-1.2.1 → chembfn_webui-1.2.2}/README.md +0 -0
- {chembfn_webui-1.2.1 → chembfn_webui-1.2.2}/chembfn_webui/__init__.py +0 -0
- {chembfn_webui-1.2.1 → chembfn_webui-1.2.2}/chembfn_webui/cache/cache_file_here.txt +0 -0
- {chembfn_webui-1.2.1 → chembfn_webui-1.2.2}/chembfn_webui/lib/utilities.py +0 -0
- {chembfn_webui-1.2.1 → chembfn_webui-1.2.2}/chembfn_webui/model/base_model/place_base_model_here.txt +0 -0
- {chembfn_webui-1.2.1 → chembfn_webui-1.2.2}/chembfn_webui/model/lora/place_lora_folder_here.txt +0 -0
- {chembfn_webui-1.2.1 → chembfn_webui-1.2.2}/chembfn_webui/model/standalone_model/place_standalone_model_folder_here.txt +0 -0
- {chembfn_webui-1.2.1 → chembfn_webui-1.2.2}/chembfn_webui/model/vocab/place_vocabulary_file_here.txt +0 -0
- {chembfn_webui-1.2.1 → chembfn_webui-1.2.2}/chembfn_webui.egg-info/dependency_links.txt +0 -0
- {chembfn_webui-1.2.1 → chembfn_webui-1.2.2}/chembfn_webui.egg-info/entry_points.txt +0 -0
- {chembfn_webui-1.2.1 → chembfn_webui-1.2.2}/chembfn_webui.egg-info/requires.txt +0 -0
- {chembfn_webui-1.2.1 → chembfn_webui-1.2.2}/chembfn_webui.egg-info/top_level.txt +0 -0
- {chembfn_webui-1.2.1 → chembfn_webui-1.2.2}/setup.cfg +0 -0
|
@@ -43,6 +43,7 @@ from lib.version import __version__
|
|
|
43
43
|
vocabs = find_vocab()
|
|
44
44
|
models = find_model()
|
|
45
45
|
cache_dir = Path(__file__).parent.parent / "cache"
|
|
46
|
+
favicon_dir = Path(__file__).parent / "favicon.png"
|
|
46
47
|
_result_count = 0
|
|
47
48
|
|
|
48
49
|
HTML_STYLE = gr.InputHTMLAttributes(
|
|
@@ -635,7 +636,12 @@ def main() -> None:
|
|
|
635
636
|
)
|
|
636
637
|
parser.add_argument("-V", "--version", action="version", version=__version__)
|
|
637
638
|
args = parser.parse_args()
|
|
638
|
-
|
|
639
|
+
print(f"This is ChemBFN WebUI version {__version__}")
|
|
640
|
+
app.launch(
|
|
641
|
+
share=args.public,
|
|
642
|
+
allowed_paths=[cache_dir.absolute().__str__()],
|
|
643
|
+
favicon_path=favicon_dir.absolute().__str__(),
|
|
644
|
+
)
|
|
639
645
|
|
|
640
646
|
|
|
641
647
|
if __name__ == "__main__":
|
|
Binary file
|
|
File without changes
|
|
@@ -9,6 +9,7 @@ chembfn_webui.egg-info/entry_points.txt
|
|
|
9
9
|
chembfn_webui.egg-info/requires.txt
|
|
10
10
|
chembfn_webui.egg-info/top_level.txt
|
|
11
11
|
chembfn_webui/bin/app.py
|
|
12
|
+
chembfn_webui/bin/favicon.png
|
|
12
13
|
chembfn_webui/cache/cache_file_here.txt
|
|
13
14
|
chembfn_webui/cache/results.csv
|
|
14
15
|
chembfn_webui/lib/utilities.py
|
|
@@ -48,7 +48,13 @@ setup(
|
|
|
48
48
|
license_files=["LICEN[CS]E*"],
|
|
49
49
|
package_dir={"chembfn_webui": "chembfn_webui"},
|
|
50
50
|
package_data={
|
|
51
|
-
"chembfn_webui": [
|
|
51
|
+
"chembfn_webui": [
|
|
52
|
+
"./*/*/place_*.txt",
|
|
53
|
+
"./*/*.txt",
|
|
54
|
+
"./*/*.py",
|
|
55
|
+
"./*/*.csv",
|
|
56
|
+
"./*/*.png",
|
|
57
|
+
]
|
|
52
58
|
},
|
|
53
59
|
include_package_data=True,
|
|
54
60
|
author="Nianze A. Tao",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{chembfn_webui-1.2.1 → chembfn_webui-1.2.2}/chembfn_webui/model/base_model/place_base_model_here.txt
RENAMED
|
File without changes
|
{chembfn_webui-1.2.1 → chembfn_webui-1.2.2}/chembfn_webui/model/lora/place_lora_folder_here.txt
RENAMED
|
File without changes
|
|
File without changes
|
{chembfn_webui-1.2.1 → chembfn_webui-1.2.2}/chembfn_webui/model/vocab/place_vocabulary_file_here.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|