-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #200 from hyperaudio/199-abstract-deepgram-wc
199 abstract deepgram wc
- Loading branch information
Showing
5 changed files
with
118 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<body> | ||
<div id="deepgram-modal-template"> | ||
<form id="deepgram-form" name="deepgram-form"> | ||
<div class="flex flex-col gap-4 w-full"> | ||
<label id="close-modal" for="transcribe-modal" class="btn btn-sm btn-circle absolute right-2 top-2">✕</label> | ||
<h3 class="font-bold text-lg">Transcribe</h3> | ||
<input id="token" type="text" placeholder="Deepgram token" class="input input-bordered w-full max-w-xs" /> | ||
<hr class="my-2 h-0 border border-t-0 border-solid border-neutral-700 opacity-50 dark:border-neutral-200" /> | ||
<input id="media" type="text" placeholder="Link to media" class="input input-bordered w-full max-w-xs" /> | ||
<span class="label-text">or</span> | ||
<input id="file" name="file" type="file" class="file-input w-full max-w-xs" /> | ||
<hr class="my-2 h-0 border border-t-0 border-solid border-neutral-700 opacity-50 dark:border-neutral-200" /> | ||
|
||
<span class="label-text">Model</span> | ||
<div> | ||
<select id="language-model" name="language-model" placeholder="language-model" class="select select-bordered w-full max-w-xs"> | ||
</select> | ||
</div> | ||
|
||
<span class="label-text">Language</span> | ||
<select id="language" name="language" placeholder="language" class="select select-bordered w-full max-w-xs"> | ||
</select> | ||
|
||
<span class="label-text">Quality</span> | ||
<select id="tier" name="tier" placeholder="tier" class="select select-bordered w-full max-w-xs"> | ||
<option value="base">Base</option> | ||
<option value="enhanced">Enhanced (Better)</option> | ||
<option value="nova">Nova (Best)</option> | ||
</select> | ||
|
||
</div> | ||
<div class="modal-action"> | ||
<label id="transcribe-btn" for="transcribe-modal" class="btn btn-primary">Transcribe</label> | ||
</div> | ||
</form> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.