rajistics commited on
Commit
83c6ac7
·
1 Parent(s): 0e9c5cd

Delete cards.py

Browse files
Files changed (1) hide show
  1. cards.py +0 -145
cards.py DELETED
@@ -1,145 +0,0 @@
1
- import sys
2
- import traceback
3
-
4
- from h2o_wave import Q, expando_to_dict, ui
5
-
6
- # App name
7
- app_name = 'Whisper'
8
-
9
- # Link to repo. Report bugs/features here :)
10
- repo_url = 'https://github.com/vopani/waveton'
11
- issue_url = f'{repo_url}/issues/new?assignees=vopani&labels=bug&template=error-report.md&title=%5BERROR%5D'
12
-
13
- # JS scripts
14
- encoder_url = 'https://cdn.jsdelivr.net/npm/opus-media-recorder@latest/encoderWorker.umd.js'
15
- recorder_url = 'https://cdn.jsdelivr.net/npm/opus-media-recorder@latest/OpusMediaRecorder.umd.js'
16
-
17
- with open('record.js', encoding='utf-8') as f:
18
- recorder_script = ui.inline_script(f.read())
19
-
20
- # A meta card to hold the app's title, layouts, dialogs, theme and other meta information
21
- meta = ui.meta_card(
22
- box='',
23
- title='WaveTon',
24
- layouts=[
25
- ui.layout(
26
- breakpoint='xs',
27
- zones=[
28
- ui.zone(name='header'),
29
- ui.zone(name='main'),
30
- ui.zone(name='footer')
31
- ]
32
- )
33
- ],
34
- theme='h2o-dark',
35
- scripts=[
36
- ui.script(encoder_url, asynchronous=False),
37
- ui.script(recorder_url, asynchronous=False)
38
- ],
39
- script=recorder_script
40
- )
41
-
42
- # The header shown on all the app's pages
43
- header = ui.header_card(
44
- box='header',
45
- title='Whisper',
46
- subtitle="Speech to text using OpenAI's Whisper model",
47
- icon='Microphone',
48
- icon_color='black',
49
- items=[ui.toggle(name='theme_dark', label='Dark Mode', value=True, trigger=True)]
50
- )
51
-
52
- # The footer shown on all the app's pages
53
- footer = ui.footer_card(
54
- box='footer',
55
- caption=f'Learn more about <a href="{repo_url}" target="_blank"> WaveTon: 💯 Wave Applications</a>'
56
- )
57
-
58
- # A fallback card for handling bugs
59
- fallback = ui.form_card(
60
- box='fallback',
61
- items=[ui.text('Uh-oh, something went wrong!')]
62
- )
63
-
64
-
65
- def asr(recording: bool = False, audio_path: str = None, transcription: str = '') -> ui.FormCard:
66
- """
67
- Card for Automatic Speech Recognition.
68
- """
69
-
70
- button_name = 'stop' if recording else 'start'
71
- button_label = '⏹️ Stop Recording' if recording else '🎙️ Start Recording'
72
- visible = False if audio_path is None else True
73
-
74
- card = ui.form_card(
75
- box='main',
76
- items=[
77
- ui.separator(label='Microphone'),
78
- ui.buttons(items=[ui.button(name=button_name, label=button_label, primary=True)], justify='center'),
79
- ui.progress(label='Recording...', caption='', visible=recording),
80
- ui.separator(label='Audio', visible=visible),
81
- ui.text(
82
- content=f'''<center>
83
- <audio controls><source src="{audio_path}" type="audio/wav"></source></audio>
84
- <center>''',
85
- visible=visible
86
- ),
87
- ui.separator(label='Transcription', visible=visible),
88
- ui.textbox(name='transcription', value=transcription, multiline=True, visible=visible)
89
- ]
90
- )
91
-
92
- return card
93
-
94
-
95
- def crash_report(q: Q) -> ui.FormCard:
96
- """
97
- Card for capturing the stack trace and current application state, for error reporting.
98
- This function is called by the main serve() loop on uncaught exceptions.
99
- """
100
-
101
- def code_block(content): return '\n'.join(['```', *content, '```'])
102
-
103
- type_, value_, traceback_ = sys.exc_info()
104
- stack_trace = traceback.format_exception(type_, value_, traceback_)
105
-
106
- dump = [
107
- '### Stack Trace',
108
- code_block(stack_trace),
109
- ]
110
-
111
- states = [
112
- ('q.app', q.app),
113
- ('q.user', q.user),
114
- ('q.client', q.client),
115
- ('q.events', q.events),
116
- ('q.args', q.args)
117
- ]
118
- for name, source in states:
119
- dump.append(f'### {name}')
120
- dump.append(code_block([f'{k}: {v}' for k, v in expando_to_dict(source).items()]))
121
-
122
- return ui.form_card(
123
- box='main',
124
- items=[
125
- ui.stats(
126
- items=[
127
- ui.stat(
128
- label='',
129
- value='Oops!',
130
- caption='Something went wrong',
131
- icon='Error'
132
- )
133
- ],
134
- ),
135
- ui.separator(),
136
- ui.text_l(content='Apologies for the inconvenience!'),
137
- ui.buttons(items=[ui.button(name='reload', label='Reload', primary=True)]),
138
- ui.expander(name='report', label='Error Details', items=[
139
- ui.text(
140
- f'To report this issue, <a href="{issue_url}" target="_blank">please open an issue</a> with the details below:'),
141
- ui.text_l(content=f'Report Issue in App: **{app_name}**'),
142
- ui.text(content='\n'.join(dump)),
143
- ])
144
- ]
145
- )