Skip to content

Commit 878e64d

Browse files
authored
added link to .bin model download page at Hugginface
1 parent dd97808 commit 878e64d

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

whisperGUI.py

+15-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,21 @@
33

44
@Gooey(required_cols=1,
55
target='main.exe',
6-
suppress_gooey_flag=True)
6+
suppress_gooey_flag=True,
7+
program_name='whisper.cppGUI',
8+
menu=[{'name': 'File',
9+
'items': [{
10+
'type': 'AboutDialog',
11+
'menuTitle': 'Download GGML models',
12+
'name': 'Download the GGML models below',
13+
'website': 'https://huggingface.co/datasets/ggerganov/whisper.cpp/tree/main'
14+
},{
15+
'type': 'Link',
16+
'menuTitle': 'Visit Our Site',
17+
'url': 'https://github.com/Topping1/whispercppGUI'
18+
}]
19+
}]
20+
)
721
def main():
822
parser = GooeyParser(description='GUI for whisper.cpp, a high-performance C++ port of OpenAI\'s Whisper')
923

0 commit comments

Comments
 (0)