Skip to content
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
33 changes: 33 additions & 0 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages

name: Node.js Package

on:
release:
types: [created]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- run: npm test

publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
16 changes: 8 additions & 8 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ <h3>Insurance Advisor</h3>
<h3>Auto Document Generator</h3>
<p>Automatically generates professional claim letters, emails, or appeals using patient data to save
you time and effort.</p>
<a href="document-generator/index.html" target="_blank" class="feature-link">
<a href="https://ankit2061-autodocumentgen-doc-gen2-gqqukc.streamlit.app" target="_blank" class="feature-link">
Generate <i class="fas fa-arrow-right"></i>
</a>
</div>
Expand All @@ -172,7 +172,7 @@ <h3>Patient Chatbot</h3>
<h3>Secure Document Storage</h3>
<p>Store all your medical documents and claims in one secure, HIPAA-compliant location with easy
access whenever needed.</p>
<a href="http://localhost:8501" class="feature-link">
<a href="secure.html" class="feature-link">
Learn More <i class="fas fa-arrow-right"></i>
</a>
</div>
Expand Down Expand Up @@ -330,11 +330,11 @@ <h2>Ready to Simplify Your Medical Claims?</h2>
<div class="footer-column">
<h3>Features</h3>
<ul>
<li><a href="/document-summarization">Document Summarization</a></li>
<li><a href="/Auto Document Generator">Auto Document Generator</a></li>
<li><a href="/Patient Chatbot">Patient Chatbot</a></li>
<li><a href="/Insurance Advisor">Insurance Advisor</a></li>
<li><a href="/Secure Document Storage">Secure Document Storage</a></li>
<li><a href="https://ankit2061-medicalsummarizer-app-vts49d.streamlit.app/">Document Summarization</a></li>
<li><a href="https://ankit2061-autodocumentgen-doc-gen2-gqqukc.streamlit.app">Auto Document Generator</a></li>
<li><a href="https://ankit2061-patient-chatbot-2-0-app-5fl4mh.streamlit.app">Patient Chatbot</a></li>
<li><a href="https://ankit2061-ai-adviser-1-0-app-cbfvsy.streamlit.app">Insurance Advisor</a></li>
<li><a href="secure.html">Secure Document Storage</a></li>
</ul>
</div>

Expand Down Expand Up @@ -1014,7 +1014,7 @@ <h3>Support</h3>
addMessageToChat("💬 <strong>Secure Document Storage</strong> 💾 All your uploaded files are stored in secure, encrypted storage.\nHIPAA-compliant, password-protected, and only you can access them.\nNo third-party ever sees your data. 🔐", 'bot');
setTimeout(() => {
addMessageToChat("👉 Want to open the chatbot?", 'bot');
showRedirectButtons("http://localhost:8501");
showRedirectButtons("http://localhost:8502");
}, 800);
}, 400);
return "";
Expand Down
11 changes: 11 additions & 0 deletions docs/secure.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<p>TEST FEATURE. WORK STILL IN PROGRESS</p>
</body>
</html>
2 changes: 0 additions & 2 deletions healthcare-doc-generato/healthcare-doc-generato/backend/.env

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
80 changes: 0 additions & 80 deletions healthcare-doc-generato/healthcare-doc-generato/backend/app.py

This file was deleted.

Loading