Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AI-Care(novathon) #1121

Open
wants to merge 13 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions hackathon/AI-Care(novathon)/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
GOOGLE_API_KEY="AIzaSyDIJJGW7zSbkDzcV8uwZTDnUF1_S2PW8Bk"
52 changes: 52 additions & 0 deletions hackathon/AI-Care(novathon)/CA/bars.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
65 changes: 65 additions & 0 deletions hackathon/AI-Care(novathon)/CA/ca.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Consultation Analysis</title>
</head>
<body>
<div class="container2">
<p class="heading">Consultation Analysis</p>
<p>Summarizes doctor-patient talks in real time, providing clear, detailed medical reports.</p></div>
<div class="container">
<div class="options">
<div class="anguage">
<p>Language</p>
<select name="input-language" id="language"></select>
</div>
</div>
<div class="line"></div>
<button class="btn record">
<div class="icon">
<ion-icon name="mic-outline"></ion-icon>
<img src="bars.svg" alt="" />
</div>
<p>Start Listening</p>
</button>
<p class="heading">Result :</p>
<div
class="result"
spellcheck="false"
placeholder="Text will be shown here"
>
<p class="interim"></p>
</div>
<div class="buttons">
<button class="btn clear">
<ion-icon name="trash-outline"></ion-icon>
<p>Clear</p>
</button>
<button class="btn download" disabled>
<ion-icon name="cloud-download-outline"></ion-icon>
<p>Download</p>
</button>
</div>
</div>

<!-- IONICONS -->
<script
type="module"
src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"
></script>
<script
nomodule
src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"
></script>

<!-- LANGUAGES -->
<script src="languages.js"></script>

<!-- SCRIPT -->
<script src="script.js"></script>
</body>
</html>
Loading