AI Agent commited on
Commit ·
6b16512
1
Parent(s): 818514b
Untrack extraneous files to comply with minimalist deployment
Browse files- NITDAA_ARCHITECTURE_DESIGN.md +0 -41
- NITDAA_HEALTHEXPERT_USER_GUIDE.md +0 -39
- app/kbdocs/Base insurance Program brochure.pdf +0 -3
- app/kbdocs/Base insurance escalation_matrix.pdf +0 -3
- app/kbdocs/Base insurance specific_disease.pdf +0 -3
- app/kbdocs/NITDAA_Base_STUP_Insurance_Policy_2026.pdf +0 -3
- app/kbdocs/NITDAA_Medical_Insurance_FAQ.txt +0 -772
- app/kbdocs/OICL_Base_panel_hospital_Bengaluru.pdf +0 -3
- app/kbdocs/OICL_Base_panel_hospital_Chennai.pdf +0 -3
- app/kbdocs/OICL_Base_panel_hospital_Hyderabad.pdf +0 -3
- app/kbdocs/OICL_Base_panel_hospital_Kolkata.xlsx +0 -0
- app/kbdocs/OICL_Base_panel_hospital_Mumbai.xlsx +0 -0
- app/kbdocs/OICL_Base_panel_hospital_Pune.xlsx +0 -0
- cert.pem +0 -29
- data/test_db +0 -0
- images/screenshot.png +0 -3
- kbdocs/NITDAA_Base_Insurance_RAG_KB_2026.txt +0 -1520
- key.pem +0 -52
- nvidia_frontend_test.html +0 -204
- pipeline/Dockerfile +0 -28
- static/screenshot.png +0 -3
NITDAA_ARCHITECTURE_DESIGN.md
DELETED
|
@@ -1,41 +0,0 @@
|
|
| 1 |
-
# Nitdaa Sibling Project - Architecture Design
|
| 2 |
-
**Version 1.0 Public Release**
|
| 3 |
-
|
| 4 |
-
## 1. System Overview
|
| 5 |
-
Nitdaa is the mobile-friendly MVP sibling to the full HealthExpert enterprise platform. It removes administrative overhead, heavy RBAC UI components, and complex multi-pane layouts in favor of a lean, mobile-first edge interface.
|
| 6 |
-
|
| 7 |
-
## 2. Core Differences from Base HealthExpert
|
| 8 |
-
- **UI/UX**: Transitioned from a 3-pane desktop layout to a single-pane vertical mobile layout, featuring dynamic inline controls (e.g. the bottom input panel temporarily transforms into an inline 5-star & thumbs feedback interface after response generation, presenting all rating controls on the same line). Features a dynamic Startup Splash Screen displaying an overview of the NITDAA Base Health Insurance Program, and bottom-right inline copy buttons for generated responses.
|
| 9 |
-
- **Admin Constraints**: Admin controls (Kill Switch, DB Purge) are entirely hidden in the HTML to prevent public tampering.
|
| 10 |
-
- **Session Audit**: Uses `nitdaa_sessions.json` and `nitdaa_summary.json` for granular system telemetry rather than database-backed logs. Captures granular feedback (1-5 stars, thumbs, and text) instantly upon user action, and displays a thank you message acknowledging the submission.
|
| 11 |
-
- **Resumable Event Streaming**: The architecture uses an asynchronous Job ID system (`/api/query/start` and `/api/query/stream`) to survive mobile background disconnections.
|
| 12 |
-
- **Concurrent RAG Isolation**: Vector and Graph retrieval pipelines operate inside a Thread Pool with thread-local database connections. Heavy PyTorch inference layers (CrossEncoder and SentenceTransformer) are strictly serialized via threading locks to prevent `OutOfMemory` crashes on resource-constrained infrastructure, while keeping I/O concurrency high.
|
| 13 |
-
|
| 14 |
-
## 3. Data Flow
|
| 15 |
-
1. **Startup & Sync**: Flask initializes. `sync_he_data()` runs asynchronously to pull the latest dataset from `Sam-max1/he-data`. If differences are found, it gracefully purges vector/graph databases and rebuilds. Concurrently, it performs a 2-way remote synchronization of logs with `Sam-max1/mat_data`.
|
| 16 |
-
2. **Security & Connection**: Client connections face an immediate Math CAPTCHA. All API calls pass through `Flask-Limiter` and Strict HTTP Content Security Policies.
|
| 17 |
-
3. **Ingestion**: If new files are detected, `process_document_pipeline` splits them into 512-token chunks, vectorizes them into ChromaDB, and extracts graph entities locally using `spaCy`.
|
| 18 |
-
4. **Retrieval (Concurrent)**: When a query hits `/api/query/start`, an asynchronous thread pool handles Tri-modal Hybrid Retrieval (Vector + BM25 + Graph) allowing multiple users to fetch context simultaneously.
|
| 19 |
-
5. **Synthesis & Feedback**: A Cross-Encoder reranks the chunks, and the context is fed into the local LLM generation queue. The system supports a **Dual LLM Mode** via a frontend slider pill. The backend delegates generation to either an **Expert** model (`google/diffusiongemma-26b-a4b-it` with reasoning) or an **Assistant** model (`minimaxai/minimax-m3`). The frontend streams events using Server-Sent Events with offset recovery. Upon completion, users optionally submit ratings securely stored in `nitdaa_summary.json`.
|
| 20 |
-
|
| 21 |
-
## 4. Resource Allocation
|
| 22 |
-
Nitdaa is tuned for the HuggingFace Spaces free tier:
|
| 23 |
-
- **vCPU constraints**: Threads are explicitly clamped to prevent CPU thrashing.
|
| 24 |
-
- **Vector Limit**: A hard limit of 10,000 chunks is enforced globally to prevent `OutOfMemory` crashes.
|
| 25 |
-
- **Session Quotas**: Max 5 file uploads per session to prevent abuse.
|
| 26 |
-
|
| 27 |
-
## 5. Project Intelligence & Deployment
|
| 28 |
-
- **HuggingFace Space**: [Sam-max1/nitdaa](https://huggingface.co/spaces/Sam-max1/nitdaa)
|
| 29 |
-
- **HuggingFace ID**: `sam-max1`
|
| 30 |
-
- **Authentication**: `HF_TOKEN` is provided via the system keyring for secure access to HuggingFace resources and pushing updates.
|
| 31 |
-
`HF_TOKEN` is provided via the system variable to HuggingFace resources after container startup.
|
| 32 |
-
- **NVIDIA API Access**: `NVIDIA_API_KEY` is provided via the system variable for secure access to NVIDIA GPU LLM endpoint after container startup.
|
| 33 |
-
- **Deployment Protocol**: Code base updates are pushed directly to the HuggingFace Space repository. Note: Core functionality should not be altered, deleted, or impaired unless explicitly requested.
|
| 34 |
-
- **Minimalist Deployment**: Extraneous resources, local databases, or unneeded assets must be excluded from tracking to ensure only the bare minimum is pushed to HuggingFace.
|
| 35 |
-
|
| 36 |
-
## 6. Documentation Updates
|
| 37 |
-
- **Architecture Guide**: NITDAA_ARCHITECTURE_DESIGN.md
|
| 38 |
-
- **User Guide**: NITDAA_HEALTHEXPERT_USER_GUIDE.md
|
| 39 |
-
- **User Guide (PDF Version)**: NITDAA_HEALTHEXPERT_USER_GUIDE.pdf
|
| 40 |
-
- **Update Protocol**: All three above files are to be updated as and when any features and designs for the application
|
| 41 |
-
are added, deleted or changed. Thease files should always have the latest and accurate status of the codebase.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
NITDAA_HEALTHEXPERT_USER_GUIDE.md
DELETED
|
@@ -1,39 +0,0 @@
|
|
| 1 |
-
# Nitdaa HealthExpert Mobile MVP - User Guide
|
| 2 |
-
**Version 1.0 Public Release**
|
| 3 |
-
|
| 4 |
-
## Overview
|
| 5 |
-
Nitdaa HealthExpert is a mobile-optimized, single-pane web interface designed to provide users with direct access to the HealthExpert AI knowledge base. Deployed on HuggingFace Spaces, Nitdaa brings the power of Agentic AI, Hybrid RAG, and Edge Compute into a sandboxed, responsive environment.
|
| 6 |
-
|
| 7 |
-
## 1. Accessing the Application
|
| 8 |
-
- Navigate to the official public application link: [https://sam-max1-nitdaa.hf.space/](https://sam-max1-nitdaa.hf.space/)
|
| 9 |
-
- **Security Check (CAPTCHA)**: Upon your first visit, a security modal will challenge you with a simple math problem (e.g. `5 + 3 = ?`). You must correctly solve this problem to unlock the application dashboard.
|
| 10 |
-
- The application will then load automatically. Note that the first boot may take 3-5 minutes as the system pulls the latest knowledge datasets securely from the cloud.
|
| 11 |
-
- Once the **Status Pill** in the top-right corner turns **Green** (Ready), the system is online.
|
| 12 |
-
- **Initial Welcome Message**: A dynamic startup splash screen will immediately present an overview of the NITDAA Base Health Insurance Program, providing essential program details directly within the chat interface.
|
| 13 |
-
|
| 14 |
-
## 2. Using the Dashboard
|
| 15 |
-
The dashboard is designed for mobile efficiency.
|
| 16 |
-
- **Top Header**: Displays the application branding ("Healthcare Policy Expert"), a **Dual LLM Toggle Slider**, and current status.
|
| 17 |
-
- The slider toggle allows you to switch the backend intelligence between **Expert** mode (a deep reasoning LLM `google/diffusiongemma`) and **Assistant** mode (a rapid multi-modal LLM `minimaxai`).
|
| 18 |
-
- **Scrollable Output Window**: The large central area displays the conversation history. It automatically scrolls down as new answers are generated.
|
| 19 |
-
- **Input Area**: Located at the bottom of the screen.
|
| 20 |
-
|
| 21 |
-
## 3. Asking Questions
|
| 22 |
-
You can query the system in two ways:
|
| 23 |
-
1. **Quick Questions Dropdown**: Tap the dropdown menu above the text input to select a preset question. Selecting a question will automatically submit it to the AI.
|
| 24 |
-
2. **Manual Input**: Type your query directly into the text box and press the **Send** button.
|
| 25 |
-
|
| 26 |
-
## 4. Understanding Output
|
| 27 |
-
When a question is submitted:
|
| 28 |
-
- Your question will instantly appear in the output window.
|
| 29 |
-
- The system will display a **"Generating answer.. (1.2s)"** timer.
|
| 30 |
-
- Once context is retrieved from the Vector and Graph databases, the LLM will stream the Markdown-formatted answer back to the screen.
|
| 31 |
-
- Analysis may take upto 300 seconds due to slow shared resources. Please keep patience.
|
| 32 |
-
- **Copy Response**: At the bottom right corner of each generated response, a small clipboard icon allows you to instantly copy the question, answer, and analysis metrics directly to your clipboard.
|
| 33 |
-
- **Providing Feedback**: Once an answer completes, the bottom input area will temporarily switch to a Feedback panel. You will see Thumbs Up (👍) / Thumbs Down (👎) buttons alongside a 5-star rating widget (where colors transition from red to green) on the exact same line for a streamlined layout. Selecting an icon captures your feedback immediately. You may optionally enter text feedback and click **Submit**, after which a thank you message confirms your feedback has been logged, or click **Cancel** to revert the panel back to the standard question box.
|
| 34 |
-
- Responses remain preserved in the scrollable window for the duration of your session.
|
| 35 |
-
|
| 36 |
-
## 5. Security & Session Handling
|
| 37 |
-
- **Multi-tenant Isolation**: Your conversation is strictly isolated from other users using an invisible `X-Session-Token`. Multiple users can query the system concurrently without interference.
|
| 38 |
-
- **Resumable Mobile Sessions**: If your mobile device goes to sleep or you navigate to another app, the system safely buffers your answer. When you return, the streaming will seamlessly resume without missing a word.
|
| 39 |
-
- **Session Expiration**: If the page is reloaded, or if you are inactive for an extended period, your session token resets, and previous context is cleared to ensure privacy.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/kbdocs/Base insurance Program brochure.pdf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:70d8161e1b6ed6dc105faac47bcc7de99ecea2a6fe420a6a0b34b004720590fb
|
| 3 |
-
size 55758
|
|
|
|
|
|
|
|
|
|
|
|
app/kbdocs/Base insurance escalation_matrix.pdf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:d8540a924d8acafb88062f107f18d63f6cee166c9ab233b60e31cc9f232bc2fc
|
| 3 |
-
size 742506
|
|
|
|
|
|
|
|
|
|
|
|
app/kbdocs/Base insurance specific_disease.pdf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:912f250027d09551b7e2ca55e40e9d370efc9982c402a7ad856aa0ce7086734b
|
| 3 |
-
size 1361331
|
|
|
|
|
|
|
|
|
|
|
|
app/kbdocs/NITDAA_Base_STUP_Insurance_Policy_2026.pdf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:7487d1b82077f785489310a937834bd729970371ef002f48767304245bbb5d1b
|
| 3 |
-
size 476577
|
|
|
|
|
|
|
|
|
|
|
|
app/kbdocs/NITDAA_Medical_Insurance_FAQ.txt
DELETED
|
@@ -1,772 +0,0 @@
|
|
| 1 |
-
NITDAA SUPER TOP-UP (STUP) AND BASE HEALTH INSURANCE
|
| 2 |
-
FREQUENTLY ASKED QUESTIONS
|
| 3 |
-
|
| 4 |
-
Compiled from the NITDAA Policyholder WhatsApp Group
|
| 5 |
-
Source: Responses by Debasis Basu and Anand Gaggar
|
| 6 |
-
|
| 7 |
-
Note: This document reflects Q&A exchanges from September 2024 through April 2026.
|
| 8 |
-
Where policy terms changed between Year 1 (2024-25) and Year 2 (2025-26), both are noted.
|
| 9 |
-
|
| 10 |
-
================================================================================
|
| 11 |
-
SECTION 1: POLICY OVERVIEW AND ELIGIBILITY
|
| 12 |
-
================================================================================
|
| 13 |
-
|
| 14 |
-
Q1. What are the two NITDAA medical insurance policies?
|
| 15 |
-
|
| 16 |
-
A. There are two separate and independent policies:
|
| 17 |
-
|
| 18 |
-
(1) NITDAA Super Top-Up (STUP) Policy — insured by Care Health Insurance
|
| 19 |
-
(2) NITDAA Base Health Insurance Policy — insured by The Oriental Insurance
|
| 20 |
-
Company Ltd (a public sector company)
|
| 21 |
-
|
| 22 |
-
The two policies are with different insurers and their coverage and hospital
|
| 23 |
-
networks may differ. There is no automatic seamless migration of a claim from
|
| 24 |
-
the Base policy to the STUP. [Debasis Basu, June 2025]
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
Q2. Who is eligible to buy these policies?
|
| 28 |
-
|
| 29 |
-
A. NITDAA Life Members — Alumni, Faculty, and Staff of NIT Durgapur. Life
|
| 30 |
-
membership of NITDAA is mandatory before purchasing any policy. Non-life
|
| 31 |
-
members who purchased the STUP in Year 1 were required to obtain Life
|
| 32 |
-
Membership before the Year 2 renewal. [Debasis Basu, May-June 2025]
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
Q3. What is the entry age limit?
|
| 36 |
-
|
| 37 |
-
A. Up to 85 years for both policies. [Debasis Basu, September 2024]
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
Q4. Who can be covered under the policy as family members?
|
| 41 |
-
|
| 42 |
-
A. Self, spouse, dependent children, parents, and parents-in-law.
|
| 43 |
-
[Debasis Basu, September 2024]
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
Q5. Can children above 24 years be included?
|
| 47 |
-
|
| 48 |
-
A. Under the Base Policy: No. Maximum age for children is 24 years.
|
| 49 |
-
|
| 50 |
-
Under the STUP:
|
| 51 |
-
— Year 1 (2024-25): Maximum age was 24 years.
|
| 52 |
-
— Year 2 (2025-26): The age limit for children was increased to 30 years.
|
| 53 |
-
Children can be added free of additional premium up to age 30.
|
| 54 |
-
|
| 55 |
-
Children above 30 are not included in the scheme. Adult children above the
|
| 56 |
-
specified age are considered independent individuals. Including them was
|
| 57 |
-
discussed and not pursued because it would have made the group heterogeneous
|
| 58 |
-
with different professions, affecting premium calculation.
|
| 59 |
-
[Debasis Basu, January 2025 and June-July 2025]
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
Q6. Can a separately abled / differently abled child above the age limit be included?
|
| 63 |
-
|
| 64 |
-
A. Age limit is the primary eligibility criterion. If the child is within the age
|
| 65 |
-
limit, there is no special acceptance or rejection criteria unless the condition
|
| 66 |
-
falls in the STUP negative list. For the Base Policy, which has no negative
|
| 67 |
-
list, the proposal goes to the Medical Board. If accepted, coverage proceeds;
|
| 68 |
-
if not, nothing further can be done. [Debasis Basu, May 2025]
|
| 69 |
-
|
| 70 |
-
|
| 71 |
-
Q7. Are parents and parents-in-law covered under the same policy or separate?
|
| 72 |
-
|
| 73 |
-
A. Parents (and parents-in-law) are covered under a separate, additional policy
|
| 74 |
-
under the same programme. They are not part of the family floater for the
|
| 75 |
-
primary member. [Debasis Basu, September 2024]
|
| 76 |
-
|
| 77 |
-
|
| 78 |
-
Q8. If an alumnus passes away, can the family continue the policy?
|
| 79 |
-
|
| 80 |
-
A. Yes. For the current policy year, the family remains covered until renewal.
|
| 81 |
-
For subsequent years, NITDAA has agreed to allow the family to continue
|
| 82 |
-
the policy. [Debasis Basu / FAQ Q.47 reference, July 2025]
|
| 83 |
-
|
| 84 |
-
|
| 85 |
-
Q9. Is this a voluntary policy or a compulsory one?
|
| 86 |
-
|
| 87 |
-
A. It is a voluntary group policy, not a compulsory one. It is a B2B2C policy
|
| 88 |
-
— NITDAA as the group administrator, Zopper/Solvytech as the technology and
|
| 89 |
-
placement partner, and the insurer. [Debasis Basu, January 2025]
|
| 90 |
-
|
| 91 |
-
|
| 92 |
-
================================================================================
|
| 93 |
-
SECTION 2: SUPER TOP-UP (STUP) POLICY — FEATURES
|
| 94 |
-
================================================================================
|
| 95 |
-
|
| 96 |
-
Q10. What are the key features of the STUP policy?
|
| 97 |
-
|
| 98 |
-
A. — Entry age: Up to 85 years
|
| 99 |
-
— Sum Insured options: Up to 1 Crore
|
| 100 |
-
— Deductible options: 3, 5, 7, 10 lakhs (and higher options introduced in
|
| 101 |
-
Year 2: 15, 20, 25 lakhs)
|
| 102 |
-
— No medical checkup required at entry
|
| 103 |
-
— Room: Any kind of room except suite (no per-day limit)
|
| 104 |
-
— No sublimits on treatment
|
| 105 |
-
— No co-payment
|
| 106 |
-
— Pre-Existing Disease (PED) waiting period: 1 year only (vs 3-4 years in
|
| 107 |
-
retail/individual policies)
|
| 108 |
-
— People with chronic ailments such as heart disorders, blood disorders,
|
| 109 |
-
insulin-dependent diabetes, and recovered cancer can also enrol, subject to
|
| 110 |
-
the negative list
|
| 111 |
-
— Modern Treatment: Covered up to 50% of Sum Insured
|
| 112 |
-
— GPA (Group Personal Accident) rider: Optional, introduced in Year 2,
|
| 113 |
-
available only for alumni and spouse, age limit 65 years maximum
|
| 114 |
-
— Consumables coverage: Optional in Year 2, at 5% additional premium
|
| 115 |
-
[Debasis Basu, September 2024 and July 2025]
|
| 116 |
-
|
| 117 |
-
|
| 118 |
-
Q11. What is the negative list under the STUP?
|
| 119 |
-
|
| 120 |
-
A. The negative list contains specific diseases that disqualify a person from
|
| 121 |
-
buying the STUP policy. Approximately 5-6 conditions are named in Year 2
|
| 122 |
-
(the Year 2 list is smaller than Year 1). A person having a disease from the
|
| 123 |
-
negative list at the time of buying cannot be covered; their premium will be
|
| 124 |
-
refunded.
|
| 125 |
-
|
| 126 |
-
If any of the specifically named diseases are contracted AFTER buying the
|
| 127 |
-
policy (i.e., they were not pre-existing), they will still have a one-year
|
| 128 |
-
waiting period.
|
| 129 |
-
|
| 130 |
-
Only the specific individual with a disqualifying condition is denied coverage;
|
| 131 |
-
other family members can still be covered. [Debasis Basu, July 2025]
|
| 132 |
-
|
| 133 |
-
|
| 134 |
-
Q12. Is there any loading or additional premium for having a pre-existing disease?
|
| 135 |
-
|
| 136 |
-
A. No. Pre-existing diseases do not attract additional premium and do not impose
|
| 137 |
-
any restriction or limitation on coverage. They are simply subject to the one-
|
| 138 |
-
year waiting period. [Debasis Basu, July 2025]
|
| 139 |
-
|
| 140 |
-
|
| 141 |
-
Q13. Is there any increase (loading) in premium if a claim is made?
|
| 142 |
-
|
| 143 |
-
A. No. Being a group policy, there is no loading on premium for individual claims
|
| 144 |
-
even if they go to 500% or beyond for any individual. This is unlike individual
|
| 145 |
-
retail policies. [Debasis Basu, September 2024]
|
| 146 |
-
|
| 147 |
-
|
| 148 |
-
Q14. Can the Sum Insured be increased in subsequent renewals?
|
| 149 |
-
|
| 150 |
-
A. Year 1 policy: The Sum Insured could not be increased in subsequent renewals;
|
| 151 |
-
it could only be reduced. However, this condition was revised:
|
| 152 |
-
|
| 153 |
-
Year 2 one-time option: Alumni were given a one-time option to reduce the
|
| 154 |
-
deductible and increase the Sum Insured at the Year 2 renewal. The PED
|
| 155 |
-
exclusion of one more year applies to the difference between the old and new
|
| 156 |
-
Sum Insured and the difference between old and new deductible.
|
| 157 |
-
|
| 158 |
-
This change in SI and deductible is not possible if a disease from the
|
| 159 |
-
negative list has been contracted during the year, or if a claim was made.
|
| 160 |
-
|
| 161 |
-
After this one-time option, it is unlikely the increase in SI will be available
|
| 162 |
-
in further renewals. Reduction in SI and increase in deductible are always
|
| 163 |
-
possible. [Debasis Basu, July 2025]
|
| 164 |
-
|
| 165 |
-
|
| 166 |
-
Q15. What is the deductible and how does it work?
|
| 167 |
-
|
| 168 |
-
A. The deductible is the amount the policyholder must pay (or has already paid
|
| 169 |
-
through a base policy or out-of-pocket) before the STUP policy is triggered.
|
| 170 |
-
Once the cumulative hospital bill for the entire family during the year exceeds
|
| 171 |
-
the chosen deductible, the STUP pays the excess.
|
| 172 |
-
|
| 173 |
-
The deductible applies on an aggregate family basis for the policy year, not
|
| 174 |
-
per incident. Whether paid by the policyholder themselves or recovered from
|
| 175 |
-
any other base policy, the STUP pays the excess over the deductible.
|
| 176 |
-
[Debasis Basu, March 2025]
|
| 177 |
-
|
| 178 |
-
|
| 179 |
-
Q16. Is this policy connected to or dependent on another base policy?
|
| 180 |
-
|
| 181 |
-
A. No. The Super Top-Up policy has no requirement for a base policy. It is
|
| 182 |
-
different from a normal top-up policy that requires topping up on another
|
| 183 |
-
specific policy. [Debasis Basu, September 2024]
|
| 184 |
-
|
| 185 |
-
|
| 186 |
-
================================================================================
|
| 187 |
-
SECTION 3: BASE HEALTH INSURANCE POLICY — FEATURES
|
| 188 |
-
================================================================================
|
| 189 |
-
|
| 190 |
-
Q17. What are the key features of the NITDAA Base Health Insurance Policy?
|
| 191 |
-
|
| 192 |
-
A. — Insurer: The Oriental Insurance Company Ltd (public sector)
|
| 193 |
-
— Entry age: Up to 85 years
|
| 194 |
-
— Sum Insured options: 3 lakhs or 5 lakhs
|
| 195 |
-
— Covers self, spouse, children (up to 24 years), parents, and parents-in-law
|
| 196 |
-
— No medical checkup required
|
| 197 |
-
— Room: Single private AC room
|
| 198 |
-
— Modern Treatment: Covered up to 100% of Sum Insured
|
| 199 |
-
— No sublimits on treatment
|
| 200 |
-
— No co-payment
|
| 201 |
-
— 1 year waiting period on Pre-Existing Diseases (PED)
|
| 202 |
-
— No negative list
|
| 203 |
-
— No requirement to declare PEDs at enrollment
|
| 204 |
-
— Dental treatment (e.g., root canal) is NOT covered
|
| 205 |
-
— OPD (Out-Patient Department) treatments are NOT covered
|
| 206 |
-
— Day care treatments: Covered
|
| 207 |
-
[Debasis Basu, May-June 2025]
|
| 208 |
-
|
| 209 |
-
|
| 210 |
-
Q18. Why is the Base Policy Sum Insured limited to 3 or 5 lakhs?
|
| 211 |
-
|
| 212 |
-
A. The Base Policy was brought as a surprise offer from Oriental Insurance at
|
| 213 |
-
a very good premium. It was intentionally kept at a small level because:
|
| 214 |
-
(1) The objective of the NITDAA programme is the STUP for protection against
|
| 215 |
-
something really going wrong (major illness/accident), not for routine medical
|
| 216 |
-
cost management. (2) Base policies are vulnerable to attritional claims, which
|
| 217 |
-
can make premium consistency challenging. [Debasis Basu, June 2025]
|
| 218 |
-
|
| 219 |
-
|
| 220 |
-
Q19. Under the Base Policy, can the Sum Insured be different for the alumni's
|
| 221 |
-
family versus parents/in-laws?
|
| 222 |
-
|
| 223 |
-
A. For parents and parents-in-law: Yes, a different Sum Insured is possible.
|
| 224 |
-
For the alumni, spouse, and children: The Sum Insured will be the same.
|
| 225 |
-
[Goutam Majumder, June 2025]
|
| 226 |
-
|
| 227 |
-
|
| 228 |
-
Q20. Can the Base Policy Sum Insured be increased from 3 to 5 lakhs in the
|
| 229 |
-
next year's renewal?
|
| 230 |
-
|
| 231 |
-
A. This has not been confirmed. If allowed, the PED waiting period will apply
|
| 232 |
-
again for the additional 2 lakhs (i.e., the difference of 5-3 = 2 lakhs will
|
| 233 |
-
have a further one-year PED exclusion). [Debasis Basu, June 2025]
|
| 234 |
-
|
| 235 |
-
|
| 236 |
-
Q21. Is there a premium difference between 1 adult, 2 adults, and 2 adults +
|
| 237 |
-
children?
|
| 238 |
-
|
| 239 |
-
A. The premium for 1 adult (1A), 2 adults (2A), and 2 adults + children
|
| 240 |
-
(2A+2C) is the same. Group policy pricing is done on the basis of average
|
| 241 |
-
exposure, not on individual risk assessment. Children's exposure is almost
|
| 242 |
-
negligible, so it is offered as a marketing incentive without separate premium.
|
| 243 |
-
[Debasis Basu, May 2025]
|
| 244 |
-
|
| 245 |
-
|
| 246 |
-
================================================================================
|
| 247 |
-
SECTION 4: PRE-EXISTING DISEASES (PED) — DECLARATION AND COVERAGE
|
| 248 |
-
================================================================================
|
| 249 |
-
|
| 250 |
-
Q22. What pre-existing diseases must be declared in the STUP?
|
| 251 |
-
|
| 252 |
-
A. Year 1 Policy: All PEDs without exception must be declared — including
|
| 253 |
-
controlled conditions like blood pressure, diabetes, thyroid, etc. There is
|
| 254 |
-
no published list of PEDs. Every condition for which the person is taking
|
| 255 |
-
medication or has received treatment must be declared. Past surgeries and
|
| 256 |
-
procedures (e.g., hernia operation, leg fracture with plate insertion) must
|
| 257 |
-
also be declared. Non-declaration can potentially be used to void a policy.
|
| 258 |
-
[Debasis Basu, July 2025]
|
| 259 |
-
|
| 260 |
-
Year 2 Update (Revised CIS, August 2025): The PED declaration requirement
|
| 261 |
-
was removed. At policy purchase/renewal, the alumni only need to answer
|
| 262 |
-
specific mandatory questions related to the negative list (i.e., confirm
|
| 263 |
-
whether they have any of the approximately 5-6 disqualifying conditions).
|
| 264 |
-
All other PEDs will simply have a one-year waiting period without
|
| 265 |
-
any declaration requirement.
|
| 266 |
-
|
| 267 |
-
This change was a significant improvement secured through negotiation with
|
| 268 |
-
Care Health Insurance. Anand Gaggar's detailed personal PED disclosure
|
| 269 |
-
(going back 35 years) was presented as a case study to make the argument.
|
| 270 |
-
[Debasis Basu, July 2025]
|
| 271 |
-
|
| 272 |
-
|
| 273 |
-
Q23. Anand Gaggar shared his personal PED list for guidance. What was it?
|
| 274 |
-
|
| 275 |
-
A. When Anand Gaggar (REC Durgapur, 1965-70) enquired with Zopper about
|
| 276 |
-
whether past surgeries also needed declaration, he was advised to declare all
|
| 277 |
-
PEDs in detail, even if applying afresh. His own list included:
|
| 278 |
-
|
| 279 |
-
— Past TURP surgery for BPH (Benign Prostatic Hyperplasia)
|
| 280 |
-
— Cholesterol
|
| 281 |
-
— Cataract surgery (one eye)
|
| 282 |
-
— Hypertension
|
| 283 |
-
— Type 2 Diabetes
|
| 284 |
-
— Hypothyroidism
|
| 285 |
-
— Dyslipidemia
|
| 286 |
-
— Acid Reflux
|
| 287 |
-
— Vertigo
|
| 288 |
-
— Cervical Spondylitis
|
| 289 |
-
— BPH (Benign Prostatic Hyperplasia)
|
| 290 |
-
|
| 291 |
-
He shared this example publicly to caution other members about the
|
| 292 |
-
importance of thorough PED disclosure. Debasis Basu confirmed the advice
|
| 293 |
-
and pursued the matter with Care Healthcare, ultimately achieving the
|
| 294 |
-
removal of the PED declaration requirement. [Anand Gaggar and Debasis Basu,
|
| 295 |
-
July 2025]
|
| 296 |
-
|
| 297 |
-
|
| 298 |
-
Q24. How should a PED that is medically controlled (e.g., cholesterol medication
|
| 299 |
-
taken as a precaution with no elevated levels) be declared?
|
| 300 |
-
|
| 301 |
-
A. Always write "medically controlled [condition name]." For past ailments,
|
| 302 |
-
write the name of the condition and the approximate period. Example: "Hernia
|
| 303 |
-
operation in March 2018." If in doubt about whether to declare something, the
|
| 304 |
-
answer is yes — declare it. Non-declaration has no benefit since there is no
|
| 305 |
-
loading on premium and no restriction imposed. [Debasis Basu, July 2025]
|
| 306 |
-
|
| 307 |
-
|
| 308 |
-
Q25. Do PEDs of family members also need to be declared?
|
| 309 |
-
|
| 310 |
-
A. Yes. All family members' PEDs should be declared. The insurer will ask if
|
| 311 |
-
they have questions. [Debasis Basu, July 2025]
|
| 312 |
-
|
| 313 |
-
|
| 314 |
-
Q26. Are PEDs covered after the one-year waiting period?
|
| 315 |
-
|
| 316 |
-
A. Yes. After the one-year waiting period, all pre-existing diseases are
|
| 317 |
-
covered without restriction, limitation, or additional premium.
|
| 318 |
-
[Debasis Basu, multiple dates]
|
| 319 |
-
|
| 320 |
-
|
| 321 |
-
Q27. For the Base Policy, do I need to declare PEDs?
|
| 322 |
-
|
| 323 |
-
A. No. The Base Policy does not require any PED declaration. All PEDs are
|
| 324 |
-
covered after one year of waiting from the policy start date. All other
|
| 325 |
-
conditions (not PEDs) are covered after 30 days.
|
| 326 |
-
[Debasis Basu, July 2025]
|
| 327 |
-
|
| 328 |
-
|
| 329 |
-
================================================================================
|
| 330 |
-
SECTION 5: HOSPITAL NETWORK AND CASHLESS FACILITY
|
| 331 |
-
================================================================================
|
| 332 |
-
|
| 333 |
-
Q28. How do I find network hospitals for cashless treatment?
|
| 334 |
-
|
| 335 |
-
A. Use the Care Insurance hospital network search link:
|
| 336 |
-
https://www.careinsurance.com/health-plan-network-hospitals.html
|
| 337 |
-
|
| 338 |
-
When searching, type the location and select "general" for category instead
|
| 339 |
-
of a speciality. This list is auto-updated by Care Insurance from time to
|
| 340 |
-
time. Members should stay updated as hospitals can be de-listed.
|
| 341 |
-
[Debasis Basu, September 2024]
|
| 342 |
-
|
| 343 |
-
|
| 344 |
-
Q29. Are there cashless facilities at non-network hospitals?
|
| 345 |
-
|
| 346 |
-
A. There is an "Anywhere Cashless" provision for emergencies, but it requires
|
| 347 |
-
informing the insurer within 48 hours of admission. In practice, the process
|
| 348 |
-
is not straightforward. Best practice is to always use network hospitals for
|
| 349 |
-
cashless treatment. [Goutam Majumder, January 2025]
|
| 350 |
-
|
| 351 |
-
|
| 352 |
-
Q30. What happens if treatment is taken at a non-network hospital?
|
| 353 |
-
|
| 354 |
-
A. The reimbursement process must be followed. Reimbursement from non-network
|
| 355 |
-
hospitals is generally not paid in full because non-network hospitals charge
|
| 356 |
-
more than the pre-agreed rates between the insurer and network hospitals. The
|
| 357 |
-
insurer settles reimbursement at their "rack rate" (the rate they have agreed
|
| 358 |
-
with network hospitals), not the actual bill charged. [Debasis Basu, February
|
| 359 |
-
2025 and March 2025]
|
| 360 |
-
|
| 361 |
-
|
| 362 |
-
Q31. A member experienced that their network hospital refused to raise dual
|
| 363 |
-
cashless claims (one for base policy with Star Health and one for STUP with Care).
|
| 364 |
-
What is the resolution?
|
| 365 |
-
|
| 366 |
-
A. This was identified as a teething issue in Year 1. The member (Anirban) had
|
| 367 |
-
to discharge the patient and use the reimbursement route. Debasis Basu
|
| 368 |
-
acknowledged this as a known concern and committed to taking it up with the
|
| 369 |
-
insurers for a seamless cashless process in network hospitals.
|
| 370 |
-
[Debasis Basu, February 2025]
|
| 371 |
-
|
| 372 |
-
|
| 373 |
-
Q32. Should I inform Care Insurance before hospitalisation?
|
| 374 |
-
|
| 375 |
-
A. Any hospitalisation where the bill is likely to exceed the deductible should
|
| 376 |
-
be informed to the insurer in advance.
|
| 377 |
-
|
| 378 |
-
During a second hospitalisation in the same year where the cumulative bill
|
| 379 |
-
will cross the deductible: Submit the first hospitalisation bill and payment
|
| 380 |
-
receipt to the hospital's insurance desk and ask them to communicate with Care
|
| 381 |
-
for cashless processing of the STUP.
|
| 382 |
-
[Debasis Basu, January 2025]
|
| 383 |
-
|
| 384 |
-
|
| 385 |
-
================================================================================
|
| 386 |
-
SECTION 6: POLICY DOCUMENT AND CASHLESS CARD
|
| 387 |
-
================================================================================
|
| 388 |
-
|
| 389 |
-
Q33. How do I receive my policy and cashless card?
|
| 390 |
-
|
| 391 |
-
A. All policy documents are digital. The policy certificate and the cashless
|
| 392 |
-
card are sent to the registered email address. There is no physical policy
|
| 393 |
-
document or physical card; nothing comes by post. [Debasis Basu,
|
| 394 |
-
November 2024]
|
| 395 |
-
|
| 396 |
-
|
| 397 |
-
Q34. Where is the cashless card?
|
| 398 |
-
|
| 399 |
-
A. The cashless card is a digital card on the last page of the digital policy
|
| 400 |
-
PDF. Members should keep it saved and handy. [Debasis Basu, December 2024]
|
| 401 |
-
|
| 402 |
-
|
| 403 |
-
Q35. How can I retrieve my policy if I have lost or deleted the email?
|
| 404 |
-
|
| 405 |
-
A. Two options:
|
| 406 |
-
(1) Install the Care Health Insurance app and retrieve the policy using the
|
| 407 |
-
policy number. The app also has an "Emergency Login for Family Member"
|
| 408 |
-
feature.
|
| 409 |
-
(2) Use the self-service link:
|
| 410 |
-
https://selfcare.careinsurance.com/self-help-policy-verification?
|
| 411 |
-
subCategory=policyDetails-showPolicyDetails
|
| 412 |
-
Enter the policy number and the certificate and cashless card will be
|
| 413 |
-
generated within a minute.
|
| 414 |
-
[Debasis Basu, December 2024 and March 2025]
|
| 415 |
-
|
| 416 |
-
|
| 417 |
-
Q36. Can I log in to NITDAA portal to access my STUP policy?
|
| 418 |
-
|
| 419 |
-
A. Yes. Log in to www.nitdaa.org. Under the Health Insurance tab, the STUP
|
| 420 |
-
policy is accessible. The Base Policy (Oriental) may not be directly
|
| 421 |
-
accessible through the NITDAA portal as Oriental's infrastructure integration
|
| 422 |
-
is different. [Goutam Majumder, November 2025]
|
| 423 |
-
|
| 424 |
-
|
| 425 |
-
================================================================================
|
| 426 |
-
SECTION 7: CLAIMS PROCESS
|
| 427 |
-
================================================================================
|
| 428 |
-
|
| 429 |
-
Q37. Who do I contact first when I need to make a claim?
|
| 430 |
-
|
| 431 |
-
A. Zopper is the single window contact for the insured. All documents and claims
|
| 432 |
-
are submitted via email to Zopper (nitdaahealthplan@zopper.com). There is no
|
| 433 |
-
direct contact with Care Insurance as part of the standard claim process.
|
| 434 |
-
Zopper also assists in assembling documents, advising on their nature and
|
| 435 |
-
source, and provides advance information on claim status.
|
| 436 |
-
[Goutam Majumder, January 2025]
|
| 437 |
-
|
| 438 |
-
|
| 439 |
-
Q38. Does Care Health Insurance have a TPA?
|
| 440 |
-
|
| 441 |
-
A. No. Care does not use a TPA. It has its own claims team. Zopper, as the
|
| 442 |
-
servicing intermediary, provides support for claims.
|
| 443 |
-
[Debasis Basu, September 2024]
|
| 444 |
-
|
| 445 |
-
|
| 446 |
-
Q39. What documents are needed for a reimbursement claim?
|
| 447 |
-
|
| 448 |
-
A. Based on the Bivas claim case (December 2024-January 2025), the following
|
| 449 |
-
were submitted:
|
| 450 |
-
— Filled reimbursement claim form
|
| 451 |
-
— Scan copy of discharge summary
|
| 452 |
-
— Scan copies of all bill payment receipts
|
| 453 |
-
— Scan copy of final bill
|
| 454 |
-
— Aadhaar and PAN cards
|
| 455 |
-
— Cashless final approval letter from base insurer (if applicable)
|
| 456 |
-
— Cancelled cheque
|
| 457 |
-
|
| 458 |
-
Care subsequently asked for:
|
| 459 |
-
— First consultation prescription of the doctor who attended on the day of
|
| 460 |
-
admission
|
| 461 |
-
— MLC report (if applicable)
|
| 462 |
-
— Investigation reports supporting the diagnosis
|
| 463 |
-
— Indoor case papers
|
| 464 |
-
|
| 465 |
-
Recommendation: Keep every piece of paper issued by the hospital, even if
|
| 466 |
-
it seems insignificant. [Goutam Majumder, January 2025]
|
| 467 |
-
|
| 468 |
-
|
| 469 |
-
Q40. Should I submit original bills or photocopies?
|
| 470 |
-
|
| 471 |
-
A. Submit self-attested photocopies, not originals. The NITDAA team has
|
| 472 |
-
negotiated with the insurer to accept self-attested photocopies. If they
|
| 473 |
-
request originals, offer to send them to the nearest office for verification
|
| 474 |
-
and return. [Debasis Basu, November 2025]
|
| 475 |
-
|
| 476 |
-
|
| 477 |
-
Q41. What is the experience with claim settlement in the first year?
|
| 478 |
-
|
| 479 |
-
A. Case 1 (Bivas, Durgapur, December 2024):
|
| 480 |
-
— Soma (spouse) was admitted to a non-network hospital with burn injuries.
|
| 481 |
-
— Base insurer (National Insurance / Medi Assist) paid Rs 81,386 cashless.
|
| 482 |
-
— Bivas paid Rs 5,58,599 out-of-pocket. Total bill: Rs 6,39,985.
|
| 483 |
-
— Deductible under STUP: Rs 5,00,000. Claim filed: Rs 1,39,985.
|
| 484 |
-
— Care paid in two tranches: Rs 55,928 and Rs 81,386. Total: Rs 1,37,314.
|
| 485 |
-
— Settled at approximately 98.1% of the claimed amount.
|
| 486 |
-
— Complications: Non-network hospital, "Anywhere Cashless" denied,
|
| 487 |
-
investigator harassment; all resolved on NITDAA intervention.
|
| 488 |
-
|
| 489 |
-
Case 2 (Anirban, Navi Mumbai, December 2024-January 2025):
|
| 490 |
-
— Both parents hospitalised at MGM Vashi (network hospital), total bill Rs 8.5L.
|
| 491 |
-
— Base policy with Star Health (not Care); hospital refused dual cashless.
|
| 492 |
-
— Discharged after paying balance; reimbursement route followed.
|
| 493 |
-
— Claim processed within approximately 30 days.
|
| 494 |
-
— Certain deductions made for consumables etc.
|
| 495 |
-
— Zopper was very helpful throughout the process.
|
| 496 |
-
|
| 497 |
-
General observation from IIM Bangalore programme (same STUP policy):
|
| 498 |
-
— A single claim of Rs 39 lakhs was paid for a 45-year-old member.
|
| 499 |
-
— NIT Warangal had a single claim paid of Rs 13 lakhs.
|
| 500 |
-
[Goutam Majumder, January 2025; Debasis Basu, multiple dates]
|
| 501 |
-
|
| 502 |
-
|
| 503 |
-
Q42. What is the claim settlement ratio of Care Health Insurance?
|
| 504 |
-
|
| 505 |
-
A. The data shared was the 2022-23 industry report showing Care's loss ratio by
|
| 506 |
-
policy count at approximately 67-70%, meaning 70 out of 100 policies had
|
| 507 |
-
claims. Debasis Basu cautioned this is not the "percentage of claims paid"
|
| 508 |
-
but the "cost of claims relative to premium" (loss ratio).
|
| 509 |
-
He noted Care's loss ratio had increased in 2023-24 and this was a concern.
|
| 510 |
-
[Debasis Basu, November 2024]
|
| 511 |
-
|
| 512 |
-
|
| 513 |
-
Q43. Can I go to Ombudsman if a claim is denied?
|
| 514 |
-
|
| 515 |
-
A. Yes. The Insurance Ombudsman route is available if Zopper/Care does not
|
| 516 |
-
resolve the issue. The complaint link is:
|
| 517 |
-
https://www.cioins.co.in/
|
| 518 |
-
The NITDAA team does not expect members to need this route given the group
|
| 519 |
-
policy's commercial leverage, but it is available. Medical claim disputes
|
| 520 |
-
generally do not go to the legal route; the Ombudsman level is the most
|
| 521 |
-
extreme recourse. [Debasis Basu, December 2024]
|
| 522 |
-
|
| 523 |
-
|
| 524 |
-
================================================================================
|
| 525 |
-
SECTION 8: ENROLLMENT AND RENEWAL
|
| 526 |
-
================================================================================
|
| 527 |
-
|
| 528 |
-
Q44. When does enrollment open for new members?
|
| 529 |
-
|
| 530 |
-
A. Year 1 (STUP only): Window opened around August 2024, closed September 15,
|
| 531 |
-
2024. No further extension was given.
|
| 532 |
-
Year 2 (STUP new enrollment): Around July 15, 2025 (with possible few days
|
| 533 |
-
delay for system readiness). Window remained open for approximately one month.
|
| 534 |
-
Year 2 (Base Policy): Enrollment opened June 5, 2025 and closed June 25, 2025.
|
| 535 |
-
Year 3 (both policies): Renewal and new enrollment expected in June/July 2026.
|
| 536 |
-
[Debasis Basu, multiple dates]
|
| 537 |
-
|
| 538 |
-
|
| 539 |
-
Q45. Can the policy be bought outside the enrollment window?
|
| 540 |
-
|
| 541 |
-
A. No. New enrollment is only possible during the announced enrollment window.
|
| 542 |
-
For STUP Year 1 policy holders who missed the renewal, a short extension window
|
| 543 |
-
in Feb-March was explored for Base Policy but not confirmed for STUP.
|
| 544 |
-
[Debasis Basu, November 2025 and December 2025]
|
| 545 |
-
|
| 546 |
-
|
| 547 |
-
Q46. How does renewal work for the STUP?
|
| 548 |
-
|
| 549 |
-
A. Renewal notices come by email from Care Insurance and by SMS. The renewal is
|
| 550 |
-
done through the NITDAA portal (www.nitdaa.org > External Insurance tab) using
|
| 551 |
-
the same process as the initial purchase. Renewals go live from respective
|
| 552 |
-
policy anniversary dates. Members should renew at least 7-10 days before the
|
| 553 |
-
renewal date.
|
| 554 |
-
[Debasis Basu, June 2025 and July 2025]
|
| 555 |
-
|
| 556 |
-
|
| 557 |
-
Q47. Can I port my existing individual health insurance policy to the NITDAA
|
| 558 |
-
group policy?
|
| 559 |
-
|
| 560 |
-
A. No. NITDAA group policies have no porting-in or porting-out facility. If you
|
| 561 |
-
wish to switch from your existing policy to NITDAA policies, it is advisable
|
| 562 |
-
to maintain overlap between the two policies for one year (to cover the NITDAA
|
| 563 |
-
PED waiting period) and then discontinue the old policy. [Debasis Basu,
|
| 564 |
-
January 2026]
|
| 565 |
-
|
| 566 |
-
|
| 567 |
-
Q48. Is there a no-claim bonus (NCB) in the STUP policy?
|
| 568 |
-
|
| 569 |
-
A. No. There is no no-claim bonus in a group policy. [Debasis Basu, June 2025]
|
| 570 |
-
|
| 571 |
-
|
| 572 |
-
Q49. Will the premium remain the same on renewal?
|
| 573 |
-
|
| 574 |
-
A. The premium on renewal is likely to remain the same. However, the premium is
|
| 575 |
-
on an age-band basis and is subject to the overall loss ratio of the group
|
| 576 |
-
portfolio. If the loss ratio remains manageable, the premium should be stable.
|
| 577 |
-
The group leverage across multiple NITs (NIT Warangal, Nagpur, Hamirpur,
|
| 578 |
-
Rourkela, Surathkal, Calicut, Jamshedpur, and NIT Durgapur, with others
|
| 579 |
-
joining) provides additional stability. [Debasis Basu, June 2025]
|
| 580 |
-
|
| 581 |
-
|
| 582 |
-
================================================================================
|
| 583 |
-
SECTION 9: RELATIONSHIP WITH OTHER POLICIES AND SCHEMES
|
| 584 |
-
================================================================================
|
| 585 |
-
|
| 586 |
-
Q50. If I have a government scheme (CGHS / ESI / company group insurance /
|
| 587 |
-
Sasthya Sathi), do I still need this policy?
|
| 588 |
-
|
| 589 |
-
A. These schemes have fixed limits that do not increase with medical cost
|
| 590 |
-
inflation (currently 13-15% per year). The NITDAA programme is considering
|
| 591 |
-
higher deductible options (15, 20, 25 lakhs) for those with employer or
|
| 592 |
-
government coverage at those levels. Taking the STUP with a high deductible
|
| 593 |
-
as a backup over an existing scheme provides high-limit protection at an
|
| 594 |
-
affordable premium.
|
| 595 |
-
|
| 596 |
-
For CGHS users specifically: CGHS hospitals are limited, and treatment is
|
| 597 |
-
restricted to government hospitals. The NITDAA policy allows treatment at
|
| 598 |
-
private network hospitals including single room facility.
|
| 599 |
-
[Debasis Basu, multiple dates]
|
| 600 |
-
|
| 601 |
-
|
| 602 |
-
Q51. My cataract operation cost Rs 1.25 lakhs. My base policy reimbursed
|
| 603 |
-
Rs 75,000. Can I claim the balance from the STUP?
|
| 604 |
-
|
| 605 |
-
A. No. The STUP will not pay below the chosen deductible (3 lakhs or 5 lakhs).
|
| 606 |
-
If the total cumulative family bill for the year has not crossed the
|
| 607 |
-
deductible, the STUP does not trigger. [Debasis Basu, March 2025]
|
| 608 |
-
|
| 609 |
-
|
| 610 |
-
================================================================================
|
| 611 |
-
SECTION 10: POLICY AND INSURANCE CONCEPTS
|
| 612 |
-
================================================================================
|
| 613 |
-
|
| 614 |
-
Q52. Can an error in my name (e.g., middle name missing) affect my claim?
|
| 615 |
-
|
| 616 |
-
A. A minor clerical error in the name that is not material to the loss would
|
| 617 |
-
not affect a claim. In a group policy, small deviations are generally not
|
| 618 |
-
an issue unlike individual policies. However, key fields like date of birth
|
| 619 |
-
and address should be correct. The advantage of group policy is that minor
|
| 620 |
-
individual deviations cannot be used as grounds for denial.
|
| 621 |
-
[Debasis Basu, December 2024]
|
| 622 |
-
|
| 623 |
-
|
| 624 |
-
Q53. Why does the hospital network keep changing?
|
| 625 |
-
|
| 626 |
-
A. Hospitals are de-listed when they do not comply with the pre-agreed rates
|
| 627 |
-
between the insurer and the network hospital. Hospitals sometimes increase
|
| 628 |
-
charges beyond what the insurer has agreed. If an agreement is reached, the
|
| 629 |
-
hospital is re-listed. This is a commercial negotiation that is ongoing.
|
| 630 |
-
Apollo Kolkata (on EM Bypass) was delisted and subsequently came back into
|
| 631 |
-
the Care network. [Debasis Basu, March 2025 and January 2025]
|
| 632 |
-
|
| 633 |
-
|
| 634 |
-
Q54. Why does the insurer pay less on reimbursement claims compared to cashless?
|
| 635 |
-
|
| 636 |
-
A. For cashless in network hospitals, the insurer pays according to pre-agreed
|
| 637 |
-
rates. For reimbursement from non-network hospitals, the insurer settles
|
| 638 |
-
based on the same pre-agreed "rack rate" it uses for network hospitals. Since
|
| 639 |
-
non-network hospitals typically charge higher rates, the insurer will not pay
|
| 640 |
-
the full bill. [Debasis Basu, multiple dates]
|
| 641 |
-
|
| 642 |
-
|
| 643 |
-
Q55. What is the Principle of Utmost Good Faith in insurance?
|
| 644 |
-
|
| 645 |
-
A. Insurance is based on the principle of Utmost Good Faith. The policyholder is
|
| 646 |
-
expected to be fully transparent at the time of buying the policy. Hiding a
|
| 647 |
-
pre-existing condition and later having a claim rejected for non-disclosure
|
| 648 |
-
is worse than declaring the condition and waiting out the one-year exclusion
|
| 649 |
-
period. [Debasis Basu, September 2024]
|
| 650 |
-
|
| 651 |
-
|
| 652 |
-
================================================================================
|
| 653 |
-
SECTION 11: ANAND GAGGAR — ADVISORY POSTS
|
| 654 |
-
================================================================================
|
| 655 |
-
|
| 656 |
-
Q56. What was Anand Gaggar's assessment of India's healthcare costs and the
|
| 657 |
-
need for the NITDAA STUP?
|
| 658 |
-
|
| 659 |
-
A. In a July 2025 article, Anand Gaggar wrote:
|
| 660 |
-
|
| 661 |
-
India's healthcare crisis unfolds through the relentless erosion of financial
|
| 662 |
-
security. Medical emergencies routinely wipe out years of savings. India
|
| 663 |
-
spends barely 1.4% of its GDP on public healthcare. Over 66% of India's total
|
| 664 |
-
health expenditure comes directly from people's pockets — one of the highest
|
| 665 |
-
proportions globally.
|
| 666 |
-
|
| 667 |
-
For alumni of NIT Durgapur, the NITDAA-sponsored Super Top-Up Health Insurance
|
| 668 |
-
Plan has been a lifesaver. He strongly urged all NIT Durgapur alumni to enroll
|
| 669 |
-
when the window opens. While coverage up to Rs 1 crore is available, he
|
| 670 |
-
recommended a minimum Rs 25 lakh Sum Insured with a deductible of Rs 3 to 5
|
| 671 |
-
lakhs (depending on the base policy).
|
| 672 |
-
[Anand Gaggar, July 2025]
|
| 673 |
-
|
| 674 |
-
|
| 675 |
-
Q57. What was Anand Gaggar's message in February 2026 to encourage alumni to
|
| 676 |
-
enroll?
|
| 677 |
-
|
| 678 |
-
A. He circulated a note to his batchmates that included the following key points:
|
| 679 |
-
|
| 680 |
-
— Real experience: Alumni Atul Agarwal's father (above 75) had a hospital
|
| 681 |
-
bill of Rs 6.85 lakhs. Rs 5 lakhs were approved under the base policy
|
| 682 |
-
without hassle. The balance is to be claimed under the STUP. Atul's feedback:
|
| 683 |
-
"The approval was smooth and the policy is especially valuable for the
|
| 684 |
-
elderly."
|
| 685 |
-
— A NITDAA Medical Emergency WhatsApp group exists for members who have
|
| 686 |
-
enrolled.
|
| 687 |
-
— A NITDAA Insurance Servicing Team WhatsApp group provides guidance on
|
| 688 |
-
policy matters.
|
| 689 |
-
— At the seniors' age, medical emergencies do not give prior notice.
|
| 690 |
-
Financial preparedness gives peace of mind — not just to us, but to our
|
| 691 |
-
families.
|
| 692 |
-
— Let us not postpone this decision.
|
| 693 |
-
[Anand Gaggar, February 2026]
|
| 694 |
-
|
| 695 |
-
|
| 696 |
-
Q58. What was Anand Gaggar's note to batchmates in April 2026 about the need
|
| 697 |
-
for health insurance at senior ages?
|
| 698 |
-
|
| 699 |
-
A. He wrote:
|
| 700 |
-
|
| 701 |
-
As we move further into our seventies, one reality is becoming increasingly
|
| 702 |
-
clear — healthcare in India is improving rapidly, but it is also becoming
|
| 703 |
-
significantly more expensive. A short hospital stay for what was once
|
| 704 |
-
considered a "minor issue" can easily run into Rs 5-7 lakhs. A surgery, ICU
|
| 705 |
-
care, or a complication can push bills well beyond Rs 20-25 lakhs.
|
| 706 |
-
|
| 707 |
-
Taking a Rs 30 lakh individual health cover at this age is almost impractical
|
| 708 |
-
as premiums can run into several lakhs annually. This is where the NITDAA
|
| 709 |
-
group health insurance scheme becomes extremely relevant. A Base Policy
|
| 710 |
-
combined with a Super Top-Up Policy provides Rs 30 lakhs and beyond coverage,
|
| 711 |
-
with premiums that are still manageable — typically under Rs 1 lakh per year.
|
| 712 |
-
|
| 713 |
-
The annual premium for such a cover may be roughly equivalent to: the cost of
|
| 714 |
-
smoking one packet of cigarettes a day, or just one family dinner outside per
|
| 715 |
-
month.
|
| 716 |
-
[Anand Gaggar, April 2026]
|
| 717 |
-
|
| 718 |
-
|
| 719 |
-
Q59. What alert did Anand Gaggar share about the Care Insurance excluded
|
| 720 |
-
providers list in March 2026?
|
| 721 |
-
|
| 722 |
-
A. Anand Gaggar (REC 1965-70) received a communication from Care Insurance
|
| 723 |
-
titled "Excluded Providers Locator" containing a 181-page document. The
|
| 724 |
-
communication stated: Providers who fall short of Care's quality assurance
|
| 725 |
-
standards are excluded from the serviceable list for both cashless and
|
| 726 |
-
reimbursement claims (except in emergencies).
|
| 727 |
-
|
| 728 |
-
He shared this in the group so members could be aware and check the list
|
| 729 |
-
before choosing a hospital. The Care Insurance excluded providers link:
|
| 730 |
-
https://cms.careinsurance.com/cms/public/uploads/download_center/Excluded_List.pdf
|
| 731 |
-
|
| 732 |
-
Debasis Basu confirmed he would check and revert. Members were advised not to
|
| 733 |
-
panic and to wait for clarification. [Anand Gaggar, March 2026]
|
| 734 |
-
|
| 735 |
-
|
| 736 |
-
Q60. What is Anand Gaggar's suggestion on AI for healthcare bill auditing?
|
| 737 |
-
|
| 738 |
-
A. In April 2026, Anand Gaggar noted that advanced AI systems can analyse
|
| 739 |
-
massive datasets — medical records, pharmacy logs, insurance claims, and
|
| 740 |
-
hospital billing codes — to detect irregularities such as upcoding and
|
| 741 |
-
unbundling of procedures. He asked whether there is a software developer
|
| 742 |
-
within the NITDAA family who could develop a service to analyse hospital
|
| 743 |
-
bills, medical records, and insurance claims to flag suspicious charges — a
|
| 744 |
-
platform that could empower ordinary patients against opaque hospital billing.
|
| 745 |
-
[Anand Gaggar, April 2026]
|
| 746 |
-
|
| 747 |
-
|
| 748 |
-
================================================================================
|
| 749 |
-
SECTION 12: CONTACT INFORMATION (AS APPEARING IN THE CHAT)
|
| 750 |
-
================================================================================
|
| 751 |
-
|
| 752 |
-
For Insurance-related queries:
|
| 753 |
-
— Debasis Basu: 8420130756
|
| 754 |
-
— Goutam Majumdar: 94344 75011
|
| 755 |
-
— Sandip Roy: 98300 58101
|
| 756 |
-
|
| 757 |
-
For Membership and system-related issues:
|
| 758 |
-
— Probal Chakraverty: 9831054954
|
| 759 |
-
— Somnath Kar: 9836069058
|
| 760 |
-
— Goutam Majumdar: 94344 75011
|
| 761 |
-
|
| 762 |
-
For Zopper (policy servicing):
|
| 763 |
-
— Email: nitdaahealthplan@zopper.com
|
| 764 |
-
— Rishab Katiyar: 93551 30621 / 98717 13662
|
| 765 |
-
|
| 766 |
-
NITDAA Portal: www.nitdaa.org
|
| 767 |
-
Enrollment Link: https://www.nitdaa.org/external_insurance
|
| 768 |
-
Care Health Network Hospitals: https://www.careinsurance.com/health-plan-network-hospitals.html
|
| 769 |
-
|
| 770 |
-
================================================================================
|
| 771 |
-
END OF DOCUMENT
|
| 772 |
-
================================================================================
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/kbdocs/OICL_Base_panel_hospital_Bengaluru.pdf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:5304eba2b1f870179cf4dbb41f33cb5f3cb8348d95f9b6a2f1892186c1c683e4
|
| 3 |
-
size 505986
|
|
|
|
|
|
|
|
|
|
|
|
app/kbdocs/OICL_Base_panel_hospital_Chennai.pdf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:98166edeb7495d424af219c94b049fd1cfd272e5da4bb22c1fdba71047470858
|
| 3 |
-
size 590752
|
|
|
|
|
|
|
|
|
|
|
|
app/kbdocs/OICL_Base_panel_hospital_Hyderabad.pdf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:90e1336b4531719fd7d6e578a99b5b7c69d9d807af5a106d0829bf0a62f12496
|
| 3 |
-
size 800129
|
|
|
|
|
|
|
|
|
|
|
|
app/kbdocs/OICL_Base_panel_hospital_Kolkata.xlsx
DELETED
|
Binary file (23.1 kB)
|
|
|
app/kbdocs/OICL_Base_panel_hospital_Mumbai.xlsx
DELETED
|
Binary file (66 kB)
|
|
|
app/kbdocs/OICL_Base_panel_hospital_Pune.xlsx
DELETED
|
Binary file (28.8 kB)
|
|
|
cert.pem
DELETED
|
@@ -1,29 +0,0 @@
|
|
| 1 |
-
-----BEGIN CERTIFICATE-----
|
| 2 |
-
MIIFCTCCAvGgAwIBAgIUPYd/bRtGkhdcyzQ1I5UMQZJLIkcwDQYJKoZIhvcNAQEL
|
| 3 |
-
BQAwFDESMBAGA1UEAwwJbG9jYWxob3N0MB4XDTI2MDUyOTEyNDAxMFoXDTI3MDUy
|
| 4 |
-
OTEyNDAxMFowFDESMBAGA1UEAwwJbG9jYWxob3N0MIICIjANBgkqhkiG9w0BAQEF
|
| 5 |
-
AAOCAg8AMIICCgKCAgEAsWMkvtcQaOsTEDvnHM/nmO/x5hzGbsbp/5mQ9eGTeeN2
|
| 6 |
-
7OkGsKTNaNZrFNYerIEm0tvb9TW5C3anSC3ZvABmD9CEtL2H6JQz7reYEaCp3Lup
|
| 7 |
-
yg4NJVpkJnqdbmBhiJ84Wo5szx/aFS2JKuj2mN5OPjb/FnIBc3LugJFUlOIJcNBY
|
| 8 |
-
v/EgPYyilPNw8IxFLKQ67pn40XvCxL5oCDV6r0PZDbBCWUjb6/dJk8B0zpcrE+C+
|
| 9 |
-
1afYBBloK5DpnuHfZNy3JExb4yP/fD8vHXa+LV26zIUO6/8GvzfCoLMAPYPhTOGH
|
| 10 |
-
L81ew0sVJfrhbhYkZE8DI1Ui2zF+fTqLrq49Ovlbu/K0fQFDfLdO/b9NGo8TyBUU
|
| 11 |
-
r0SAs/Ibt4KdZsvQo9weF5AEGYvVrqMrdUcPk277t4EZ8XpjWsF1laV6//botqdq
|
| 12 |
-
4O5PIQecGLefYKYSyChgEt1W47yOdddIMec4GB3AYYlWmVYLnMmBvUzW1U9M4/v5
|
| 13 |
-
rimWcyJuUB9QCoO9cOEnt+wnnLsqkyn6m/zI0szm6lhEppu0gT6sfNQ2otHvfzut
|
| 14 |
-
Pw4NeNWPPLJo5RLQmVioVBv7ES7Ca/Qc6w+rMz3bbGWkX5qgfJDIDlnrcmHqT1RV
|
| 15 |
-
KZcRT6VWR4ViwkNqbPwx5etAoPUHD4a+O0+ltEv7TWeSpfKevW3Tuj/mHeGVjW8C
|
| 16 |
-
AwEAAaNTMFEwHQYDVR0OBBYEFL1UbRjNnD++k57s9G8TJ/Vin4KTMB8GA1UdIwQY
|
| 17 |
-
MBaAFL1UbRjNnD++k57s9G8TJ/Vin4KTMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZI
|
| 18 |
-
hvcNAQELBQADggIBAK0y/nX+1zonJFGASnk7b9oD/Fg/9PuGWjZSklDIQwa7mldg
|
| 19 |
-
wfmvPMmi6/CmJTPOSkauGH6rk+APAs1sJnDVwOXUmyfJaXHYrXHShtg/k1/awLZx
|
| 20 |
-
1wisZghzpPhDdRv5hWxe8ACCvstSlgNCTwRnl1Ml7W5LsLWUoRNvuG3BvXaxz2+g
|
| 21 |
-
CDTKlCmZOcnItuLRhM8DkNA3XwYNCPA5e0YeMBXAB6BRemWLcqeqgs/W6b/gg6Hv
|
| 22 |
-
7VcuLbVuAQtMygcOi+kWzHa5wkY2zfE7XktGMCPqojlycEZGUtRR8DX5pgh48e71
|
| 23 |
-
ESsJDfmmpjQfm6ufyirbqb9q0tNRlo4EEICuelxU+TwrQLiIiaojCZ3VZJE4IOrK
|
| 24 |
-
aZHs0vLeDZcsXnwODTixv0km//g7vGKEA9GE6CBNSN6rKE36+YNlbuv8f0quJ9QV
|
| 25 |
-
ZRBz9Ut0E23ooEWGSWAdTZUblpUZ+C77T7bF3Q3dZ8yZp79cs0UH52o+CP81EVqe
|
| 26 |
-
8rj1ZRG3IRimoDT70o0EViGmPo8A/CEhr74Lzrw52X2hXoAz8k9HZyUB5Vn2aYrD
|
| 27 |
-
1gbJ51WXt38RpWY99I7aW4MK4Fe4WCOIMUxej6SBAF0QOXkxeTFu8DSDCIsF8uF+
|
| 28 |
-
8GOmerrUU0lxYd4bgwc3wdOjXvR8U/FEHKfulQ8um7acUze+RKqSAMKS4nQQ
|
| 29 |
-
-----END CERTIFICATE-----
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
data/test_db
DELETED
|
Binary file (16.4 kB)
|
|
|
images/screenshot.png
DELETED
Git LFS Details
|
kbdocs/NITDAA_Base_Insurance_RAG_KB_2026.txt
DELETED
|
@@ -1,1520 +0,0 @@
|
|
| 1 |
-
################################################################################
|
| 2 |
-
# NITDAA BASE HEALTH INSURANCE PROGRAM — RAG KNOWLEDGE BASE
|
| 3 |
-
# (Base Policy Only — STUP and Worldwide Coverage Removed)
|
| 4 |
-
################################################################################
|
| 5 |
-
# Version : 3.1 (2026-06-09)
|
| 6 |
-
# Plan Scope : Base Policy Only (Rs. 3 Lakhs and Rs. 5 Lakhs)
|
| 7 |
-
# Removed : Super Top-Up (STUP) insurance details
|
| 8 |
-
# Worldwide Critical Illness coverage details
|
| 9 |
-
# Text Fixes : IITMAA->NITDAA | IIT->NIT | IITM->NITD
|
| 10 |
-
# Madras->Durgapur | Chennai->Durgapur
|
| 11 |
-
# Indian Institute of Technology->National Institute of Technology
|
| 12 |
-
# Insurer : Aditya Birla Health Insurance Co. Ltd. (ABHI)
|
| 13 |
-
# Product UIN : ADIHLGP22190V032122 (Group Activ Health)
|
| 14 |
-
# Broker : Zopper Insurance Brokers Private Limited
|
| 15 |
-
# Master Holder : NIT Durgapur Alumni Association (NITDAA)
|
| 16 |
-
# Total Chunks : 33
|
| 17 |
-
# Optimized for : ChromaDB (VectorDB) | KuzuDB (GraphDB) | BM25 keyword search
|
| 18 |
-
################################################################################
|
| 19 |
-
# CHUNK FORMAT
|
| 20 |
-
# [CHUNK]
|
| 21 |
-
# id : globally unique identifier
|
| 22 |
-
# section : top-level section name
|
| 23 |
-
# subsection : sub-level section name
|
| 24 |
-
# topic_tags : BM25 keyword-rich comma-separated terms
|
| 25 |
-
# entities : pipe-separated Entity_Type:Entity_Name for KuzuDB nodes
|
| 26 |
-
# relationships : semicolon-separated subject|predicate|object for KuzuDB edges
|
| 27 |
-
# text : self-contained, descriptive, bulleted content for embedding
|
| 28 |
-
# [/CHUNK]
|
| 29 |
-
################################################################################
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
[CHUNK]
|
| 33 |
-
id : OVERVIEW_001
|
| 34 |
-
section : Plan Overview
|
| 35 |
-
subsection : Program Introduction and Key Parties
|
| 36 |
-
topic_tags : NITDAA, NIT Durgapur Alumni Association, health insurance, group policy, alumni, base plan, overview, welfare initiative, master policy, Aditya Birla, Zopper, Solvy Tech, floater, Group Activ Health, ADIHLGP22190V032122
|
| 37 |
-
entities : Organization:NITDAA|Organization:NIT_Durgapur_Alumni_Association|Plan:NITDAA_Base_Health_Insurance|Insurer:Aditya_Birla_Health_Insurance|Broker:Zopper_Insurance_Brokers|Tech_Partner:Solvy_Tech_Solutions|Policy:Group_Activ_Health
|
| 38 |
-
relationships : NITDAA|administers|NITDAA_Base_Health_Insurance;Aditya_Birla_Health_Insurance|underwrites|NITDAA_Base_Health_Insurance;Zopper_Insurance_Brokers|brokers|NITDAA_Base_Health_Insurance;NIT_Durgapur|is_master_policy_holder|NITDAA_Base_Health_Insurance
|
| 39 |
-
text :
|
| 40 |
-
NITDAA BASE HEALTH INSURANCE PROGRAM — OVERVIEW
|
| 41 |
-
|
| 42 |
-
WHAT IT IS:
|
| 43 |
-
- An exclusive group health insurance plan for NIT Durgapur alumni (NITDAA members) and
|
| 44 |
-
their eligible family members
|
| 45 |
-
- This is a welfare initiative; NITDAA and its representatives have no personal, financial,
|
| 46 |
-
or commercial interest in promoting this policy
|
| 47 |
-
- Terms are exclusive to NITD alumni — NOT available in the retail/open market
|
| 48 |
-
|
| 49 |
-
KEY PARTIES:
|
| 50 |
-
- Master Policyholder : NIT Durgapur (Institution) / NITDAA
|
| 51 |
-
- Insurer : Aditya Birla Health Insurance Co. Ltd. (ABHI)
|
| 52 |
-
- Product : Group Activ Health | UIN: ADIHLGP22190V032122
|
| 53 |
-
- Broker : Zopper Insurance Brokers Private Limited
|
| 54 |
-
- Technology Partner : Solvy Tech Solutions Private Limited
|
| 55 |
-
- Claim Servicing : In-house by ABHI (no separate TPA)
|
| 56 |
-
- Policy Type : Family Floater | Tenure: 1 Year (annual renewal)
|
| 57 |
-
- Sum Insured Options : Rs. 3 Lakhs or Rs. 5 Lakhs
|
| 58 |
-
|
| 59 |
-
DISCLAIMER: NIT Durgapur (Master Policyholder) is NOT responsible for claim settlement.
|
| 60 |
-
All claims are settled exclusively by Aditya Birla Health Insurance Co. Ltd.
|
| 61 |
-
|
| 62 |
-
ENROLLMENT WINDOW (2026):
|
| 63 |
-
- Enrollment Opens : 08 June 2026
|
| 64 |
-
- Payment Gateway : 10 June 2026 (payment processing begins)
|
| 65 |
-
- Enrollment Closes : 30 June 2026
|
| 66 |
-
|
| 67 |
-
PROGRAM SCALE:
|
| 68 |
-
- 3,000+ lives insured under Base policy
|
| 69 |
-
- Common Master Agreement across 6 NITs:
|
| 70 |
-
Calicut, Durgapur, Jamshedpur, Rourkela, Surathkal, Warangal
|
| 71 |
-
- Claim Settlement Ratio of Aditya Birla Health Insurance: 98%
|
| 72 |
-
|
| 73 |
-
KEY ADVANTAGES OVER RETAIL INDIVIDUAL POLICIES:
|
| 74 |
-
- No medical tests required at enrollment
|
| 75 |
-
- No negative list — members with ALL pre-existing conditions (PEDs) allowed to enroll
|
| 76 |
-
- Parents and parents-in-law can be covered (retail typically denies older members)
|
| 77 |
-
- Lifelong renewability once enrolled before 85 years
|
| 78 |
-
- Aggregate group buying power — better terms than retail
|
| 79 |
-
- Protection against claim rejection on flimsy grounds
|
| 80 |
-
- Pan-India NITD Champions network for emergency support
|
| 81 |
-
- Premiums eligible for Section 80D income tax deduction
|
| 82 |
-
- Completely digital end-to-end enrollment through NITDAA portal
|
| 83 |
-
- No registration fee charged by NITDAA on this group policy
|
| 84 |
-
[/CHUNK]
|
| 85 |
-
|
| 86 |
-
[CHUNK]
|
| 87 |
-
id : ELIGIBILITY_001
|
| 88 |
-
section : Eligibility
|
| 89 |
-
subsection : Family Members Who Can Be Covered
|
| 90 |
-
topic_tags : eligibility, who can be covered, family members, alumni, spouse, children, parents, parents-in-law, siblings not allowed, covered members, dependent children, proposer mandatory, three policy combinations, ASK policy
|
| 91 |
-
entities : Member_Type:Alumni|Member_Type:Spouse|Member_Type:Child_Max4|Member_Type:Parents_Max2|Member_Type:ParentsInLaw_Max2|Rule:Alumni_Must_Be_Proposer|Combo:ASK|Combo:Parents|Combo:Parents_in_Law
|
| 92 |
-
relationships : Alumni|is_mandatory_proposer|Policy;Alumni|can_add|Spouse;Alumni|can_add|Up_to_4_Children;Alumni|can_add|Up_to_2_Parents;Alumni|can_add|Up_to_2_Parents_in_Law;Siblings|NOT_eligible|Policy;Alumni_Self|must_enroll_before|Parents_or_InLaws
|
| 93 |
-
text :
|
| 94 |
-
WHO CAN BE COVERED — NITDAA BASE HEALTH INSURANCE
|
| 95 |
-
|
| 96 |
-
ELIGIBLE FAMILY MEMBERS (maximum per family):
|
| 97 |
-
- Alumni (NITD) : 1 — Mandatory proposer/primary policyholder
|
| 98 |
-
- Spouse : 1 — Lawfully wedded
|
| 99 |
-
- Dependent Children : Up to 4
|
| 100 |
-
NEW MEMBERS' children : Age Day 1 to 25 years (entry and exit at 26)
|
| 101 |
-
RENEWAL MEMBERS' children : If already above 25 and enrolled before turning 25,
|
| 102 |
-
coverage continues until age 30
|
| 103 |
-
- Parents : Up to 2 — Both parents of alumni
|
| 104 |
-
- Parents-in-Law : Up to 2 — Both parents of spouse
|
| 105 |
-
|
| 106 |
-
MANDATORY RULE:
|
| 107 |
-
- Alumni MUST be the proposer; alumni must enroll self BEFORE adding parents or parents-in-law
|
| 108 |
-
- Can take only a policy for self, or self+spouse+kids, before adding parents/in-laws
|
| 109 |
-
|
| 110 |
-
NOT ELIGIBLE:
|
| 111 |
-
- Siblings (never eligible under any circumstance)
|
| 112 |
-
- Children above 25 years — for NEW members/new enrollments only
|
| 113 |
-
(Renewal members whose children were already enrolled may continue until age 30)
|
| 114 |
-
- Friends, relatives beyond the eligible categories
|
| 115 |
-
- Members not connected to NITD alumni
|
| 116 |
-
|
| 117 |
-
THREE INDEPENDENT POLICY COMBINATIONS (each has its own separate Sum Insured):
|
| 118 |
-
1. Alumni + Spouse + Children (ASK Policy)
|
| 119 |
-
2. Parents (separate floater policy)
|
| 120 |
-
3. Parents-in-Law (separate floater policy)
|
| 121 |
-
|
| 122 |
-
ADDING MEMBERS AT RENEWAL:
|
| 123 |
-
- Spouse and children can be added during renewal window via Endorsement
|
| 124 |
-
- Newly added members: fresh 1-year PED waiting period applies
|
| 125 |
-
- Existing members at renewal: ZERO waiting period
|
| 126 |
-
|
| 127 |
-
PREMIUM RATE RULE:
|
| 128 |
-
- Rate determined by age of the OLDEST member in the family unit
|
| 129 |
-
- If both spouses are NITD alumni, do NOT use younger spouse as proposer to reduce rate
|
| 130 |
-
(age of oldest member governs the slab regardless)
|
| 131 |
-
[/CHUNK]
|
| 132 |
-
|
| 133 |
-
[CHUNK]
|
| 134 |
-
id : ELIGIBILITY_002
|
| 135 |
-
section : Eligibility
|
| 136 |
-
subsection : Entry and Exit Age Criteria
|
| 137 |
-
topic_tags : entry age, exit age, 85 years, lifelong renewability, child age 25, child age 30 renewal, parent age 41, alumni age 18, after 85 renewal, age limit, 26 exit, 30 renewal child, age criteria, new member child 25, renewal member child 30, age policy children
|
| 138 |
-
entities : Age_Criteria:Alumni_Spouse_18to85|Age_Criteria:Child_NewMember_Day1to25|Age_Criteria:Child_RenewalMember_26to30|Age_Criteria:Parent_41to85|Exit:Child_NewMember_26|Exit:Child_RenewalMember_30|Exit:Alumni_Spouse_Lifelong|Exit:Parent_Lifelong
|
| 139 |
-
relationships : Alumni_Spouse|entry_age_min|18;Alumni_Spouse|entry_age_max|85;Child_New|entry_age_min|Day1;Child_New|entry_age_max|25;Child_New|exit_at|26;Child_Renewal_already_enrolled|exit_at|30;Parent_ParentInLaw|entry_age_min|41;Parent_ParentInLaw|entry_age_max|85;Alumni_Spouse|exit|Lifelong_if_enrolled_before_85
|
| 140 |
-
text :
|
| 141 |
-
ENTRY AND EXIT AGE CRITERIA — NITDAA BASE HEALTH INSURANCE
|
| 142 |
-
|
| 143 |
-
ENTRY AGE:
|
| 144 |
-
Member Entry Age Range
|
| 145 |
-
-----------------------------------------------
|
| 146 |
-
Alumni & Spouse 18 years to 85 years
|
| 147 |
-
Dependent Children From Day 1 (newborn) to 25 years
|
| 148 |
-
Parents & Parents-in-Law 41 years to 85 years
|
| 149 |
-
|
| 150 |
-
EXIT AGE:
|
| 151 |
-
Member Exit Age
|
| 152 |
-
-----------------------------------------------
|
| 153 |
-
Alumni & Spouse Lifelong Renewability*
|
| 154 |
-
Dependent Children NEW MEMBER enrollment: exits at 26 years
|
| 155 |
-
RENEWAL MEMBER (already enrolled before 25): continues to 30 years
|
| 156 |
-
Parents & Parents-in-Law Lifelong Renewability*
|
| 157 |
-
|
| 158 |
-
*LIFELONG RENEWABILITY RULE:
|
| 159 |
-
- 85 years is ONLY the entry criteria, NOT a renewal exit criterion
|
| 160 |
-
- Once enrolled before age 85, the member can continue renewing INDEFINITELY
|
| 161 |
-
as long as the NITDAA program continues with the insurer
|
| 162 |
-
- Applies to alumni, spouse, parents, and parents-in-law
|
| 163 |
-
|
| 164 |
-
PREMIUM SLAB FOR 85+ MEMBERS:
|
| 165 |
-
- Costs are standard for members above 85 (not individually variable)
|
| 166 |
-
- Slab cost may change year-over-year based on group's overall claim ratio
|
| 167 |
-
|
| 168 |
-
AGE CALCULATION BASIS:
|
| 169 |
-
- Age = Completed age as on the policy issuance date (typically in July)
|
| 170 |
-
[/CHUNK]
|
| 171 |
-
|
| 172 |
-
[CHUNK]
|
| 173 |
-
id : ELIGIBILITY_003
|
| 174 |
-
section : Eligibility
|
| 175 |
-
subsection : NRI Alumni — Enrollment and Coverage Rules
|
| 176 |
-
topic_tags : NRI, non-resident Indian, overseas, foreign citizen, India only treatment, Indian mobile number, WhatsApp, diagnosis abroad, UAE, international number, NRI alumni enrollment, treatment within India, claims outside India not admissible
|
| 177 |
-
entities : Member_Type:NRI_Alumni|Rule:India_Only_Claims|Requirement:Indian_Mobile_Number|Alternative:International_WhatsApp_Number
|
| 178 |
-
relationships : NRI_Alumni|can_enroll|Yes;Policy|jurisdiction|India_Only;Claim|admissible_for|Treatment_within_India;Claim|NOT_admissible_for|Treatment_outside_India;Indian_Mobile_Number|required_for|Policy_Issuance
|
| 179 |
-
text :
|
| 180 |
-
NRI ALUMNI — ENROLLMENT AND COVERAGE RULES
|
| 181 |
-
|
| 182 |
-
ELIGIBILITY:
|
| 183 |
-
- NRI alumni (including foreign citizens) are eligible to enroll in this plan
|
| 184 |
-
- Alumni with foreign citizenship can also enroll self and cover parents with Indian citizenship
|
| 185 |
-
- Alumni must enroll themselves FIRST before adding parents or in-laws
|
| 186 |
-
|
| 187 |
-
COVERAGE SCOPE FOR NRI:
|
| 188 |
-
- This policy covers ONLY hospitalizations and treatments taken WITHIN INDIA
|
| 189 |
-
- Claims for any treatment availed OUTSIDE INDIA are NOT admissible
|
| 190 |
-
- A condition diagnosed outside India IS covered if treatment/hospitalization is sought within India
|
| 191 |
-
|
| 192 |
-
ENROLLMENT REQUIREMENTS FOR NRI:
|
| 193 |
-
- An Indian mobile number is required for policy issuance
|
| 194 |
-
- If the alumni does not have an Indian number:
|
| 195 |
-
Option 1: Use a family member's Indian mobile number
|
| 196 |
-
Option 2: Register your international number as WhatsApp number during enrollment journey
|
| 197 |
-
|
| 198 |
-
KEY Q&A FOR NRI ALUMNI:
|
| 199 |
-
Q: I am an NRI. Can I buy the Base insurance policy for myself and parents?
|
| 200 |
-
A: Yes. An Indian mobile number (yours or a family member's) is required for policy issuance.
|
| 201 |
-
Coverage is valid ONLY for treatments availed within India.
|
| 202 |
-
Claims for treatment taken outside India are NOT admissible.
|
| 203 |
-
|
| 204 |
-
Q: I have global employer coverage. I am 58, retiring in 2 years. Should I enroll now?
|
| 205 |
-
A: Yes. Enrolling now means by next year's renewal, PED waiting period will be waived.
|
| 206 |
-
|
| 207 |
-
Q: I am diagnosed outside India. Can I claim for treatment in India?
|
| 208 |
-
A: Yes. If treatment/hospitalization is taken within India, the claim is fully admissible.
|
| 209 |
-
[/CHUNK]
|
| 210 |
-
|
| 211 |
-
[CHUNK]
|
| 212 |
-
id : SUM_INSURED_001
|
| 213 |
-
section : Sum Insured
|
| 214 |
-
subsection : Options, Floater Structure, and Policy Combinations
|
| 215 |
-
topic_tags : sum insured, 3 lakhs, 5 lakhs, floater, policy combination, independent SI, ASK policy, parents policy, in-laws policy, sub-limit no capping, increase SI, decrease SI, multi-year not available, claim limit per year
|
| 216 |
-
entities : SI_Option:3_Lakhs|SI_Option:5_Lakhs|Cover_Type:Family_Floater|Combo:ASK_Alumni_Spouse_Kids|Combo:Parents|Combo:Parents_in_Law
|
| 217 |
-
relationships : Base_Plan|SI_options|3L_and_5L;Base_Plan|cover_type|Family_Floater;ASK_Combo|independent_SI_from|Parents_Combo;Sub_limits|apply|No_Capping;SI_Increase|subject_to|Insurer_Approval_at_Renewal;Multi_Year_Policy|available|No
|
| 218 |
-
text :
|
| 219 |
-
SUM INSURED OPTIONS — NITDAA BASE HEALTH INSURANCE
|
| 220 |
-
|
| 221 |
-
AVAILABLE SUM INSURED (Base Plan):
|
| 222 |
-
- Option 1 : Rs. 3 Lakhs (Floater basis)
|
| 223 |
-
- Option 2 : Rs. 5 Lakhs (Floater basis)
|
| 224 |
-
|
| 225 |
-
FLOATER STRUCTURE:
|
| 226 |
-
- Sum Insured is shared among all members in one policy combination per policy year
|
| 227 |
-
- Maximum payable per policy year = chosen Sum Insured
|
| 228 |
-
- Sub-limits or capping on ANY ailment/treatment: NONE (no capping applies)
|
| 229 |
-
|
| 230 |
-
THREE INDEPENDENT POLICY COMBINATIONS (each has its own Sum Insured):
|
| 231 |
-
Combo 1 : Alumni + Spouse + Children (ASK Policy)
|
| 232 |
-
Combo 2 : Parents (separate floater policy)
|
| 233 |
-
Combo 3 : Parents-in-Law (separate floater policy)
|
| 234 |
-
Example: If SI is Rs. 5L and you hold all 3 combos, each has independent Rs. 5L available
|
| 235 |
-
|
| 236 |
-
MULTIPLE CLAIMS IN ONE YEAR:
|
| 237 |
-
- No restriction on number of claims within a policy year
|
| 238 |
-
- Claims are payable up to the available sum insured for that combination
|
| 239 |
-
|
| 240 |
-
SUM INSURED MANAGEMENT:
|
| 241 |
-
- Increase at renewal : Subject to insurer approval (not guaranteed)
|
| 242 |
-
- Decrease at renewal : No restriction
|
| 243 |
-
- RECOMMENDATION : Take the HIGHEST affordable SI at FIRST enrollment
|
| 244 |
-
(If SI increase is disallowed next year, you'll be locked into lower cover)
|
| 245 |
-
- If SI increase is permitted: Fresh waiting period applies only to the incremental amount
|
| 246 |
-
- Multi-year policy : NOT available; policy is 1 year, renewed annually
|
| 247 |
-
[/CHUNK]
|
| 248 |
-
|
| 249 |
-
[CHUNK]
|
| 250 |
-
id : WAITING_001
|
| 251 |
-
section : Waiting Periods
|
| 252 |
-
subsection : New Member Waiting Periods — Three Types
|
| 253 |
-
topic_tags : waiting period, initial waiting 30 days, specific disease 12 months, PED 12 months, pre-existing disease, new member, accident exempt, no PED declaration, negative list, 12 month wait, Day 1 accident coverage
|
| 254 |
-
entities : Wait_Period:Initial_30Days|Wait_Period:Specific_Disease_12Months|Wait_Period:PED_12Months|Exception:Accident_Exempt_from_30Day|Rule:No_PED_Declaration|Rule:No_Negative_List
|
| 255 |
-
relationships : New_Member|subject_to|Initial_30Days_Wait;New_Member|subject_to|Specific_Disease_12Months_Wait;New_Member|subject_to|PED_12Months_Wait;Accident|exempt_from|Initial_30Days;Accident|exempt_from|Specific_Disease_Wait;PED|declaration_required|No
|
| 256 |
-
text :
|
| 257 |
-
WAITING PERIODS — NEW MEMBERS
|
| 258 |
-
|
| 259 |
-
THREE WAITING PERIODS FOR ALL NEW MEMBERS:
|
| 260 |
-
|
| 261 |
-
1. INITIAL WAITING PERIOD — 30 Days
|
| 262 |
-
- All illness-related claims within first 30 days from commencement: EXCLUDED
|
| 263 |
-
- EXCEPTION: Injury/Accident cases — covered from Day 1, no waiting period
|
| 264 |
-
- This waiting period is served ONCE; waived completely at renewal
|
| 265 |
-
|
| 266 |
-
2. SPECIFIC DISEASES WAITING PERIOD — 12 Months
|
| 267 |
-
- A defined list of conditions requires 12 months of continuous coverage before claims
|
| 268 |
-
- Complete disease list with body systems: see Section 5 chunks
|
| 269 |
-
- EXCEPTION: Accident-related claims for any listed condition: NOT subject to this wait
|
| 270 |
-
- Rule: If a specific disease is also a Pre-Existing Disease, the LONGER wait applies
|
| 271 |
-
(both are 12 months in this plan — they run concurrently)
|
| 272 |
-
|
| 273 |
-
3. PRE-EXISTING DISEASE (PED) WAITING PERIOD — 12 Months
|
| 274 |
-
- PED definition: Any condition diagnosed or treated within 36 months prior to policy start
|
| 275 |
-
- All PEDs covered AFTER 12 months of continuous coverage
|
| 276 |
-
- NO PEDs need to be declared at enrollment
|
| 277 |
-
- Members with ALL pre-existing conditions can enroll (no negative list)
|
| 278 |
-
- No medical tests required to verify PED status
|
| 279 |
-
- No documentation of health history required
|
| 280 |
-
|
| 281 |
-
IMPORTANT: PED waiting period applies ONLY to new members.
|
| 282 |
-
From Year 2 renewal onwards, zero waiting period for existing members.
|
| 283 |
-
[/CHUNK]
|
| 284 |
-
|
| 285 |
-
[CHUNK]
|
| 286 |
-
id : WAITING_002
|
| 287 |
-
section : Waiting Periods
|
| 288 |
-
subsection : Renewal Members — Zero Wait, Break Consequences, Portability
|
| 289 |
-
topic_tags : renewal waiting period, zero waiting, PED waiver, break in policy, lapse, re-entry, portability not possible, moratorium period, continuity benefit, no waiting renewal, early enrollment advised
|
| 290 |
-
entities : Rule:Zero_Wait_at_Renewal|Consequence:Break_Resets_All_Waits|Rule:No_Portability_Inward|Benefit:PED_Waiver_from_Year2
|
| 291 |
-
relationships : Renewal_Member|subject_to_wait|None;Renewal|waives|Initial_30Day_Wait;Renewal|waives|Specific_Disease_12Month_Wait;Renewal|waives|PED_12Month_Wait;Break_in_Policy|resets|All_Waiting_Periods;Portability_into_Plan|possible|No
|
| 292 |
-
text :
|
| 293 |
-
WAITING PERIODS — RENEWAL MEMBERS
|
| 294 |
-
|
| 295 |
-
FOR EXISTING RENEWAL MEMBERS:
|
| 296 |
-
- Zero waiting period of any kind from Year 2 onwards
|
| 297 |
-
- Initial 30-day wait: WAIVED
|
| 298 |
-
- Specific disease 12-month wait: WAIVED
|
| 299 |
-
- PED 12-month wait: WAIVED
|
| 300 |
-
- Full coverage from Day 1 of renewal
|
| 301 |
-
|
| 302 |
-
FOR MEMBERS NEWLY ADDED AT RENEWAL (e.g., adding spouse or child in Year 2):
|
| 303 |
-
- Newly added members = treated as new members
|
| 304 |
-
- Full 1-year PED waiting period applies to newly added members
|
| 305 |
-
- Existing members in the same policy retain their zero-wait renewal benefits
|
| 306 |
-
|
| 307 |
-
CONSEQUENCES OF BREAK IN POLICY (NON-RENEWAL):
|
| 308 |
-
- All waiting periods (30 days, 12-month specific diseases, 12-month PED) restart from scratch
|
| 309 |
-
- Cannot exit and rejoin while retaining waiting period credits
|
| 310 |
-
- Once you do not renew, ALL renewal benefits are permanently lost
|
| 311 |
-
- On re-joining, you are treated as a new member
|
| 312 |
-
- PORTABILITY FROM ANOTHER INSURER INTO THIS PLAN: NOT POSSIBLE
|
| 313 |
-
|
| 314 |
-
MIGRATION WITHIN ABHI (same insurer):
|
| 315 |
-
- Migration to another Aditya Birla product is possible
|
| 316 |
-
- Must apply for migration at least 30 days before renewal date
|
| 317 |
-
- All accrued continuity benefits transfer to the new ABHI product
|
| 318 |
-
|
| 319 |
-
RECOMMENDATION: Enroll now even if you do not immediately need cover.
|
| 320 |
-
The sooner you enroll, the sooner waiting periods are served and
|
| 321 |
-
PED waiver becomes available at next renewal.
|
| 322 |
-
[/CHUNK]
|
| 323 |
-
|
| 324 |
-
[CHUNK]
|
| 325 |
-
id : DISEASES_001
|
| 326 |
-
section : Specific Diseases — 12-Month Wait
|
| 327 |
-
subsection : Eye and ENT Conditions
|
| 328 |
-
topic_tags : specific diseases 12 months, eye, cataract surgery, glaucoma surgery, ENT, sinusitis, tonsillitis, tympanitis, deviated nasal septum, otitis media, adenoids, mastoiditis, cholesteatoma, named ailments, waiting period disease list
|
| 329 |
-
entities : Disease:Cataract|Disease:Glaucoma|Disease:Serous_Otitis_Media|Disease:Sinusitis|Disease:Rhinitis|Disease:Tonsillitis|Disease:Tympanitis|Disease:Deviated_Nasal_Septum|Disease:Otitis_Media|Disease:Adenoiditis|Disease:Mastoiditis|Disease:Cholesteatoma|System:Eye|System:Ear_Nose_Throat
|
| 330 |
-
relationships : Cataract|system|Eye;Cataract|wait_months|12;Cataract|surgery|Cataract_Surgery;Glaucoma|surgery|Glaucoma_Surgery;Sinusitis|system|ENT;Sinusitis|surgery|Sinus_Surgery;Tonsillitis|surgery|Tonsillectomy;Tympanitis|surgery|Tympanoplasty;Deviated_Nasal_Septum|surgery|DNS_Surgery;Otitis_Media|surgery|Treatment_for_Otitis_Media;Adenoiditis|surgery|Adenoidectomy;Mastoiditis|surgery|Mastoidectomy
|
| 331 |
-
text :
|
| 332 |
-
SPECIFIC DISEASES — 12-MONTH WAITING PERIOD (NEW MEMBERS)
|
| 333 |
-
Body System: EYE and EAR/NOSE/THROAT (ENT)
|
| 334 |
-
|
| 335 |
-
NOTE: Waiting periods do NOT apply to renewal members.
|
| 336 |
-
NOTE: Claims arising from ACCIDENTS are EXEMPT from this waiting period.
|
| 337 |
-
|
| 338 |
-
BODY SYSTEM: EYE
|
| 339 |
-
Illness | Treatment / Surgery
|
| 340 |
-
----------------------- | -------------------------
|
| 341 |
-
Cataract | Cataract Surgery
|
| 342 |
-
Glaucoma | Glaucoma Surgery
|
| 343 |
-
|
| 344 |
-
BODY SYSTEM: EAR, NOSE, THROAT (ENT)
|
| 345 |
-
Illness | Treatment / Surgery
|
| 346 |
-
------------------------- | -------------------------------------------------
|
| 347 |
-
Serous Otitis Media | (treatment covered after wait)
|
| 348 |
-
Sinusitis | Sinus Surgery
|
| 349 |
-
Rhinitis | Surgery for the Nose
|
| 350 |
-
Tonsillitis | Tonsillectomy
|
| 351 |
-
Tympanitis | Tympanoplasty
|
| 352 |
-
Deviated Nasal Septum | Surgery for Deviated Nasal Septum
|
| 353 |
-
Otitis Media | Surgery or Treatment for Otitis Media
|
| 354 |
-
Adenoiditis | Adenoidectomy
|
| 355 |
-
Mastoiditis | Mastoidectomy
|
| 356 |
-
Cholesteatoma | Resection of the Nasal Concha
|
| 357 |
-
[/CHUNK]
|
| 358 |
-
|
| 359 |
-
[CHUNK]
|
| 360 |
-
id : DISEASES_002
|
| 361 |
-
section : Specific Diseases — 12-Month Wait
|
| 362 |
-
subsection : Gynecology Conditions
|
| 363 |
-
topic_tags : specific diseases 12 months, gynecology, PCOD, polycystic ovarian disease, fibroids, endometriosis, uterine prolapse, DUB dysfunctional uterine bleeding, menorrhagia, breast lumps, pelvic inflammatory disease, cysts polyps, hysterectomy, myomectomy
|
| 364 |
-
entities : Disease:Cysts_Polyps_Female_Genito_Urinary|Disease:PCOD|Disease:Uterine_Prolapse|Disease:Fibroids|Disease:Breast_Lumps|Disease:DUB|Disease:Endometriosis|Disease:Menorrhagia|Disease:Pelvic_Inflammatory_Disease|System:Gynecology
|
| 365 |
-
relationships : PCOD|system|Gynecology;PCOD|wait_months|12;Cysts_Polyps|surgery|Dilatation_and_Curettage;PCOD|surgery|Myomectomy;Uterine_Prolapse|surgery|Uterine_Prolapse_Surgery;Fibroids|surgery|Hysterectomy_unless_malignancy;Menorrhagia|treatment|Any_Treatment_for_Menorrhagia
|
| 366 |
-
text :
|
| 367 |
-
SPECIFIC DISEASES — 12-MONTH WAITING PERIOD (NEW MEMBERS)
|
| 368 |
-
Body System: GYNECOLOGY
|
| 369 |
-
|
| 370 |
-
NOTE: Waiting periods do NOT apply to renewal members.
|
| 371 |
-
NOTE: Claims arising from ACCIDENTS are EXEMPT.
|
| 372 |
-
|
| 373 |
-
Illness | Treatment / Surgery
|
| 374 |
-
----------------------------------------------- | --------------------------------------------------
|
| 375 |
-
All Cysts & Polyps of female genito-urinary sys | Dilatation & Curettage
|
| 376 |
-
Polycystic Ovarian Disease (PCOD) | Myomectomy
|
| 377 |
-
Uterine Prolapse | Uterine Prolapsed Surgery
|
| 378 |
-
Fibroids (Fibromyoma) | Hysterectomy unless necessitated by malignancy
|
| 379 |
-
Breast Lumps | Any treatment for Menorrhagia
|
| 380 |
-
Prolapse of the Uterus | —
|
| 381 |
-
Dysfunctional Uterine Bleeding (DUB) | —
|
| 382 |
-
Endometriosis | —
|
| 383 |
-
Menorrhagia | —
|
| 384 |
-
Pelvic Inflammatory Disease | —
|
| 385 |
-
[/CHUNK]
|
| 386 |
-
|
| 387 |
-
[CHUNK]
|
| 388 |
-
id : DISEASES_003
|
| 389 |
-
section : Specific Diseases — 12-Month Wait
|
| 390 |
-
subsection : Orthopedic, Rheumatological, and Gastroenterology Conditions
|
| 391 |
-
topic_tags : specific diseases 12 months, orthopedic, gout, rheumatoid arthritis, osteoarthritis, osteoporosis, disc prolapse, spondylopathies, joint replacement, gastroenterology, gall bladder, bile duct, cholecystitis, pancreatitis, piles hemorrhoids, fistula, GERD, ulcers, cirrhosis
|
| 392 |
-
entities : Disease:Gout|Disease:Rheumatoid_Arthritis|Disease:Non_Infective_Arthritis|Disease:Osteoarthritis|Disease:Osteoporosis|Disease:Disc_Prolapse|Disease:Spondylopathies|Disease:Gall_Bladder_Stone|Disease:Cholecystitis|Disease:Pancreatitis|Disease:Fissure_Fistula_Piles|Disease:GERD|Disease:Gastric_Ulcers|Disease:Cirrhosis|System:Orthopedic|System:Gastroenterology
|
| 393 |
-
relationships : Gout|system|Orthopedic;Gout|wait_months|12;Gout|surgery|Joint_Replacement;Disc_Prolapse|surgery|Surgery_Intervertebral_Disc;Gall_Bladder_Stone|system|Gastroenterology;Gall_Bladder_Stone|surgery|Cholecystectomy;Gastric_Ulcers|surgery|Surgery_for_Ulcers
|
| 394 |
-
text :
|
| 395 |
-
SPECIFIC DISEASES — 12-MONTH WAITING PERIOD (NEW MEMBERS)
|
| 396 |
-
Body Systems: ORTHOPEDIC / RHEUMATOLOGICAL and GASTROENTEROLOGY
|
| 397 |
-
|
| 398 |
-
NOTE: Waiting periods do NOT apply to renewal members.
|
| 399 |
-
NOTE: Claims arising from ACCIDENTS are EXEMPT.
|
| 400 |
-
|
| 401 |
-
BODY SYSTEM: ORTHOPEDIC / RHEUMATOLOGICAL
|
| 402 |
-
Illness | Treatment / Surgery
|
| 403 |
-
------------------------------------ | -----------------------------------------------
|
| 404 |
-
Gout | Joint Replacement Surgery
|
| 405 |
-
Rheumatism | Surgery for Prolapse of Intervertebral Disc
|
| 406 |
-
Rheumatoid Arthritis | —
|
| 407 |
-
Non-infective Arthritis | —
|
| 408 |
-
Osteoarthritis | —
|
| 409 |
-
Osteoporosis | —
|
| 410 |
-
Prolapse of the Intervertebral Disc | —
|
| 411 |
-
Spondylopathies | —
|
| 412 |
-
|
| 413 |
-
BODY SYSTEM: GASTROENTEROLOGY (Alimentary Canal and Related Organs)
|
| 414 |
-
Illness | Treatment / Surgery
|
| 415 |
-
------------------------------------------------------------ | ------------------------------------
|
| 416 |
-
Stone in Gall Bladder and Bile Duct | Cholecystectomy / Surgery Gall Bladder
|
| 417 |
-
Cholecystitis | Surgery for Ulcers (Gastric/Duodenal)
|
| 418 |
-
Pancreatitis | —
|
| 419 |
-
Fissure, Fistula in Ano, Hemorrhoids (Piles), | —
|
| 420 |
-
Pilonidal Sinus, Ano-rectal & Perianal Abscess |
|
| 421 |
-
Rectal Prolapse | —
|
| 422 |
-
Gastric or Duodenal Erosions/Ulcers + Gastritis/Duodenitis | —
|
| 423 |
-
Gastro Esophageal Reflux Disease (GERD) | —
|
| 424 |
-
Cirrhosis | —
|
| 425 |
-
[/CHUNK]
|
| 426 |
-
|
| 427 |
-
[CHUNK]
|
| 428 |
-
id : DISEASES_004
|
| 429 |
-
section : Specific Diseases — 12-Month Wait
|
| 430 |
-
subsection : Urogenital, Skin, and General Surgery Conditions
|
| 431 |
-
topic_tags : specific diseases 12 months, urogenital, kidney stones, ureter, bladder, prostate BHP BEP, hernia, hydrocele, varicocele, spermatocoele, skin tumour, skin diseases, varicose veins, varicose ulcers, general surgery, cyst, nodule, polyp, benign
|
| 432 |
-
entities : Disease:Urinary_Stones|Disease:BHP_BEP|Disease:Hernia|Disease:Hydrocele|Disease:Varicocoele|Disease:Skin_Tumour|Disease:All_Skin_Diseases|Disease:Varicose_Veins|System:Urogenital|System:Skin|System:General_Surgery
|
| 433 |
-
relationships : Urinary_Stones|system|Urogenital;BHP_BEP|surgery|Prostate_Surgery;Hernia|surgery|Surgery_for_Hernia;Hydrocele|surgery|Surgery_for_Hydrocele;Varicocoele|surgery|Surgery_for_Varicocoele;Skin_Tumour|surgery|Removal_unless_malignant;Varicose_Veins|surgery|Surgery_Varicose_Veins
|
| 434 |
-
text :
|
| 435 |
-
SPECIFIC DISEASES — 12-MONTH WAITING PERIOD (NEW MEMBERS)
|
| 436 |
-
Body Systems: UROGENITAL, SKIN, GENERAL SURGERY
|
| 437 |
-
|
| 438 |
-
NOTE: Waiting periods do NOT apply to renewal members.
|
| 439 |
-
NOTE: Claims arising from ACCIDENTS are EXEMPT.
|
| 440 |
-
|
| 441 |
-
BODY SYSTEM: UROGENITAL (Urinary and Reproductive System)
|
| 442 |
-
Illness | Treatment / Surgery
|
| 443 |
-
----------------------------------------------------------- | -----------------------------------------------
|
| 444 |
-
Stones in Urinary System (Kidney, Ureter, Urinary Bladder) | Prostate Surgery
|
| 445 |
-
Benign Hypertrophy/Enlargement of Prostate (BHP/BEP) | Surgery for Hydrocele, Rectocele and Hernia
|
| 446 |
-
Hernia, Hydrocele | Surgery for Hydrocele, Rectocele and Hernia
|
| 447 |
-
Varicocoele / Spermatocoele | Surgery for Varicocoele / Spermatocoele
|
| 448 |
-
|
| 449 |
-
BODY SYSTEM: SKIN
|
| 450 |
-
Illness | Treatment / Surgery
|
| 451 |
-
------------------------------ | -----------------------------------
|
| 452 |
-
Skin Tumour (unless malignant) | Removal of such tumour unless malignant
|
| 453 |
-
All Skin Diseases | —
|
| 454 |
-
|
| 455 |
-
BODY SYSTEM: GENERAL SURGERY
|
| 456 |
-
Illness | Treatment / Surgery
|
| 457 |
-
---------------------------------------------------------- | -----------------------------------------------
|
| 458 |
-
Any swelling, tumour, cyst, nodule, ulcer, polyp anywhere | Surgery for cyst, tumour, nodule, polyp
|
| 459 |
-
in the body (unless malignant) | unless malignant
|
| 460 |
-
Varicose Veins, Varicose Ulcers | Surgery for Varicose Veins and Varicose Ulcers
|
| 461 |
-
[/CHUNK]
|
| 462 |
-
|
| 463 |
-
[CHUNK]
|
| 464 |
-
id : BENEFITS_001
|
| 465 |
-
section : Covered Benefits
|
| 466 |
-
subsection : Core Coverage Summary — All Key Features
|
| 467 |
-
topic_tags : benefits, room rent single private AC, pre-hospitalization 60 days, post-hospitalization 90 days, ambulance 10000, day care all covered, no sub-limit no capping, modern treatment 100 percent, AYUSH 100 percent, co-payment zero no co-pay, lasik surgery 6.5, internal congenital, external congenital life threatening, domiciliary 3 days, organ donor, COVID covered, no consumables, no maternity, no OPD
|
| 468 |
-
entities : Benefit:Room_Rent_Single_Private_AC|Benefit:PreHosp_60Days|Benefit:PostHosp_90Days|Benefit:Ambulance_10000|Benefit:DayCare_All|Benefit:No_Sub_Limit|Benefit:Modern_Treatment_100pct|Benefit:AYUSH_100pct|Benefit:Zero_CoPay|Benefit:Lasik_6point5|Benefit:Internal_Congenital|Benefit:Domiciliary_Min3Days|Benefit:Organ_Donor|Benefit:COVID
|
| 469 |
-
relationships : Base_Plan|room_entitlement|Single_Private_AC;Base_Plan|pre_hosp|60_days;Base_Plan|post_hosp|90_days;Base_Plan|ambulance_max|Rs_10000;Base_Plan|sub_limit|None;Base_Plan|modern_treatment|100pct_of_SI;Base_Plan|AYUSH|100pct_of_SI;Base_Plan|copay|Zero
|
| 470 |
-
text :
|
| 471 |
-
COVERED BENEFITS — NITDAA BASE HEALTH INSURANCE (SUMMARY TABLE)
|
| 472 |
-
|
| 473 |
-
Benefit | Coverage Detail
|
| 474 |
-
---------------------------------|------------------------------------------------------------------
|
| 475 |
-
Day Care Treatment | ALL day care procedures covered; no restricted list
|
| 476 |
-
In-patient Hospitalization | Minimum 24 consecutive hours; medically necessary
|
| 477 |
-
Domiciliary Hospitalization | Covered; minimum 3 consecutive days required
|
| 478 |
-
Room Rent Entitlement | Single Private AC Room (base entitlement)
|
| 479 |
-
ICU Charges | Covered; NOT subject to proportionate deduction
|
| 480 |
-
Pre-Hospitalization | 60 days prior to admission (same illness)
|
| 481 |
-
Post-Hospitalization | 90 days after discharge (same illness)
|
| 482 |
-
Emergency Ambulance (Road) | Maximum Rs. 10,000 per claim
|
| 483 |
-
Sub-Limits on Ailments | NO CAPPING — no sub-limits on any ailment or treatment
|
| 484 |
-
Modern Treatments | Covered up to 100% of Sum Insured (full list in Section 7)
|
| 485 |
-
AYUSH Treatment (In-patient) | Covered up to 100% of Sum Insured
|
| 486 |
-
Co-Payment | NIL — Zero co-pay
|
| 487 |
-
Lasik Surgery | Covered if refractive power +/- 6.5 diopters or more
|
| 488 |
-
Internal Congenital Anomaly | Covered
|
| 489 |
-
External Congenital Anomaly | Covered ONLY in life-threatening cases
|
| 490 |
-
Organ Donor Expenses | Covered up to Sum Insured (Transplantation of Human Organs Act 1994)
|
| 491 |
-
COVID-19 Treatment | Covered
|
| 492 |
-
Consumables | NOT covered under Base plan
|
| 493 |
-
Maternity | NOT covered under Base plan
|
| 494 |
-
OPD Treatment (without hosp.) | NOT covered
|
| 495 |
-
|
| 496 |
-
ROOM RENT PROPORTIONATE DEDUCTION RULE:
|
| 497 |
-
If admitted to a room HIGHER than Single Private AC entitlement:
|
| 498 |
-
- Associated Medical Expenses (room, nursing, OT, doctor fees) subject to proportionate deduction
|
| 499 |
-
- Pharmacy, consumables, implants, diagnostics: NOT subject to proportionate deduction
|
| 500 |
-
- ICU charges: NEVER subject to proportionate deduction
|
| 501 |
-
[/CHUNK]
|
| 502 |
-
|
| 503 |
-
[CHUNK]
|
| 504 |
-
id : BENEFITS_002
|
| 505 |
-
section : Covered Benefits
|
| 506 |
-
subsection : Domiciliary Hospitalization — Conditions and Excluded Illnesses
|
| 507 |
-
topic_tags : domiciliary hospitalization, home treatment, 3 consecutive days, excluded from domiciliary, asthma, hypertension, diabetes, epilepsy, arthritis, gastroenteritis, psychiatric, bronchitis, tonsillitis
|
| 508 |
-
entities : Benefit:Domiciliary|Rule:Min_3_Days|Exclusion_Domiciliary:Asthma|Exclusion_Domiciliary:Hypertension|Exclusion_Domiciliary:Diabetes|Exclusion_Domiciliary:Epilepsy|Exclusion_Domiciliary:Arthritis|Exclusion_Domiciliary:Gastroenteritis|Exclusion_Domiciliary:Psychiatric
|
| 509 |
-
relationships : Domiciliary|minimum_duration|3_Consecutive_Days;Domiciliary|payment_from|Day_1_once_threshold_met;Domiciliary|excludes|Asthma;Domiciliary|excludes|Hypertension;Domiciliary|excludes|Diabetes;Domiciliary|excludes|Epilepsy;Domiciliary|excludes|Psychiatric_Disorders
|
| 510 |
-
text :
|
| 511 |
-
DOMICILIARY HOSPITALIZATION — COVERAGE AND RESTRICTIONS
|
| 512 |
-
|
| 513 |
-
ELIGIBILITY CONDITIONS (must meet at least one):
|
| 514 |
-
- Patient's condition does not allow transfer to hospital, OR
|
| 515 |
-
- Hospital bed unavailable
|
| 516 |
-
- Minimum duration: 3 CONSECUTIVE DAYS
|
| 517 |
-
- Payment from Day 1 once the 3-day threshold is met
|
| 518 |
-
- Pre-hospitalization (60 days) and Post-hospitalization (90 days) also payable
|
| 519 |
-
when domiciliary claim is accepted
|
| 520 |
-
|
| 521 |
-
CONDITIONS SPECIFICALLY EXCLUDED UNDER DOMICILIARY HOSPITALIZATION:
|
| 522 |
-
(These conditions require actual hospital admission — domiciliary claim NOT admissible)
|
| 523 |
-
- Asthma, bronchitis, tonsillitis, upper respiratory tract infections
|
| 524 |
-
- Laryngitis, pharyngitis, cough, cold, influenza
|
| 525 |
-
- Arthritis, gout, rheumatism
|
| 526 |
-
- Chronic nephritis and nephritic syndrome
|
| 527 |
-
- Diarrhea, all types of dysenteries, gastroenteritis
|
| 528 |
-
- Diabetes mellitus and insipidus
|
| 529 |
-
- Epilepsy
|
| 530 |
-
- Hypertension
|
| 531 |
-
- Psychiatric or psychosomatic disorders (all kinds)
|
| 532 |
-
- Pyrexia of unknown origin
|
| 533 |
-
[/CHUNK]
|
| 534 |
-
|
| 535 |
-
[CHUNK]
|
| 536 |
-
id : BENEFITS_003
|
| 537 |
-
section : Covered Benefits
|
| 538 |
-
subsection : Modern Treatments — Full List at 100% Sum Insured
|
| 539 |
-
topic_tags : modern treatment, robotic surgery, oral chemotherapy, immunotherapy monoclonal antibody, deep brain stimulation, HIFU high intensity focused ultrasound, balloon sinuplasty, intra vitreal injections, stereotactic radio surgery, bronchial thermoplasty, prostate vaporization green laser holmium, IONM intra operative neuro monitoring, stem cell therapy hematological, uterine artery embolization, 100 percent coverage
|
| 540 |
-
entities : Modern_Tx:Uterine_Artery_Embolization_HIFU|Modern_Tx:Balloon_Sinuplasty|Modern_Tx:Deep_Brain_Stimulation|Modern_Tx:Oral_Chemotherapy|Modern_Tx:Immunotherapy_Monoclonal|Modern_Tx:Intra_Vitreal|Modern_Tx:Robotic_Surgery|Modern_Tx:Stereotactic_Radio|Modern_Tx:Bronchial_Thermoplasty|Modern_Tx:Prostate_Vaporization|Modern_Tx:IONM|Modern_Tx:Stem_Cell_Hematological
|
| 541 |
-
relationships : All_Modern_Treatments|covered_at|100pct_of_Sum_Insured;Robotic_Surgery|is_modern_treatment|Yes;Stem_Cell_Therapy|limited_to|Hematological_Conditions
|
| 542 |
-
text :
|
| 543 |
-
MODERN TREATMENTS COVERED — 100% OF SUM INSURED
|
| 544 |
-
|
| 545 |
-
All 12 modern treatments below are covered up to 100% of the chosen Sum Insured.
|
| 546 |
-
No sub-limit applies.
|
| 547 |
-
|
| 548 |
-
1. Uterine Artery Embolization and HIFU (High Intensity Focused Ultrasound)
|
| 549 |
-
2. Balloon Sinuplasty
|
| 550 |
-
3. Deep Brain Stimulation
|
| 551 |
-
4. Oral Chemotherapy
|
| 552 |
-
5. Immunotherapy — Monoclonal Antibody (injection form only)
|
| 553 |
-
6. Intra Vitreal Injections
|
| 554 |
-
7. Robotic Surgery
|
| 555 |
-
8. Stereotactic Radio Surgeries
|
| 556 |
-
9. Bronchial Thermoplasty
|
| 557 |
-
10. Vaporization of Prostate (Green Laser treatment or Holmium Laser treatment)
|
| 558 |
-
11. IONM — Intra Operative Neuro Monitoring
|
| 559 |
-
12. Stem Cell Therapy: Hematological conditions ONLY
|
| 560 |
-
|
| 561 |
-
NOTE: Stem cell therapy is covered ONLY for hematological conditions.
|
| 562 |
-
Stem cell therapy for all other purposes is EXCLUDED.
|
| 563 |
-
[/CHUNK]
|
| 564 |
-
|
| 565 |
-
[CHUNK]
|
| 566 |
-
id : EXCLUSIONS_001
|
| 567 |
-
section : Exclusions
|
| 568 |
-
subsection : Standard, Behavioural, and Circumstantial Exclusions
|
| 569 |
-
topic_tags : exclusions, not covered, obesity surgery BMI criteria, cosmetic surgery, gender change, hazardous sports professional, breach of law criminal intent, alcohol drug abuse, sterility infertility IVF, maternity childbirth, unproven treatment, investigation only, rehabilitation, health hydro spa, suicide, war nuclear
|
| 570 |
-
entities : Excl:Investigation_Only|Excl:Rest_Cure|Excl:Obesity_Surgery|Excl:Gender_Change|Excl:Cosmetic_Surgery|Excl:Hazardous_Sports_Pro|Excl:Breach_of_Law|Excl:Alcohol_Drug|Excl:Unproven_Treatment|Excl:Sterility_Infertility_IVF|Excl:Maternity|Excl:Suicide|Excl:War_Nuclear_Terror
|
| 571 |
-
relationships : Policy|excludes|Investigation_Only;Policy|excludes|Cosmetic_Surgery_Non_Medical;Policy|excludes|Hazardous_Sports_Professional;Policy|excludes|Sterility_and_Infertility;Policy|excludes|Maternity;Policy|excludes|Suicide
|
| 572 |
-
text :
|
| 573 |
-
STANDARD AND BEHAVIOURAL EXCLUSIONS — NITDAA BASE HEALTH INSURANCE
|
| 574 |
-
|
| 575 |
-
STANDARD EXCLUSIONS (IRDAI mandated):
|
| 576 |
-
1. Investigation & Evaluation Only: Admissions primarily for diagnostics without active treatment
|
| 577 |
-
2. Rest Cure / Rehabilitation: Enforced bed rest; custodial care; palliative care
|
| 578 |
-
3. Obesity/Weight Control Surgery: EXCLUDED unless ALL four conditions met simultaneously:
|
| 579 |
-
- Doctor's advice + clinically supported protocols
|
| 580 |
-
- Patient 18+ years
|
| 581 |
-
- BMI >= 40, OR BMI >= 35 with severe co-morbidities (obesity cardiomyopathy, coronary
|
| 582 |
-
heart disease, severe sleep apnea, uncontrolled Type 2 Diabetes) after failure of
|
| 583 |
-
non-invasive methods
|
| 584 |
-
4. Gender Change Treatments: Any treatment to change body characteristics to opposite sex
|
| 585 |
-
5. Cosmetic/Plastic Surgery: EXCLUDED unless post-accident reconstruction, post-burns/cancer,
|
| 586 |
-
or medically necessary as certified by treating doctor
|
| 587 |
-
6. Hazardous/Adventure Sports (Professional): Para-jumping, rock climbing, mountaineering,
|
| 588 |
-
rafting, motor racing, horse racing, scuba diving, hand gliding, sky diving, deep-sea diving
|
| 589 |
-
7. Breach of Law with Criminal Intent
|
| 590 |
-
8. Alcohol, Drug, or Substance Abuse: Treatment for addiction and consequences
|
| 591 |
-
9. Health Hydros, Nature Cure Clinics, Spas, and similar establishments
|
| 592 |
-
10. Dietary Supplements (without prescription): Unless prescribed during hospitalization
|
| 593 |
-
11. Refractive Error below 7.5 diopters (Lasik covered if power >= 6.5D)
|
| 594 |
-
12. Unproven/Experimental Treatments: Lacking significant medical documentation
|
| 595 |
-
13. Sterility and Infertility: Contraception, sterilization, IVF, ZIFT, GIFT, ICSI,
|
| 596 |
-
gestational surrogacy, reversal of sterilization
|
| 597 |
-
14. Maternity Expenses: Childbirth (including complicated delivery, C-section), miscarriage
|
| 598 |
-
(unless accident), termination of pregnancy
|
| 599 |
-
EXCEPTION: Ectopic pregnancy complications covered under In-patient Hospitalization
|
| 600 |
-
|
| 601 |
-
BEHAVIOURAL EXCLUSIONS:
|
| 602 |
-
- Suicide or attempted suicide; wilfully self-inflicted injury
|
| 603 |
-
- Illegal acts committed by insured person
|
| 604 |
-
- Treatment for injury from alcohol, intoxicating substances, or non-prescribed drugs
|
| 605 |
-
|
| 606 |
-
CIRCUMSTANTIAL EXCLUSIONS:
|
| 607 |
-
- War, acts of war, nuclear/chemical/biological weapons, radioactive contamination
|
| 608 |
-
- Direct participation in terrorist acts
|
| 609 |
-
[/CHUNK]
|
| 610 |
-
|
| 611 |
-
[CHUNK]
|
| 612 |
-
id : EXCLUSIONS_002
|
| 613 |
-
section : Exclusions
|
| 614 |
-
subsection : Medical, Device, Treatment, and Geographical Exclusions
|
| 615 |
-
topic_tags : exclusions, OPD not covered, preventive vaccination, external congenital, stem cell excluded except hematological, dental implants, hearing aids, spectacles, contact lens, cochlear implant, CPAP, glucometer, nebulizer, prosthetics, RFQMR ECP EECP hyperbaric, cyber knife, femto laser, bioabsorbable stent, outside India geographical exclusion, treatment outside India excluded
|
| 616 |
-
entities : Excl:OPD_No_Hospitalization|Excl:Preventive_Vaccination|Excl:External_Congenital|Excl:Stem_Cell_Non_Hematological|Excl:Dental|Excl:Hearing_Aids|Excl:Spectacles_Contact_Lens|Excl:Cochlear_Implant|Excl:CPAP_Glucometer|Excl:RFQMR_ECP_EECP|Excl:Hyperbaric_Oxygen|Excl:Cyber_Knife|Excl:Bioabsorbable_Stent|Excl:Treatment_Outside_India
|
| 617 |
-
relationships : Policy|excludes|OPD_Without_Hospitalization;Policy|excludes|Preventive_Vaccination_Except_Post_Bite;Policy|excludes|External_Congenital_Except_Life_Threatening;Policy|excludes|Stem_Cell_Except_Hematological;Policy|excludes|All_Treatment_Outside_India
|
| 618 |
-
text :
|
| 619 |
-
MEDICAL, DEVICE, TREATMENT, AND GEOGRAPHICAL EXCLUSIONS
|
| 620 |
-
|
| 621 |
-
MEDICAL EXCLUSIONS:
|
| 622 |
-
- Routine examinations and preventive health check-ups
|
| 623 |
-
- Circumcision (unless medically required for illness/injury)
|
| 624 |
-
- OPD Treatment without hospitalization (no OPD benefit in Base plan)
|
| 625 |
-
- Preventive care, vaccinations/inoculations (EXCEPT post-bite treatment)
|
| 626 |
-
- Psychiatric/psychological examinations without hospitalization
|
| 627 |
-
- Nutritional/electrolyte supplements (unless certified consequence of covered claim)
|
| 628 |
-
- External Congenital Anomalies (EXCEPT life-threatening cases)
|
| 629 |
-
- Stem Cell Therapy (EXCEPT hematopoietic stem cells for bone marrow transplant
|
| 630 |
-
for hematological conditions)
|
| 631 |
-
- Growth Hormone Therapy or Hormone Replacement Therapy
|
| 632 |
-
- Dentures, implants, artificial teeth
|
| 633 |
-
- Health check-ups for employment/travel/certification purposes
|
| 634 |
-
|
| 635 |
-
PROSTHETICS AND DEVICE EXCLUSIONS:
|
| 636 |
-
- Hearing aids, spectacles, contact lenses, multifocal lenses, optometric therapy
|
| 637 |
-
- Wigs and toupees; wheelchairs; crutches
|
| 638 |
-
- Nebulizers, oxygen concentrators for asthma/COPD conditions
|
| 639 |
-
- Glucometers, ambulatory blood pressure/blood sugar monitors
|
| 640 |
-
- CPAP/BIPAP devices for sleep apnea
|
| 641 |
-
- External prosthetics, corrective devices, and artificial limbs
|
| 642 |
-
- Cochlear implants (EXCEPT if caused by Accident)
|
| 643 |
-
|
| 644 |
-
SPECIFIC TREATMENT EXCLUSIONS:
|
| 645 |
-
- RFQMR, ECP, EECP, Hyperbaric Oxygen Therapy, KTP Laser Surgeries
|
| 646 |
-
- Cyber Knife treatment, Femto Laser Surgeries
|
| 647 |
-
- Bioabsorbable stents, bioabsorbable valves, bioabsorbable implants
|
| 648 |
-
- RF probe ablation
|
| 649 |
-
|
| 650 |
-
GEOGRAPHICAL EXCLUSION:
|
| 651 |
-
- All treatment taken OUTSIDE INDIA is EXCLUDED under this Base policy
|
| 652 |
-
- This applies without exception; there is no overseas coverage benefit in this plan
|
| 653 |
-
[/CHUNK]
|
| 654 |
-
|
| 655 |
-
[CHUNK]
|
| 656 |
-
id : ENROLLMENT_001
|
| 657 |
-
section : Enrollment Process
|
| 658 |
-
subsection : How to Enroll, Portal, Verification, Rules
|
| 659 |
-
topic_tags : enrollment, how to enroll, NITDAA portal, digital enrollment, alumni verification, no medical test, enrollment window 08 June 30 June, exit not allowed, rejoin not allowed, medical records not required, nitdaa.org
|
| 660 |
-
entities : Process:Digital_Enrollment|Portal:NITDAA_Portal|Rule:No_Medical_Test|Rule:Cannot_Exit_and_Rejoin|Window:08Jun_to_30Jun_2026|Rule:Alumni_Verified_by_NITDAA
|
| 661 |
-
relationships : Enrollment|process|Digital_Only;Enrollment|portal|NITDAA_Portal;Medical_Test|required|No;Exit_and_Rejoin|allowed|No;Alumni_Status|verified_by|NITDAA;Base_Policy_Window|dates|08Jun_to_30Jun_2026
|
| 662 |
-
text :
|
| 663 |
-
ENROLLMENT PROCESS — NITDAA BASE HEALTH INSURANCE
|
| 664 |
-
|
| 665 |
-
HOW TO ENROLL:
|
| 666 |
-
- Completely end-to-end digital; no paperwork or physical visits required
|
| 667 |
-
- Through the NITDAA web portal only (exclusive to NITD alumni)
|
| 668 |
-
- Portal URL: https://www.nitdaa.org/external_insurance.dz
|
| 669 |
-
- All portal users are verified alumni — registration enabled only through NITDAA portal
|
| 670 |
-
- Alumni status verified by NITDAA
|
| 671 |
-
|
| 672 |
-
ENROLLMENT WINDOW 2026:
|
| 673 |
-
- Base Policy : 08 June 2026 to 30 June 2026
|
| 674 |
-
- Payment Gateway Opens : 10th June 2026
|
| 675 |
-
(Enrollment portal opens 08 June; actual payment processing begins 10 June 2026)
|
| 676 |
-
|
| 677 |
-
PRE-ENROLLMENT REQUIREMENTS:
|
| 678 |
-
- Medical check-up/tests : NOT required
|
| 679 |
-
- Medical records : NOT required at enrollment
|
| 680 |
-
- PED declaration : NOT required; all PEDs accepted with 1-year wait by default
|
| 681 |
-
- No negative list : Members with ALL pre-existing conditions are allowed to enroll
|
| 682 |
-
|
| 683 |
-
IMPORTANT RULES:
|
| 684 |
-
- Alumni can enroll ONLY during the open enrollment window (not any time of year)
|
| 685 |
-
- Cannot exit the plan and rejoin later — rejoining means entering as new member with
|
| 686 |
-
fresh waiting periods and loss of all accumulated renewal benefits
|
| 687 |
-
- Early enrollment strongly recommended: PED wait period begins from enrollment date;
|
| 688 |
-
delay by 1 year = PED waiver available 1 year later
|
| 689 |
-
|
| 690 |
-
ALUMNI STATUS:
|
| 691 |
-
- NITDAA verifies alumni status
|
| 692 |
-
- Certain programs without regular alumni status but with portal access may also enroll
|
| 693 |
-
|
| 694 |
-
CANNOT PARTICIPATE:
|
| 695 |
-
- Siblings, friends, relatives — exclusive plan for alumni and eligible family members only
|
| 696 |
-
- Cannot pay directly to insurer to get this plan (only through NITDAA portal)
|
| 697 |
-
[/CHUNK]
|
| 698 |
-
|
| 699 |
-
[CHUNK]
|
| 700 |
-
id : PREMIUM_001
|
| 701 |
-
section : Premium and Payment
|
| 702 |
-
subsection : Amount, Tax Benefit, Payment Flow, Group Pricing
|
| 703 |
-
topic_tags : premium, annual, section 80D tax deduction, payment via Zopper Solvy Tech, receipt from insurer, group rate, age band, premium increase, city neutral, oldest member age, claims ratio, no individual loading, no monthly option, no registration fee
|
| 704 |
-
entities : Premium:Annual_Frequency|Tax:Section_80D|PayFlow:Via_Solvy_Tech_Zopper|Receipt:From_Insurer|Rate:Based_on_Oldest_Member|Rate:Group_Claims_Ratio|Rate:City_Neutral
|
| 705 |
-
relationships : Premium|frequency|Annual_Only;Premium|tax|Section_80D;Receipt|issued_by|Insurance_Company;Payment|collected_by|Solvy_Tech_Zopper;Rate|based_on|Oldest_Family_Member_Age;Rate_Change|basis|Group_Claims_Ratio;Premium|city_variation|None
|
| 706 |
-
text :
|
| 707 |
-
PREMIUM AND PAYMENT — NITDAA BASE HEALTH INSURANCE
|
| 708 |
-
|
| 709 |
-
PAYMENT FREQUENCY: Annual only (no monthly, quarterly, or half-yearly option)
|
| 710 |
-
|
| 711 |
-
TAX BENEFIT: Premiums eligible for Section 80D income tax deduction
|
| 712 |
-
|
| 713 |
-
PAYMENT FLOW:
|
| 714 |
-
1. Member pays via NITDAA portal
|
| 715 |
-
2. Collected by Solvy Tech Solutions (Zopper) on behalf of NITDAA
|
| 716 |
-
3. Zopper transfers to Aditya Birla Health Insurance for policy issuance
|
| 717 |
-
4. Receipt issued by Insurance Company (NOT by NITDAA)
|
| 718 |
-
|
| 719 |
-
PREMIUM DETERMINATION:
|
| 720 |
-
- Rate is determined by age of the OLDEST member in the family unit covered
|
| 721 |
-
- Flat rate across all cities and tiers (Tier 1, Tier 2, Tier 3 — all same premium)
|
| 722 |
-
- No individual loading: your personal claims history does NOT affect your premium
|
| 723 |
-
- Premium change (increase/decrease) applies to the entire group by age band
|
| 724 |
-
|
| 725 |
-
PREMIUM CHANGES AT RENEWAL:
|
| 726 |
-
- Based on the entire group's claims ratio (not individual performance)
|
| 727 |
-
- Expected rise: depends on group claims ratio for that year
|
| 728 |
-
- If you do not renew due to premium increase: all accumulated benefits lost permanently
|
| 729 |
-
|
| 730 |
-
WHERE TO CHECK PREMIUM:
|
| 731 |
-
- Log in to NITDAA Alumni portal
|
| 732 |
-
- Email: nitdaahealthplan@zopper.com
|
| 733 |
-
- Call Satyam Mishra: 8130301854
|
| 734 |
-
|
| 735 |
-
REGISTRATION FEE: No registration fee charged by NITDAA on this group policy.
|
| 736 |
-
[/CHUNK]
|
| 737 |
-
|
| 738 |
-
[CHUNK]
|
| 739 |
-
id : RENEWALS_001
|
| 740 |
-
section : Renewals and Continuity
|
| 741 |
-
subsection : Renewal Benefits, Grace Period, Moratorium, Underwriting
|
| 742 |
-
topic_tags : renewal, renewal benefits, grace period 30 days, moratorium 60 months, no fresh underwriting, no loading individual claims, lifelong renewability, premium modification 3 months notice, renewal not denied for claims, product withdrawal 90 days
|
| 743 |
-
entities : Renewal:Zero_Wait|GracePeriod:30Days|Moratorium:60_Months|Rule:No_Individual_Loading|Rule:No_Fresh_Underwriting|Rule:Renewal_Not_Denied_for_Claims|Rule:Product_Withdrawal_90Days
|
| 744 |
-
relationships : Renewal|waives|All_Waiting_Periods;Grace_Period|duration|30_Days_Annual;Moratorium|duration|60_Continuous_Months;Renewal|denied_for_claims|No;Fresh_Underwriting_at_Renewal|required|No;Individual_Claims|affects_premium|No;Premium_Change|notice|3_Months
|
| 745 |
-
text :
|
| 746 |
-
RENEWALS AND CONTINUITY — NITDAA BASE HEALTH INSURANCE
|
| 747 |
-
|
| 748 |
-
BENEFITS OF CONTINUOUS RENEWAL:
|
| 749 |
-
- Zero waiting periods: initial 30-day, specific disease 12-month, and PED 12-month all WAIVED
|
| 750 |
-
- Full coverage from Day 1 of each renewal year
|
| 751 |
-
- Accumulated continuity credits count toward 60-month moratorium period
|
| 752 |
-
- No fresh medical underwriting required at renewal
|
| 753 |
-
- No loading applied based on individual claims history
|
| 754 |
-
|
| 755 |
-
GRACE PERIOD FOR RENEWAL:
|
| 756 |
-
- 30 days for annual/half-yearly/quarterly payment modes
|
| 757 |
-
- 15 days for monthly payment mode
|
| 758 |
-
- Coverage is NOT available during grace period
|
| 759 |
-
- Renewing within grace period preserves ALL accrued continuity benefits
|
| 760 |
-
|
| 761 |
-
MORATORIUM PERIOD:
|
| 762 |
-
- After 60 continuous months of coverage, policy is NOT contestable by insurer on grounds
|
| 763 |
-
of non-disclosure or misrepresentation
|
| 764 |
-
- Exception: Established fraud is ALWAYS contestable regardless of moratorium
|
| 765 |
-
- Original Sum Insured: 60-month clock applies from first enrollment
|
| 766 |
-
- Enhanced Sum Insured (increase at renewal): own separate 60-month clock begins
|
| 767 |
-
|
| 768 |
-
RENEWAL RULES (IRDAI):
|
| 769 |
-
- Renewal CANNOT be denied because the insured made claims in prior years
|
| 770 |
-
- No premium loading based on individual claims experience
|
| 771 |
-
- Fresh underwriting only if Sum Insured is increased; applies only to incremental SI
|
| 772 |
-
- Insurer must notify 3 months before modifying premium rates or terms
|
| 773 |
-
|
| 774 |
-
PRODUCT WITHDRAWAL:
|
| 775 |
-
- If product is withdrawn, insurer notifies insured 90 days before policy expiry
|
| 776 |
-
- Insured can migrate to similar Aditya Birla (ABHI) product with all accrued continuity benefits
|
| 777 |
-
[/CHUNK]
|
| 778 |
-
|
| 779 |
-
[CHUNK]
|
| 780 |
-
id : ALUMNI_DEATH_001
|
| 781 |
-
section : Alumni Death — Policy Continuation
|
| 782 |
-
subsection : Coverage After Alumni's Demise and Associate Member Status
|
| 783 |
-
topic_tags : alumni death, policy after death, family coverage continuation, surviving spouse, associate member, medical insurance continuity, renewal after death, NITDAA portal access, both spouses alumni, surviving alumni spouse renewal
|
| 784 |
-
entities : Event:Alumni_Death|Coverage:Family_Current_Year|Status:Associate_Member_for_Insurance_Only|Process:NITDAA_Team_Portal_Access|Rule:No_Other_Alumni_Benefits_for_Surviving_Spouse
|
| 785 |
-
relationships : Alumni_Death|family_covered_until|Next_Renewal;After_Next_Renewal|surviving_spouse_inducted_as|Associate_Member;Associate_Member|benefits|Medical_Insurance_Continuity_Only;Associate_Member|NOT_entitled_to|Other_Alumni_Access_or_Benefits;Surviving_Alumni_Spouse|can_renew|Own_Alumni_Status
|
| 786 |
-
text :
|
| 787 |
-
POLICY CONTINUATION AFTER ALUMNI'S DEATH
|
| 788 |
-
|
| 789 |
-
CURRENT POLICY YEAR:
|
| 790 |
-
- Family remains FULLY COVERED until the next renewal date
|
| 791 |
-
- No interruption in coverage for the current policy year
|
| 792 |
-
|
| 793 |
-
FOR SUBSEQUENT RENEWALS (after next renewal):
|
| 794 |
-
- Surviving spouse and family members MUST contact NITDAA Alumni team to request portal access
|
| 795 |
-
- NITDAA team facilitates enrollment window access for the family
|
| 796 |
-
|
| 797 |
-
ASSOCIATE MEMBER STATUS (Important — 2026 Policy):
|
| 798 |
-
- The surviving spouse will be inducted as an ASSOCIATE MEMBER
|
| 799 |
-
- Associate Member status is granted ONLY for Medical Insurance continuity purposes
|
| 800 |
-
- This Associate Member status does NOT carry any other access or benefits of Alumni membership
|
| 801 |
-
- Associate membership is not equivalent to full alumni membership
|
| 802 |
-
|
| 803 |
-
IF BOTH SPOUSES ARE NITD ALUMNI:
|
| 804 |
-
- The surviving spouse can renew the policy independently on their own alumni status
|
| 805 |
-
- Survivor joins the plan as an alumni in their own right
|
| 806 |
-
- No Associate Member status needed — they already hold full alumni credentials
|
| 807 |
-
|
| 808 |
-
COVERAGE AGES STILL APPLY:
|
| 809 |
-
- Lifelong renewability for all members who enrolled before age 85
|
| 810 |
-
- All existing members retain their coverage continuity
|
| 811 |
-
[/CHUNK]
|
| 812 |
-
|
| 813 |
-
[CHUNK]
|
| 814 |
-
id : CLAIMS_001
|
| 815 |
-
section : Claims Process
|
| 816 |
-
subsection : Claim Types, Timelines, and Document Requirements
|
| 817 |
-
topic_tags : claims, cashless, reimbursement, 72 hours planned pre-auth, 24 hours emergency, 48 hours reimbursement notice, 30 days documents, claim settlement 30 days, 45 days investigation, penal interest 2 percent RBI, ABHI in-house, documents list, discharge card, hospital bill, pharmacy bills, MLC FIR
|
| 818 |
-
entities : Process:Cashless_Planned_72hrs|Process:Cashless_Emergency_24hrs|Process:Reimbursement_48hrs|Timeline:Documents_30Days|Timeline:Settlement_30Days|Timeline:Investigation_45Days|PenalInterest:2pct_above_RBI
|
| 819 |
-
relationships : Cashless_Planned|pre_auth|72_hours_before;Cashless_Emergency|intimate|within_24_hours;Reimbursement|notice|within_48_hours_or_before_discharge;All_Claims|documents|within_30_days_discharge;Normal_Settlement|within|30_days;Investigation_Settlement|within|45_days
|
| 820 |
-
text :
|
| 821 |
-
CLAIMS PROCESS — NITDAA BASE HEALTH INSURANCE
|
| 822 |
-
|
| 823 |
-
CLAIM SERVICING: In-house by Aditya Birla Health Insurance (ABHI) — no separate TPA
|
| 824 |
-
|
| 825 |
-
TWO MODES OF CLAIM:
|
| 826 |
-
1. CASHLESS: Available at ABHI Network Hospitals only
|
| 827 |
-
- Insurer pays the hospital directly; no out-of-pocket payment at hospital
|
| 828 |
-
2. REIMBURSEMENT: Any hospital (network or non-network)
|
| 829 |
-
- Member pays the hospital; submits documents to ABHI for reimbursement
|
| 830 |
-
|
| 831 |
-
INTIMATION TIMELINES:
|
| 832 |
-
Cashless (Planned Treatment) : Pre-authorise at LEAST 72 HOURS before admission
|
| 833 |
-
Cashless (Emergency) : Intimate insurer within 24 HOURS of hospitalization
|
| 834 |
-
Reimbursement : Written notice within 48 HOURS of admission OR before
|
| 835 |
-
discharge (whichever earlier)
|
| 836 |
-
Document Submission : Within 30 DAYS of discharge from hospital
|
| 837 |
-
Pre/Post-Hospitalization Claims : Within 30 days of completion of post-hospitalization treatment
|
| 838 |
-
|
| 839 |
-
DOCUMENTS REQUIRED FOR REIMBURSEMENT:
|
| 840 |
-
1. Completed claim form
|
| 841 |
-
2. Photo ID, Age proof, and KYC documents
|
| 842 |
-
3. Health card and policy copy
|
| 843 |
-
4. Original discharge card / day care summary / transfer summary
|
| 844 |
-
5. Original final hospital bill with all deposit and payment receipts
|
| 845 |
-
6. Original invoices + implant stickers (lens sticker for cataract; stent invoice for angioplasty)
|
| 846 |
-
7. All previous consultation papers (history and treatment for current ailment)
|
| 847 |
-
8. All original diagnostic reports with doctor's prescription and bills
|
| 848 |
-
9. All original pharmacy/medicine bills with treating doctor's prescriptions
|
| 849 |
-
10. MLC/FIR copy (ACCIDENT cases only)
|
| 850 |
-
11. Death summary and death certificate (DEATH claims only)
|
| 851 |
-
12. Indoor case papers with nursing sheet (if available)
|
| 852 |
-
|
| 853 |
-
CLAIM SETTLEMENT TIMELINES (IRDAI mandated):
|
| 854 |
-
- Normal settlement : 30 days from receipt of all documents
|
| 855 |
-
- Investigation cases : 45 days from receipt of all documents
|
| 856 |
-
- Delay beyond mandated timeline: Penal interest at 2% ABOVE RBI Bank Rate
|
| 857 |
-
|
| 858 |
-
DIAGNOSIS OUTSIDE INDIA, TREATMENT IN INDIA:
|
| 859 |
-
- If condition is diagnosed outside India but hospitalization/treatment is within India:
|
| 860 |
-
CLAIM IS ADMISSIBLE
|
| 861 |
-
|
| 862 |
-
ZOPPER SUPPORT: nitdaahealthplan@zopper.com
|
| 863 |
-
ABHI DIRECT: WhatsApp 8368742074 | Toll Free 1800 270 7000
|
| 864 |
-
NETWORK HOSPITALS: https://www.adityabirlacapital.com/healthinsurance/locate-care/hospital-listing
|
| 865 |
-
[/CHUNK]
|
| 866 |
-
|
| 867 |
-
[CHUNK]
|
| 868 |
-
id : CLAIMS_002
|
| 869 |
-
section : Claims Process
|
| 870 |
-
subsection : Multiple Policy Coordination and Cashless Pre-Authorization
|
| 871 |
-
topic_tags : multiple policies, coordination of benefits, primary insurer, employer insurance NITDAA, works alongside, pre-authorization, authorization letter 1 hour, 15 day validity, network hospital cashless TPA desk, secondary claim contribution
|
| 872 |
-
entities : Process:Multiple_Policy_Coordination|Role:Primary_Insurer_Chosen_by_Insured|Rule:Works_with_Employer_Insurance|Rule:Works_with_Retail_Insurance|Process:Pre_Auth_Letter_1Hour|Pre_Auth:Valid_15Days
|
| 873 |
-
relationships : NITDAA_Plan|works_with|Employer_Group_Insurance;NITDAA_Plan|works_with|Individual_Retail_Insurance;Primary_Insurer|chosen_by|Insured;Pre_Auth_Letter|issued_within|1_hour;Pre_Auth|valid_for|15_days
|
| 874 |
-
text :
|
| 875 |
-
MULTIPLE POLICIES AND CASHLESS PRE-AUTHORIZATION
|
| 876 |
-
|
| 877 |
-
USING ALONGSIDE OTHER POLICIES:
|
| 878 |
-
- Works TOGETHER with employer-provided group health insurance
|
| 879 |
-
- Works TOGETHER with individually purchased retail health insurance plans
|
| 880 |
-
- This is an ADDITIONAL health insurance (not a replacement for existing policies)
|
| 881 |
-
|
| 882 |
-
MULTIPLE POLICY RULES (IRDAI):
|
| 883 |
-
- Insured can choose any one policy as the PRIMARY insurer for any claim
|
| 884 |
-
- Primary insurer settles claim within its policy limits and terms
|
| 885 |
-
- Remaining unsettled amount can be claimed from secondary/other policies
|
| 886 |
-
- If claim exceeds one policy's SI, primary insurer coordinates with other insurers
|
| 887 |
-
- Under indemnity: insured will be indemnified only for actual costs (no double recovery)
|
| 888 |
-
|
| 889 |
-
ADDITIONAL DOCUMENTS FOR SECONDARY/CONTRIBUTION CLAIMS:
|
| 890 |
-
- Photocopy of complete claim documents attested by primary insurer or TPA
|
| 891 |
-
- Original payment receipts for expenses not settled by primary insurer
|
| 892 |
-
- Discharge voucher or settlement letter from primary insurer
|
| 893 |
-
|
| 894 |
-
CASHLESS PRE-AUTHORIZATION — PLANNED TREATMENT:
|
| 895 |
-
- Contact ABHI at least 72 hours before proposed admission through hospital TPA desk
|
| 896 |
-
- Required: health card, KYC docs, policy number, patient details, illness, treating doctor,
|
| 897 |
-
hospital name, proposed admission date
|
| 898 |
-
- Authorization letter issued within 1 HOUR of receiving complete information
|
| 899 |
-
- Pre-authorization valid for 15 days from authorization date
|
| 900 |
-
|
| 901 |
-
CASHLESS PRE-AUTHORIZATION — EMERGENCY:
|
| 902 |
-
- Intimate within 24 hours of hospitalization
|
| 903 |
-
- Same documentation as planned treatment
|
| 904 |
-
- Authorization letter issued within 1 hour of complete information
|
| 905 |
-
[/CHUNK]
|
| 906 |
-
|
| 907 |
-
[CHUNK]
|
| 908 |
-
id : TERMS_001
|
| 909 |
-
section : Policy Terms and Conditions
|
| 910 |
-
subsection : Cancellation, Free Look Period, Fraud, Misrepresentation
|
| 911 |
-
topic_tags : cancellation 7 days, proportionate refund, no refund after claim, free look 30 days, fraud forfeiture, misrepresentation void policy, material fact non-disclosure, policy terms modification, IRDAI renewal rules
|
| 912 |
-
entities : Term:Cancellation_7Days_Notice|Term:Proportionate_Refund|Term:No_Refund_After_Claim|Term:Free_Look_30Days|Term:Fraud_Forfeits_Benefits|Term:Misrepresentation_Voids_Policy
|
| 913 |
-
relationships : Cancellation_by_Member|notice|7_days;Refund|basis|Proportionate_Unexpired;Refund|not_available_if|Claim_Admitted;Free_Look|duration|30_days;Fraud|consequence|All_Benefits_Forfeited;Misrepresentation|consequence|Policy_Void
|
| 914 |
-
text :
|
| 915 |
-
POLICY TERMS AND CONDITIONS
|
| 916 |
-
|
| 917 |
-
CANCELLATION BY POLICYHOLDER:
|
| 918 |
-
- Written notice of 7 days required
|
| 919 |
-
- Refund: proportionate premium for unexpired policy period (annual frequency only)
|
| 920 |
-
- No refund if any claim has been admitted or benefit availed
|
| 921 |
-
- No refund for half-yearly, quarterly, or monthly premium frequencies
|
| 922 |
-
|
| 923 |
-
CANCELLATION BY INSURER:
|
| 924 |
-
- Can cancel on: misrepresentation, non-disclosure of material facts, fraud
|
| 925 |
-
- Minimum 15 days written notice given to insured
|
| 926 |
-
- No premium refund on cancellation for fraud/misrepresentation/non-disclosure
|
| 927 |
-
|
| 928 |
-
FREE LOOK PERIOD:
|
| 929 |
-
- 30 days from date of policy document receipt (electronic or physical)
|
| 930 |
-
- Applicable to new individual policies ONLY
|
| 931 |
-
- Not applicable at renewal, porting, or migration
|
| 932 |
-
- Full refund if no claim made; deduct medical examination costs, stamp duty,
|
| 933 |
-
proportionate risk premium
|
| 934 |
-
|
| 935 |
-
FRAUD AND MISREPRESENTATION:
|
| 936 |
-
- Policy void and all premiums forfeited for misrepresentation, mis-description,
|
| 937 |
-
or non-disclosure of material facts
|
| 938 |
-
- All benefits forfeited if fraudulent means used to obtain a claim
|
| 939 |
-
- Fraudulent claim amounts already paid must be repaid to insurer
|
| 940 |
-
|
| 941 |
-
TERMS MODIFICATION:
|
| 942 |
-
- Insurer may revise policy terms and premiums with prior committee approval
|
| 943 |
-
- Insured persons notified 3 months before changes take effect
|
| 944 |
-
[/CHUNK]
|
| 945 |
-
|
| 946 |
-
[CHUNK]
|
| 947 |
-
id : LIFESTAGE_001
|
| 948 |
-
section : Life Stage Evaluation Guide
|
| 949 |
-
subsection : Age 22-30 and Age 30-45 — Base Policy Recommendations
|
| 950 |
-
topic_tags : life stage, age 22-30, low risk, employer cover, base policy optional, age 30-45, medium high risk, parents retired no health cover, base policy consider, job insecure, employer cover not portable, one fine dining meal
|
| 951 |
-
entities : Age:22_30|Risk:Low|Rec_Base:Not_Mandatory|Age:30_45|Risk:Medium_High|Rec_Base:Consider_Strongly
|
| 952 |
-
relationships : Age_22_30|risk_level|Low;Age_22_30|base_recommendation|Consider_if_Job_Insecure_or_Parents_Need;Age_30_45|risk_level|Medium_to_High;Age_30_45|base_recommendation|Consider_Strongly
|
| 953 |
-
text :
|
| 954 |
-
LIFE STAGE EVALUATION — BASE POLICY (AGE 22–45)
|
| 955 |
-
|
| 956 |
-
AGE 22–30 | Risk Level: LOW
|
| 957 |
-
Typical Profile:
|
| 958 |
-
- Start of career; employer provides health cover (approx. Rs. 5-10 Lakhs)
|
| 959 |
-
- One or both parents still employed with employer health cover
|
| 960 |
-
- No dependents or just married; generally healthy
|
| 961 |
-
|
| 962 |
-
Base Policy (3L/5L): NOT AN IMMEDIATE MUST
|
| 963 |
-
Consider if any of these apply:
|
| 964 |
-
- Going entrepreneurial or job-insecure (employer cover will lapse)
|
| 965 |
-
- Parents or in-laws need health cover and cannot get retail insurance
|
| 966 |
-
- Any other special situation requiring personal health cover
|
| 967 |
-
Key advantage of enrolling now even if not immediately needed:
|
| 968 |
-
- PED waiting period starts from enrollment; Year 2 renewal = zero wait
|
| 969 |
-
|
| 970 |
-
-----------------------------------------------------------------------
|
| 971 |
-
|
| 972 |
-
AGE 30–45 | Risk Level: MEDIUM TO HIGH
|
| 973 |
-
Typical Profile:
|
| 974 |
-
- High growth, high-stress work; increasing job insecurities
|
| 975 |
-
- Married with children; rising financial demands
|
| 976 |
-
- Parents and in-laws likely retired — NO health cover from any employer
|
| 977 |
-
- Parents/in-laws cannot buy retail policy due to age or pre-existing conditions
|
| 978 |
-
- Beginning health episodes for self, parents, or in-laws
|
| 979 |
-
|
| 980 |
-
Base Policy (3L/5L): STRONGLY CONSIDER
|
| 981 |
-
Key reasons:
|
| 982 |
-
- Employer cover is risky — not portable across job changes
|
| 983 |
-
- This plan is often the ONLY accessible route for elderly parents and in-laws
|
| 984 |
-
- Very affordable at this income level
|
| 985 |
-
- Year 2 onwards: full PED waiver for all accumulated conditions
|
| 986 |
-
[/CHUNK]
|
| 987 |
-
|
| 988 |
-
[CHUNK]
|
| 989 |
-
id : LIFESTAGE_002
|
| 990 |
-
section : Life Stage Evaluation Guide
|
| 991 |
-
subsection : Age 45-60 and Age 60+ — Base Policy Recommendations
|
| 992 |
-
topic_tags : life stage, age 45-60, high risk, employer cover unreliable, age 60 plus, very high risk, retired, retail market unavailable, base policy recommended, retirement savings, financially independent, pre-existing conditions retail denied
|
| 993 |
-
entities : Age:45_60|Risk:High|Rec_Base:Recommended|Age:60_Plus|Risk:Very_High|Rec_Base:Strongly_Recommended
|
| 994 |
-
relationships : Age_45_60|risk_level|High;Age_45_60|employer_cover|Unreliable_From_This_Stage;Age_60_Plus|risk_level|Very_High;Retail_Market|accessible_for_60Plus|No_due_to_PED_Age
|
| 995 |
-
text :
|
| 996 |
-
LIFE STAGE EVALUATION — BASE POLICY (AGE 45+)
|
| 997 |
-
|
| 998 |
-
AGE 45–60 | Risk Level: HIGH
|
| 999 |
-
Typical Profile:
|
| 1000 |
-
- Peak work-related insecurities; high financial demands
|
| 1001 |
-
- Children's education and increasing responsibilities
|
| 1002 |
-
- Parents and in-laws dependent with growing health risks
|
| 1003 |
-
- Consolidating personal finances; building retirement corpus
|
| 1004 |
-
|
| 1005 |
-
Base Policy (3L/5L): RECOMMENDED
|
| 1006 |
-
Key reasons:
|
| 1007 |
-
- Employer cover is not fully reliable from this stage onwards
|
| 1008 |
-
- Job transitions or early retirement = immediate loss of employer cover
|
| 1009 |
-
- This plan provides a portable, personal insurance base
|
| 1010 |
-
- Continuity benefits built from this stage ensure PED waiver from Year 2
|
| 1011 |
-
|
| 1012 |
-
-----------------------------------------------------------------------
|
| 1013 |
-
|
| 1014 |
-
AGE 60+ | Risk Level: VERY HIGH
|
| 1015 |
-
Typical Profile:
|
| 1016 |
-
- Likely retired or working independently
|
| 1017 |
-
- Need to remain financially independent
|
| 1018 |
-
- Increasing potential health risks and existing conditions
|
| 1019 |
-
- Retail market is practically inaccessible:
|
| 1020 |
-
→ Very high premiums with many conditions
|
| 1021 |
-
→ High wait periods on pre-existing diseases
|
| 1022 |
-
→ High claim refusal risk
|
| 1023 |
-
→ Age-based denial common
|
| 1024 |
-
|
| 1025 |
-
Base Policy (3L/5L): STRONGLY RECOMMENDED
|
| 1026 |
-
Key reasons:
|
| 1027 |
-
- This plan accepts ALL pre-existing conditions (12-month wait for new members)
|
| 1028 |
-
- No medical tests required — retail always requires tests
|
| 1029 |
-
- Protects savings from being eroded by medical expenses
|
| 1030 |
-
- Entry up to age 85; lifelong renewability once enrolled
|
| 1031 |
-
- Having this policy from this stage prevents complete dependence on savings or family
|
| 1032 |
-
[/CHUNK]
|
| 1033 |
-
|
| 1034 |
-
[CHUNK]
|
| 1035 |
-
id : CONTACTS_001
|
| 1036 |
-
section : Contacts and Support
|
| 1037 |
-
subsection : Zopper Support Matrix and ABHI Direct Contacts
|
| 1038 |
-
topic_tags : contact, Zopper support, phone number, product support, claims support, endorsement support, Satyam Mishra 8130301854, Pradeep Kumar 9319640944, Hrithik Khatana 8800902249, Sujit Shekhar 8860746253, Mohit Sachwani 6362568835, Boudhaayan Paul 7032220850, ABHI 1800 270 7000, WhatsApp 8368742074, nitdaahealthplan zopper
|
| 1039 |
-
entities : Contact:Satyam_Mishra_8130301854|Contact:Pradeep_Kumar_9319640944|Contact:Hrithik_Khatana_8800902249|Contact:Sujit_Shekhar_8860746253|Contact:Mohit_Sachwani_6362568835|Contact:Boudhaayan_Paul_7032220850|Contact:ABHI_1800_270_7000|Contact:ABHI_WhatsApp_8368742074
|
| 1040 |
-
relationships : Satyam_Mishra|level|L1;Satyam_Mishra|support_type|Product_Enrolment;Pradeep_Kumar|level|L1;Pradeep_Kumar|support_type|Claims;Hrithik_Khatana|level|L2;Sujit_Shekhar|level|L2;Sujit_Shekhar|support_type|Claims_Endorsement;Mohit_Sachwani|level|L3;Boudhaayan_Paul|level|L4
|
| 1041 |
-
text :
|
| 1042 |
-
CONTACTS AND SUPPORT — NITDAA HEALTH PLAN
|
| 1043 |
-
|
| 1044 |
-
ZOPPER INSURANCE BROKERS — NITDAA PLAN SUPPORT:
|
| 1045 |
-
General Email: nitdaahealthplan@zopper.com
|
| 1046 |
-
|
| 1047 |
-
Level | Name | Mobile | Support Type
|
| 1048 |
-
------|--------------------|--------------|------------------------------------------
|
| 1049 |
-
L1 | Satyam Mishra | 8130301854 | Product / Enrolment Support
|
| 1050 |
-
L1 | Pradeep Kumar | 9319640944 | Claims Support
|
| 1051 |
-
L2 | Hrithik Khatana | 8800902249 | Product / Enrolment Support
|
| 1052 |
-
L2 | Sujit Shekhar | 8860746253 | Claims / Endorsement Support
|
| 1053 |
-
L3 | Mohit Sachwani | 6362568835 | Product / Endorsement Support
|
| 1054 |
-
L4 | Boudhaayan Paul | 7032220850 | Product / Claims / Endorsement Support
|
| 1055 |
-
|
| 1056 |
-
ADITYA BIRLA HEALTH INSURANCE (ABHI) DIRECT:
|
| 1057 |
-
WhatsApp : 8368742074
|
| 1058 |
-
Claims Email : abhicl.claim@adityabirlacapital.com
|
| 1059 |
-
Toll Free : 1800 270 7000
|
| 1060 |
-
General Email : care.healthinsurance@adityabirlacapital.com
|
| 1061 |
-
Website : www.adityabirlacapital.com/healthinsurance
|
| 1062 |
-
Senior Citizens : seniorcitizen.abh@adityabirla.com
|
| 1063 |
-
Registered Office: 9th Floor, Tower 1, One World Centre, Jupiter Mills Compound,
|
| 1064 |
-
841, Senapati Bapat Marg, Elphinstone Road, Mumbai 400013
|
| 1065 |
-
|
| 1066 |
-
NETWORK HOSPITALS:
|
| 1067 |
-
https://www.adityabirlacapital.com/healthinsurance/locate-care/hospital-listing
|
| 1068 |
-
|
| 1069 |
-
DISCLAIMER: NIT Durgapur (Master Policyholder) is NOT responsible for settlement of claims.
|
| 1070 |
-
All claims settled exclusively by Aditya Birla Health Insurance Co. Ltd.
|
| 1071 |
-
[/CHUNK]
|
| 1072 |
-
|
| 1073 |
-
[CHUNK]
|
| 1074 |
-
id : GRIEVANCE_001
|
| 1075 |
-
section : Grievance Redressal
|
| 1076 |
-
subsection : Escalation Levels — ABHI, Ombudsman, IRDAI IGMS
|
| 1077 |
-
topic_tags : grievance, complaint, escalation, ombudsman, IRDAI IGMS, insurance ombudsman rules 2017, ABHI customer care, 1800 270 7000, dispute resolution, legal jurisdiction India, penal interest
|
| 1078 |
-
entities : Process:Level1_ABHI|Process:Level2_Insurance_Ombudsman|Process:Level3_IRDAI_IGMS|Legal:Indian_Courts_Jurisdiction
|
| 1079 |
-
relationships : Grievance|first_to|ABHI_Customer_Care;Unresolved|escalate_to|Insurance_Ombudsman;Unresolved|escalate_to|IRDAI_IGMS;Legal_Dispute|jurisdiction|Indian_Courts
|
| 1080 |
-
text :
|
| 1081 |
-
GRIEVANCE REDRESSAL — NITDAA BASE HEALTH INSURANCE
|
| 1082 |
-
|
| 1083 |
-
LEVEL 1 — Aditya Birla Health Insurance (ABHI):
|
| 1084 |
-
Email : care.healthinsurance@adityabirlacapital.com
|
| 1085 |
-
Toll Free : 1800 270 7000
|
| 1086 |
-
Website : www.adityabirlacapital.com/healthinsurance
|
| 1087 |
-
Branch : Any ABHI branch office
|
| 1088 |
-
Senior Citizens: seniorcitizen.abh@adityabirla.com
|
| 1089 |
-
|
| 1090 |
-
LEVEL 2 — Insurance Ombudsman:
|
| 1091 |
-
- If not satisfied with ABHI's resolution
|
| 1092 |
-
- Governed by Insurance Ombudsman Rules 2017
|
| 1093 |
-
- Contact details available on ABHI website (Annexure I of policy document)
|
| 1094 |
-
|
| 1095 |
-
LEVEL 3 — IRDAI Integrated Grievance Management System:
|
| 1096 |
-
URL: https://igms.irda.gov.in/
|
| 1097 |
-
|
| 1098 |
-
LEGAL DISPUTES:
|
| 1099 |
-
- Interpretation of policy terms governed by INDIAN LAW
|
| 1100 |
-
- Subject to jurisdiction of INDIAN COURTS
|
| 1101 |
-
|
| 1102 |
-
CLAIM SETTLEMENT PENAL INTEREST:
|
| 1103 |
-
- Delay beyond 30 days (normal) or 45 days (investigation):
|
| 1104 |
-
Penal interest at 2% ABOVE RBI Bank Rate from date of last document receipt
|
| 1105 |
-
[/CHUNK]
|
| 1106 |
-
|
| 1107 |
-
[CHUNK]
|
| 1108 |
-
id : DEFINITIONS_001
|
| 1109 |
-
section : Key Policy Definitions
|
| 1110 |
-
subsection : Core Terms — PED, Hospitalization, Day Care, Domiciliary, Room Rent, Grace Period
|
| 1111 |
-
topic_tags : definitions, pre-existing disease PED 36 months, hospitalization 24 hours, day care less than 24 hours, domiciliary hospitalization, room rent single private, grace period 30 days, cashless facility, co-payment zero, reasonable customary charges, medically necessary treatment, network provider
|
| 1112 |
-
entities : Def:PED_36months|Def:Hospitalization_24hrs|Def:DayCare_under24hrs|Def:Domiciliary|Def:SinglePrivateRoom|Def:GracePeriod_30days|Def:Cashless|Def:CoPay_Zero|Def:ReasonableCustomaryCharges|Def:MedicallyNecessaryTreatment
|
| 1113 |
-
relationships : PED|diagnosis_window|36_months;Hospitalization|minimum|24_hours;DayCare|duration|Under_24_hours;Grace_Period|duration|30_days_annual;CoPay|amount|Zero_in_Base;Network_Provider|enables|Cashless_Facility
|
| 1114 |
-
text :
|
| 1115 |
-
KEY POLICY DEFINITIONS
|
| 1116 |
-
|
| 1117 |
-
PRE-EXISTING DISEASE (PED):
|
| 1118 |
-
Any condition, ailment, injury, or disease:
|
| 1119 |
-
(a) Diagnosed by a physician within 36 months PRIOR to policy commencement, OR
|
| 1120 |
-
(b) For which medical advice/treatment was recommended or received within 36 months prior
|
| 1121 |
-
(Declaration NOT required; all PEDs accepted; 12-month wait for new members)
|
| 1122 |
-
|
| 1123 |
-
HOSPITALIZATION:
|
| 1124 |
-
Admission in a Hospital for MINIMUM 24 consecutive in-patient care hours,
|
| 1125 |
-
EXCEPT for specified day care procedures.
|
| 1126 |
-
|
| 1127 |
-
DAY CARE TREATMENT:
|
| 1128 |
-
Medical treatment or surgical procedure under general/local anaesthesia in less than 24 hours,
|
| 1129 |
-
which would otherwise require 24+ hour hospitalization.
|
| 1130 |
-
OPD treatment NOT included.
|
| 1131 |
-
|
| 1132 |
-
DOMICILIARY HOSPITALIZATION:
|
| 1133 |
-
Medical treatment for illness requiring hospital care but taken at home because:
|
| 1134 |
-
(i) Patient cannot be moved to hospital, OR (ii) No hospital bed available.
|
| 1135 |
-
Minimum: 3 consecutive days.
|
| 1136 |
-
|
| 1137 |
-
SINGLE PRIVATE ROOM:
|
| 1138 |
-
Basic (cheapest) single-patient room with attached toilet.
|
| 1139 |
-
This is the Base plan's room rent entitlement.
|
| 1140 |
-
|
| 1141 |
-
REASONABLE AND CUSTOMARY CHARGES:
|
| 1142 |
-
Standard charges for that provider in that locality for identical/similar services.
|
| 1143 |
-
Actual charges must not exceed what would be charged if the person were uninsured.
|
| 1144 |
-
|
| 1145 |
-
MEDICALLY NECESSARY TREATMENT:
|
| 1146 |
-
Treatment that: (i) Is required for medical management; (ii) Does not exceed level of care
|
| 1147 |
-
needed; (iii) Is prescribed by a Medical Practitioner; (iv) Conforms to accepted professional
|
| 1148 |
-
standards in India or internationally.
|
| 1149 |
-
|
| 1150 |
-
CO-PAYMENT:
|
| 1151 |
-
Specified % of admissible claim borne by policyholder. Amount: ZERO in NITDAA Base plan.
|
| 1152 |
-
|
| 1153 |
-
GRACE PERIOD:
|
| 1154 |
-
30 days (annual/quarterly/half-yearly) or 15 days (monthly) after premium due date.
|
| 1155 |
-
Renewal within grace period preserves all continuity benefits.
|
| 1156 |
-
Coverage is NOT available during the grace period.
|
| 1157 |
-
|
| 1158 |
-
NETWORK PROVIDER:
|
| 1159 |
-
Hospital enlisted by ABHI for cashless treatment.
|
| 1160 |
-
List: https://www.adityabirlacapital.com/healthinsurance/locate-care/hospital-listing
|
| 1161 |
-
[/CHUNK]
|
| 1162 |
-
|
| 1163 |
-
[CHUNK]
|
| 1164 |
-
id : DEFINITIONS_002
|
| 1165 |
-
section : Key Policy Definitions
|
| 1166 |
-
subsection : Critical Illness Definitions with Diagnostic Criteria
|
| 1167 |
-
topic_tags : critical illness definition, cancer specified severity, myocardial infarction heart attack ECG troponin, CABG bypass sternotomy, coma 96 hours life support, kidney failure dialysis, stroke 3 months deficit, organ transplant, paralysis 2 limbs 3 months, motor neuron ALS, multiple sclerosis 6 months, angioplasty 50 percent blockage, benign brain tumour 90 days
|
| 1168 |
-
entities : CI_Def:Cancer|CI_Def:Myocardial_Infarction|CI_Def:CABG|CI_Def:Heart_Valve|CI_Def:Coma_96hrs|CI_Def:Kidney_Failure|CI_Def:Stroke_3months|CI_Def:Organ_Transplant|CI_Def:Paralysis_2limbs|CI_Def:Motor_Neuron|CI_Def:Multiple_Sclerosis_6months|CI_Def:Angioplasty_50pct|CI_Def:Benign_Brain_Tumour
|
| 1169 |
-
relationships : Coma|requires_no_response|96_consecutive_hours;Stroke|requires_permanent_deficit|3_months;Paralysis|requires|2_limbs_AND_3_months;Multiple_Sclerosis|requires_impairment|6_months;Angioplasty|requires_blockage|50_percent_major_coronary
|
| 1170 |
-
text :
|
| 1171 |
-
CRITICAL ILLNESS DEFINITIONS — KEY DIAGNOSTIC CRITERIA
|
| 1172 |
-
|
| 1173 |
-
1. CANCER OF SPECIFIED SEVERITY
|
| 1174 |
-
Malignant tumour with uncontrolled growth; histological evidence required.
|
| 1175 |
-
EXCLUDED: Carcinoma in situ; benign/pre-malignant; non-melanoma skin without metastasis;
|
| 1176 |
-
Prostate Gleason <= 6; Thyroid T1N0M0; CLL < RAI stage 3.
|
| 1177 |
-
|
| 1178 |
-
2. MYOCARDIAL INFARCTION (First Heart Attack)
|
| 1179 |
-
Must have ALL three: (i) Typical clinical symptoms; (ii) New characteristic ECG changes;
|
| 1180 |
-
(iii) Elevation of infarction enzymes, Troponins, or specific biochemical markers.
|
| 1181 |
-
EXCLUDED: Other acute coronary syndromes; angina pectoris.
|
| 1182 |
-
|
| 1183 |
-
3. OPEN CHEST CABG
|
| 1184 |
-
Coronary artery bypass via sternotomy or minimally invasive keyhole.
|
| 1185 |
-
Supported by coronary angiography. EXCLUDED: Angioplasty, intra-arterial procedures.
|
| 1186 |
-
|
| 1187 |
-
4. OPEN HEART REPLACEMENT/REPAIR OF HEART VALVES
|
| 1188 |
-
Actual open-heart surgery; catheter-based/balloon valvotomy excluded.
|
| 1189 |
-
|
| 1190 |
-
5. COMA OF SPECIFIED SEVERITY
|
| 1191 |
-
No response to external stimuli for >= 96 CONSECUTIVE HOURS; life support necessary;
|
| 1192 |
-
permanent neurological deficit assessed at least 30 days after onset.
|
| 1193 |
-
EXCLUDED: Coma from alcohol or drug abuse.
|
| 1194 |
-
|
| 1195 |
-
6. KIDNEY FAILURE REQUIRING REGULAR DIALYSIS
|
| 1196 |
-
End-stage renal disease requiring regular haemodialysis/peritoneal dialysis or renal transplant.
|
| 1197 |
-
|
| 1198 |
-
7. STROKE RESULTING IN PERMANENT SYMPTOMS
|
| 1199 |
-
Cerebrovascular incident with permanent neurological deficit for >= 3 MONTHS.
|
| 1200 |
-
Confirmed by CT/MRI. EXCLUDED: TIA; traumatic brain injury.
|
| 1201 |
-
|
| 1202 |
-
8. MAJOR ORGAN / BONE MARROW TRANSPLANT
|
| 1203 |
-
Transplant of: heart, lung, liver, kidney, or pancreas (end-stage failure), OR
|
| 1204 |
-
bone marrow using haematopoietic stem cells.
|
| 1205 |
-
|
| 1206 |
-
9. PERMANENT PARALYSIS OF LIMBS
|
| 1207 |
-
Total and irreversible loss of use of 2 or more limbs.
|
| 1208 |
-
Must be present for MORE THAN 3 MONTHS.
|
| 1209 |
-
|
| 1210 |
-
10. MOTOR NEURON DISEASE WITH PERMANENT SYMPTOMS
|
| 1211 |
-
SMA, progressive bulbar palsy, ALS, or primary lateral sclerosis.
|
| 1212 |
-
Significant permanent functional neurological impairment >= 3 CONTINUOUS MONTHS.
|
| 1213 |
-
|
| 1214 |
-
11. MULTIPLE SCLEROSIS WITH PERSISTING SYMPTOMS
|
| 1215 |
-
Unequivocal MRI findings + current clinical motor/sensory impairment >= 6 MONTHS.
|
| 1216 |
-
EXCLUDED: SLE and other neurological damage.
|
| 1217 |
-
|
| 1218 |
-
12. ANGIOPLASTY
|
| 1219 |
-
Percutaneous coronary intervention with balloon +/- stent for >= 50% blockage in major
|
| 1220 |
-
coronary artery. Medically necessary per cardiologist; supported by CAG.
|
| 1221 |
-
EXCLUDED: Diagnostic angiography without angioplasty/stent insertion.
|
| 1222 |
-
|
| 1223 |
-
13. BENIGN BRAIN TUMOUR
|
| 1224 |
-
Life-threatening non-cancerous tumour; confirmed by CT/MRI.
|
| 1225 |
-
Must result in: permanent neurological deficit for >= 90 continuous days,
|
| 1226 |
-
OR surgical resection or radiation therapy.
|
| 1227 |
-
EXCLUDED: Cysts, granulomas, AVM, hematomas, abscesses, pituitary tumours.
|
| 1228 |
-
[/CHUNK]
|
| 1229 |
-
|
| 1230 |
-
[CHUNK]
|
| 1231 |
-
id : GRAPH_SCHEMA_NODES
|
| 1232 |
-
section : KuzuDB Graph Schema
|
| 1233 |
-
subsection : Node Table Definitions and Instances
|
| 1234 |
-
topic_tags : KuzuDB, graph schema, node tables, entity types, knowledge graph, RAG pipeline, CREATE NODE TABLE, Organization, Plan, Member_Type, Benefit, Waiting_Period, Disease, Exclusion, Contact_Person, Body_System
|
| 1235 |
-
entities : Schema:Node_Tables
|
| 1236 |
-
relationships : Schema|defines|KuzuDB_Node_Tables
|
| 1237 |
-
text :
|
| 1238 |
-
KUZU GRAPH DB — NODE TABLE DEFINITIONS
|
| 1239 |
-
|
| 1240 |
-
CREATE NODE TABLE Organization (
|
| 1241 |
-
name STRING PRIMARY KEY,
|
| 1242 |
-
type STRING, -- insurer | broker | alumni_association | regulator | tech_partner
|
| 1243 |
-
contact_email STRING,
|
| 1244 |
-
contact_phone STRING,
|
| 1245 |
-
website STRING
|
| 1246 |
-
);
|
| 1247 |
-
Instances: NITDAA, Aditya_Birla_Health_Insurance, Zopper_Insurance_Brokers,
|
| 1248 |
-
NIT_Durgapur, IRDAI, Insurance_Ombudsman, Solvy_Tech_Solutions
|
| 1249 |
-
|
| 1250 |
-
CREATE NODE TABLE Plan (
|
| 1251 |
-
plan_id STRING PRIMARY KEY,
|
| 1252 |
-
name STRING,
|
| 1253 |
-
si_min_lakhs FLOAT,
|
| 1254 |
-
si_max_lakhs FLOAT,
|
| 1255 |
-
cover_type STRING, -- floater
|
| 1256 |
-
tenure_years INT64,
|
| 1257 |
-
copay_pct FLOAT,
|
| 1258 |
-
no_negative_list BOOLEAN,
|
| 1259 |
-
enrolment_start DATE,
|
| 1260 |
-
enrolment_end DATE
|
| 1261 |
-
);
|
| 1262 |
-
Instances: NITDAA_Base_3L {si:3, copay:0, enrol_start:2026-06-08, enrol_end:2026-06-30}
|
| 1263 |
-
NITDAA_Base_5L {si:5, copay:0, enrol_start:2026-06-08, enrol_end:2026-06-30}
|
| 1264 |
-
|
| 1265 |
-
CREATE NODE TABLE Member_Type (
|
| 1266 |
-
type_id STRING PRIMARY KEY,
|
| 1267 |
-
relationship STRING, -- alumni | spouse | child | parent | parent_in_law
|
| 1268 |
-
entry_age_min INT64,
|
| 1269 |
-
entry_age_max INT64,
|
| 1270 |
-
exit_age STRING, -- "lifelong" | integer as string
|
| 1271 |
-
max_count INT64
|
| 1272 |
-
);
|
| 1273 |
-
Instances: Alumni {entry:18-85, exit:lifelong, max:1}
|
| 1274 |
-
Spouse {entry:18-85, exit:lifelong, max:1}
|
| 1275 |
-
Child {entry:0-25, exit:"26_new_member_OR_30_renewal", max:4}
|
| 1276 |
-
-- NEW MEMBER: child exits at 26
|
| 1277 |
-
-- RENEWAL MEMBER (enrolled before 25): continues to age 30
|
| 1278 |
-
Parent {entry:41-85, exit:lifelong, max:2}
|
| 1279 |
-
Parent_in_Law {entry:41-85, exit:lifelong, max:2}
|
| 1280 |
-
|
| 1281 |
-
CREATE NODE TABLE Benefit (
|
| 1282 |
-
benefit_id STRING PRIMARY KEY,
|
| 1283 |
-
name STRING,
|
| 1284 |
-
coverage_type STRING, -- monetary | percentage | days
|
| 1285 |
-
limit_value STRING,
|
| 1286 |
-
covered_in_base BOOLEAN
|
| 1287 |
-
);
|
| 1288 |
-
|
| 1289 |
-
CREATE NODE TABLE Waiting_Period (
|
| 1290 |
-
wp_id STRING PRIMARY KEY,
|
| 1291 |
-
type STRING, -- initial | specific_disease | PED
|
| 1292 |
-
duration_days INT64,
|
| 1293 |
-
applies_new_members BOOLEAN,
|
| 1294 |
-
applies_renewal_members BOOLEAN,
|
| 1295 |
-
accident_exempt BOOLEAN
|
| 1296 |
-
);
|
| 1297 |
-
|
| 1298 |
-
CREATE NODE TABLE Disease (
|
| 1299 |
-
disease_id STRING PRIMARY KEY,
|
| 1300 |
-
name STRING,
|
| 1301 |
-
body_system STRING,
|
| 1302 |
-
wait_months INT64,
|
| 1303 |
-
associated_surgery STRING
|
| 1304 |
-
);
|
| 1305 |
-
|
| 1306 |
-
CREATE NODE TABLE Exclusion (
|
| 1307 |
-
excl_id STRING PRIMARY KEY,
|
| 1308 |
-
name STRING,
|
| 1309 |
-
category STRING, -- standard | behavioural | medical | device | geographical
|
| 1310 |
-
exception_note STRING
|
| 1311 |
-
);
|
| 1312 |
-
|
| 1313 |
-
CREATE NODE TABLE Contact_Person (
|
| 1314 |
-
contact_id STRING PRIMARY KEY,
|
| 1315 |
-
name STRING,
|
| 1316 |
-
organization STRING,
|
| 1317 |
-
phone STRING,
|
| 1318 |
-
support_type STRING,
|
| 1319 |
-
level INT64
|
| 1320 |
-
);
|
| 1321 |
-
Instances: Satyam_Mishra{phone:8130301854, level:1, type:Product_Enrolment}
|
| 1322 |
-
Pradeep_Kumar{phone:9319640944, level:1, type:Claims}
|
| 1323 |
-
Hrithik_Khatana{phone:8800902249, level:2, type:Product_Enrolment}
|
| 1324 |
-
Sujit_Shekhar{phone:8860746253, level:2, type:Claims_Endorsement}
|
| 1325 |
-
Mohit_Sachwani{phone:6362568835, level:3, type:Product_Endorsement}
|
| 1326 |
-
Boudhaayan_Paul{phone:7032220850, level:4, type:Product_Claims_Endorsement}
|
| 1327 |
-
|
| 1328 |
-
CREATE NODE TABLE Body_System (
|
| 1329 |
-
system_id STRING PRIMARY KEY,
|
| 1330 |
-
name STRING
|
| 1331 |
-
);
|
| 1332 |
-
Instances: Eye, Ear_Nose_Throat, Gynecology, Orthopedic_Rheumatological,
|
| 1333 |
-
Gastroenterology, Urogenital, Skin, General_Surgery
|
| 1334 |
-
[/CHUNK]
|
| 1335 |
-
|
| 1336 |
-
[CHUNK]
|
| 1337 |
-
id : GRAPH_SCHEMA_EDGES
|
| 1338 |
-
section : KuzuDB Graph Schema
|
| 1339 |
-
subsection : Edge/Relationship Table Definitions
|
| 1340 |
-
topic_tags : KuzuDB, graph schema, edge tables, relationships, CREATE REL TABLE, ADMINISTERS, UNDERWRITES, COVERS, EXCLUDES, HAS_WAITING_PERIOD, BELONGS_TO_SYSTEM, HANDLES_SUPPORT, ESCALATES_TO, knowledge graph traversal
|
| 1341 |
-
entities : Schema:Edge_Tables
|
| 1342 |
-
relationships : Schema|defines|KuzuDB_Edge_Tables
|
| 1343 |
-
text :
|
| 1344 |
-
KUZU GRAPH DB — EDGE/RELATIONSHIP TABLE DEFINITIONS
|
| 1345 |
-
|
| 1346 |
-
CREATE REL TABLE ADMINISTERS (FROM Organization TO Plan);
|
| 1347 |
-
-- NITDAA ADMINISTERS NITDAA_Base_3L, NITDAA_Base_5L
|
| 1348 |
-
|
| 1349 |
-
CREATE REL TABLE UNDERWRITES (FROM Organization TO Plan);
|
| 1350 |
-
-- Aditya_Birla_Health_Insurance UNDERWRITES NITDAA_Base_3L, NITDAA_Base_5L
|
| 1351 |
-
|
| 1352 |
-
CREATE REL TABLE BROKERS (FROM Organization TO Plan);
|
| 1353 |
-
-- Zopper_Insurance_Brokers BROKERS NITDAA_Base_3L, NITDAA_Base_5L
|
| 1354 |
-
|
| 1355 |
-
CREATE REL TABLE COVERS (FROM Plan TO Benefit, coverage_pct FLOAT, max_amount INT64);
|
| 1356 |
-
-- NITDAA_Base COVERS Room_Rent, PreHosp_60d, PostHosp_90d, Modern_Tx_100pct, etc.
|
| 1357 |
-
|
| 1358 |
-
CREATE REL TABLE EXCLUDES (FROM Plan TO Exclusion, exception_note STRING);
|
| 1359 |
-
|
| 1360 |
-
CREATE REL TABLE MEMBER_ELIGIBLE (FROM Member_Type TO Plan, max_count INT64);
|
| 1361 |
-
|
| 1362 |
-
CREATE REL TABLE HAS_WAITING_PERIOD (FROM Disease TO Waiting_Period, duration_months INT64);
|
| 1363 |
-
-- All ~30 diseases from Sections 5 map to Specific_Disease_12_Month waiting period
|
| 1364 |
-
|
| 1365 |
-
CREATE REL TABLE BELONGS_TO_SYSTEM (FROM Disease TO Body_System);
|
| 1366 |
-
-- Cataract -> Eye; Sinusitis -> ENT; PCOD -> Gynecology; Gout -> Orthopedic, etc.
|
| 1367 |
-
|
| 1368 |
-
CREATE REL TABLE ASSOCIATED_SURGERY (FROM Disease TO Treatment, surgery_name STRING);
|
| 1369 |
-
|
| 1370 |
-
CREATE REL TABLE HANDLES_SUPPORT (FROM Contact_Person TO Support_Category, level INT64);
|
| 1371 |
-
|
| 1372 |
-
CREATE REL TABLE ESCALATES_TO (FROM Organization TO Organization);
|
| 1373 |
-
-- ABHI_Grievance -> Insurance_Ombudsman -> IRDAI_IGMS
|
| 1374 |
-
|
| 1375 |
-
CREATE REL TABLE COMPATIBLE_WITH (FROM Plan TO External_Insurance_Category STRING);
|
| 1376 |
-
-- NITDAA_Base COMPATIBLE_WITH "Employer_Group_Insurance"
|
| 1377 |
-
-- NITDAA_Base COMPATIBLE_WITH "Individual_Retail_Insurance"
|
| 1378 |
-
|
| 1379 |
-
CREATE REL TABLE HAS_ENROLMENT_WINDOW (FROM Plan TO Date_Range, start DATE, end DATE);
|
| 1380 |
-
-- NITDAA_Base -> {2026-06-08 to 2026-06-30}
|
| 1381 |
-
|
| 1382 |
-
EXAMPLE GRAPH TRAVERSAL QUERIES (KuzuDB Cypher):
|
| 1383 |
-
|
| 1384 |
-
-- Find all Eye diseases with 12-month wait:
|
| 1385 |
-
MATCH (d:Disease)-[:BELONGS_TO_SYSTEM]->(s:Body_System {name:'Eye'})
|
| 1386 |
-
RETURN d.name, d.associated_surgery, d.wait_months
|
| 1387 |
-
|
| 1388 |
-
-- Find who handles claims support at Level 1:
|
| 1389 |
-
MATCH (c:Contact_Person)
|
| 1390 |
-
WHERE c.level = 1 AND c.support_type CONTAINS 'Claims'
|
| 1391 |
-
RETURN c.name, c.phone
|
| 1392 |
-
|
| 1393 |
-
-- All diseases with 12-month waiting period:
|
| 1394 |
-
MATCH (d:Disease)-[:HAS_WAITING_PERIOD]->(w:Waiting_Period {type:'specific_disease'})
|
| 1395 |
-
RETURN d.name, d.body_system, d.associated_surgery ORDER BY d.body_system
|
| 1396 |
-
[/CHUNK]
|
| 1397 |
-
|
| 1398 |
-
[CHUNK]
|
| 1399 |
-
id : CHROMADB_CONFIG
|
| 1400 |
-
section : ChromaDB Collection Configuration
|
| 1401 |
-
subsection : Collection Setup, Metadata Schema, Query Routing, BM25 Config
|
| 1402 |
-
topic_tags : ChromaDB configuration, vector database, metadata schema, query routing, embedding model, BM25, collection name, RAG pipeline config, hybrid search, cosine distance, RRF
|
| 1403 |
-
entities : Config:ChromaDB_Collection|Config:BM25_Settings|Config:Query_Routing
|
| 1404 |
-
relationships : Config|collection_name|nitdaa_health_insurance_kb_2026
|
| 1405 |
-
text :
|
| 1406 |
-
CHROMADB COLLECTION CONFIGURATION
|
| 1407 |
-
|
| 1408 |
-
COLLECTION NAME: nitdaa_health_insurance_kb_2026
|
| 1409 |
-
|
| 1410 |
-
METADATA SCHEMA (for .add() calls):
|
| 1411 |
-
{
|
| 1412 |
-
"id" : <chunk_id string>,
|
| 1413 |
-
"section" : <top-level section name>,
|
| 1414 |
-
"subsection" : <sub-level section name>,
|
| 1415 |
-
"topic_tags" : <comma-separated BM25 keyword string>,
|
| 1416 |
-
"doc_version" : "3.1",
|
| 1417 |
-
"policy_year" : "2026",
|
| 1418 |
-
"insurer" : "Aditya_Birla_Health_Insurance",
|
| 1419 |
-
"plan_type" : "Base_Only"
|
| 1420 |
-
}
|
| 1421 |
-
|
| 1422 |
-
EMBEDDING RECOMMENDATIONS:
|
| 1423 |
-
Primary Model : text-embedding-3-small (OpenAI) or all-MiniLM-L6-v2 (open-source)
|
| 1424 |
-
Chunk Strategy : Semantic chunking at section/subsection boundaries (not character splits)
|
| 1425 |
-
Chunk Size : ~300-800 tokens per chunk
|
| 1426 |
-
Overlap : None required (semantic boundaries used)
|
| 1427 |
-
Distance : cosine
|
| 1428 |
-
|
| 1429 |
-
BM25 HYBRID SEARCH CONFIGURATION:
|
| 1430 |
-
BM25 index fields : id, topic_tags, text
|
| 1431 |
-
Tokenizer : whitespace + lowercase + domain stopwords removed
|
| 1432 |
-
Domain terms to boost (BM25 weight 1.5x):
|
| 1433 |
-
"NITDAA", "PED", "waiting period", "sum insured", "cashless", "reimbursement",
|
| 1434 |
-
"pre-hospitalization", "post-hospitalization", "ABHI", "Aditya Birla",
|
| 1435 |
-
"specific diseases", "moratorium", "domiciliary", "co-payment",
|
| 1436 |
-
"NRI", "alumni", "enrolment", "floater", "critical illness",
|
| 1437 |
-
"NIT Durgapur", "pre-existing disease", "12 months"
|
| 1438 |
-
|
| 1439 |
-
QUERY ROUTING BY METADATA FILTER (ChromaDB where clause):
|
| 1440 |
-
Coverage questions -> section = "Covered Benefits"
|
| 1441 |
-
Waiting period questions -> section in ["Waiting Periods", "Specific Diseases — 12-Month Wait"]
|
| 1442 |
-
Exclusion questions -> section = "Exclusions"
|
| 1443 |
-
Claims questions -> section = "Claims Process"
|
| 1444 |
-
Eligibility questions -> section = "Eligibility"
|
| 1445 |
-
NRI questions -> subsection CONTAINS "NRI"
|
| 1446 |
-
Contact questions -> section = "Contacts and Support"
|
| 1447 |
-
Definition questions -> section = "Key Policy Definitions"
|
| 1448 |
-
Critical illness definitions -> subsection CONTAINS "Critical Illness"
|
| 1449 |
-
Life stage questions -> section = "Life Stage Evaluation Guide"
|
| 1450 |
-
Alumni death questions -> section = "Alumni Death — Policy Continuation"
|
| 1451 |
-
Premium questions -> section = "Premium and Payment"
|
| 1452 |
-
Renewal questions -> section = "Renewals and Continuity"
|
| 1453 |
-
|
| 1454 |
-
HYBRID RETRIEVAL PIPELINE (recommended):
|
| 1455 |
-
1. BM25 pass: retrieve top-10 by keyword match on topic_tags + text
|
| 1456 |
-
2. Vector pass: retrieve top-10 by cosine similarity on text embedding
|
| 1457 |
-
3. Merge and re-rank: RRF score = 1/(60+rank_bm25) + 1/(60+rank_vector)
|
| 1458 |
-
4. Return top-5 chunks (k=60, standard RRF constant)
|
| 1459 |
-
|
| 1460 |
-
KUZU + CHROMA INTEGRATION PATTERN:
|
| 1461 |
-
- Graph (KuzuDB): structured entity lookups (disease by body system, contact by level)
|
| 1462 |
-
- Vector (ChromaDB): semantic queries (what is covered for heart problems?)
|
| 1463 |
-
- Agent routing: structured entity queries -> KuzuDB; open questions -> ChromaDB
|
| 1464 |
-
[/CHUNK]
|
| 1465 |
-
|
| 1466 |
-
|
| 1467 |
-
[CHUNK]
|
| 1468 |
-
id : ELIGIBILITY_004
|
| 1469 |
-
section : Eligibility
|
| 1470 |
-
subsection : Children Age Policy — New vs Renewal Members (Critical Distinction)
|
| 1471 |
-
topic_tags : children age limit, child coverage 25 years, child coverage 30 years, renewal member child age 30, new member child age 25, child exit age, children above 25 covered, age 26 27 28 29 30 child renewal, child continue coverage renewal, children age policy difference
|
| 1472 |
-
entities : Rule:New_Member_Child_Max25|Rule:Renewal_Member_Child_Continues_to_30|Age:Child_New_Entry_Max25|Age:Child_Renewal_Exit_30|Policy:Children_Age_Split
|
| 1473 |
-
relationships : New_Member|child_coverage_until|25_years_entry_26_exit;Renewal_Member_Child_above25|coverage_continues_until|30_years;Child_Already_Enrolled|special_rule|Continue_to_30;New_Child_Enrollment|entry_cap|25_years
|
| 1474 |
-
text :
|
| 1475 |
-
CHILDREN AGE POLICY — NEW MEMBERS vs RENEWAL MEMBERS
|
| 1476 |
-
|
| 1477 |
-
THIS IS A CRITICAL POLICY DISTINCTION (2026 Update):
|
| 1478 |
-
|
| 1479 |
-
FOR CHILDREN OF NEW MEMBERS (first-time enrollment):
|
| 1480 |
-
- Entry age : Day 1 (newborn) to 25 years
|
| 1481 |
-
- Coverage exits: Age 26 (upon turning 26)
|
| 1482 |
-
- Children above 25 years CANNOT be newly enrolled under new memberships
|
| 1483 |
-
|
| 1484 |
-
FOR CHILDREN OF RENEWAL MEMBERS (already in the program):
|
| 1485 |
-
- If the child was enrolled before turning 25 and the policy is being renewed:
|
| 1486 |
-
- Coverage CONTINUES up to age 30
|
| 1487 |
-
- Children of renewal members who are currently 26, 27, 28, or 29 years old
|
| 1488 |
-
will remain covered under the renewal policy until they turn 30
|
| 1489 |
-
- This is a continuity benefit for loyal renewal members only
|
| 1490 |
-
|
| 1491 |
-
PRACTICAL EXAMPLES:
|
| 1492 |
-
Example 1 — New Enrollment (2026):
|
| 1493 |
-
Alumni joining fresh in 2026 → can add child aged 24 → child covered until 26
|
| 1494 |
-
Cannot add child aged 26 or above as a new member enrollment
|
| 1495 |
-
|
| 1496 |
-
Example 2 — Renewal Member (was enrolled previously):
|
| 1497 |
-
Alumni renewing in 2026 → child who is 27 years old → continues to be covered
|
| 1498 |
-
This child will exit the policy when they turn 30
|
| 1499 |
-
|
| 1500 |
-
SUMMARY TABLE:
|
| 1501 |
-
Scenario | Child Age at Exit
|
| 1502 |
-
--------------------------------------|--------------------
|
| 1503 |
-
New member enrollment | 26 years
|
| 1504 |
-
Renewal member (child already enrolled)| 30 years
|
| 1505 |
-
|
| 1506 |
-
NOTE: Payment gateway for 2026 enrollment opens on 10th June 2026.
|
| 1507 |
-
Enrollment portal opens 08 June 2026; payment processing begins 10 June 2026.
|
| 1508 |
-
|
| 1509 |
-
CONTACT for age eligibility clarification:
|
| 1510 |
-
Satyam Mishra: 8130301854 | nitdaahealthplan@zopper.com
|
| 1511 |
-
[/CHUNK]
|
| 1512 |
-
################################################################################
|
| 1513 |
-
# END OF KNOWLEDGE BASE
|
| 1514 |
-
################################################################################
|
| 1515 |
-
# Total Chunks : 33
|
| 1516 |
-
# Version : 3.1 | Generated : 2026-06-09
|
| 1517 |
-
# Plan Scope : Base Policy Only — STUP and Worldwide Coverage excluded
|
| 1518 |
-
# Policy Year : 2026
|
| 1519 |
-
# Insurer : Aditya Birla Health Insurance | UIN: ADIHLGP22190V032122
|
| 1520 |
-
################################################################################
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
key.pem
DELETED
|
@@ -1,52 +0,0 @@
|
|
| 1 |
-
-----BEGIN PRIVATE KEY-----
|
| 2 |
-
MIIJQQIBADANBgkqhkiG9w0BAQEFAASCCSswggknAgEAAoICAQCxYyS+1xBo6xMQ
|
| 3 |
-
O+ccz+eY7/HmHMZuxun/mZD14ZN543bs6QawpM1o1msU1h6sgSbS29v1NbkLdqdI
|
| 4 |
-
Ldm8AGYP0IS0vYfolDPut5gRoKncu6nKDg0lWmQmep1uYGGInzhajmzPH9oVLYkq
|
| 5 |
-
6PaY3k4+Nv8WcgFzcu6AkVSU4glw0Fi/8SA9jKKU83DwjEUspDrumfjRe8LEvmgI
|
| 6 |
-
NXqvQ9kNsEJZSNvr90mTwHTOlysT4L7Vp9gEGWgrkOme4d9k3LckTFvjI/98Py8d
|
| 7 |
-
dr4tXbrMhQ7r/wa/N8KgswA9g+FM4YcvzV7DSxUl+uFuFiRkTwMjVSLbMX59Oouu
|
| 8 |
-
rj06+Vu78rR9AUN8t079v00ajxPIFRSvRICz8hu3gp1my9Cj3B4XkAQZi9Wuoyt1
|
| 9 |
-
Rw+Tbvu3gRnxemNawXWVpXr/9ui2p2rg7k8hB5wYt59gphLIKGAS3VbjvI5110gx
|
| 10 |
-
5zgYHcBhiVaZVgucyYG9TNbVT0zj+/muKZZzIm5QH1AKg71w4Se37CecuyqTKfqb
|
| 11 |
-
/MjSzObqWESmm7SBPqx81Dai0e9/O60/Dg141Y88smjlEtCZWKhUG/sRLsJr9Bzr
|
| 12 |
-
D6szPdtsZaRfmqB8kMgOWetyYepPVFUplxFPpVZHhWLCQ2ps/DHl60Cg9QcPhr47
|
| 13 |
-
T6W0S/tNZ5Kl8p69bdO6P+Yd4ZWNbwIDAQABAoICAAkm9F5kT5RvjIGUlaKxl2Fs
|
| 14 |
-
qoO/jagUMJPfeHs3Mu9hrQvMJMGNvzYJhLzZJKasgzRIjltjH4kCi4mjKU4UjITZ
|
| 15 |
-
sqnLSEKCYwDjYr/baj2D8TQGRZIHzThZsIW2s1GOkCRxShaQWNApk/TYJYuoQfaJ
|
| 16 |
-
H+Aolv/ojiWpWekp6xLHAnfkw6UT/HodlVYpO+hxu23+w7e14EwGXEJlf/mgUTKY
|
| 17 |
-
8CjAeZhTH0NgSqaIu3rrEu2IcLzFaCUsn4vIW55N76UPy4M3TZc7gKgkgutpn+8C
|
| 18 |
-
w8z+piUiMLMvM8lOD0cdhma7pzKsTQsInAOcti6hZP1jBx6yubP8W/icmiF7fCAV
|
| 19 |
-
pOZhuPeQtTc4TFhmu94ZSSY54YZPXjmHH1pMPbameSVxk0xrl/sdW8NIlDTS9eM0
|
| 20 |
-
XBIQcFxd0hgJoypIS+l/6bqH3738hwCDzin0I/qimb9FQoM6B3Zh44QmAMWtK5PY
|
| 21 |
-
TxnH3lRQ/X11OOugJ1CPMux1tO07rWEvZPg5V42RzlojECDOeRmx8K/rt8zIVq1D
|
| 22 |
-
NKWHIjPYtmuB3SkSXybzARzxVUQTBvqYxydCS84IJhxuIqTKfmFyqdsque67OapI
|
| 23 |
-
1BlSuQ5EUarmLKqq4KNYTAVEE+jbSV2hKyDnRypEHG95x/CeoarGgn8DF7dTdmnq
|
| 24 |
-
ygK6QDsAj65e5V/NQAYBAoIBAQDksfBhv+QH5fAC4u/AU+EyJJ7XLtkRp0L55Iuz
|
| 25 |
-
npQNCnqihTVM6ygkH8wnsLDk+tuvIKolaxGJ1nEKlZmPOi9MTbwvT2XrM2Qa7aCj
|
| 26 |
-
lnwatX31UxSgU/TH4PjNBFPe/pZSlRtIpErMXY+nR49tq2RPGqP/dfDFEmloLkVB
|
| 27 |
-
XTrkz/WOrEY9gaHy4YhJM24RPi8crrlJHEPQPVCpzJmQ7vnN1lpIw+PFgD0uk5hl
|
| 28 |
-
k/Ar27kVecIArhOkA+uYTqz5CEO0QPPmE/dPl3NnDUO7YgnDOE6JAq/ZN/FJYarD
|
| 29 |
-
impttVwb+ewSiArmRBdjmubtaGnkEeOXB5vtyaK5+xxHGvt5AoIBAQDGkPuRBu5c
|
| 30 |
-
4MgRv1AgZRaL+pl8E6hWBFY/xatgrJf4rpJs1XQTyBl5RpCREyt8RXBx7Xx9+O6A
|
| 31 |
-
0smsN+EYeX8xR47SAbW9i6euKDqWBhSj8lBWhGC8IDoX8NxRjVSNZnYf67tNzI40
|
| 32 |
-
UrsriY5HkOO5h1fYdRTkoZcCk95r+4x+q6ZlloCXJ+uIryTuwmCvSJwzXYseUys+
|
| 33 |
-
AqN2eirNtE7BN2cCF4HcWENejWxDnfLEtnRYI9A0TMdGW8lqdT83RJv8nWcmo916
|
| 34 |
-
iEkxsH2gBfvOIeK4KejxgJbZoAbDGaJo1LIfEW1SK+8CzbWrVLa3+0OGCDciB2Op
|
| 35 |
-
OWpoKHrxta4nAoIBACpKOVBqIqnPPGXcP0eKe09BdFoIYL2h94GsYKUTgv8yW+En
|
| 36 |
-
zuZtadvcQW1pgBynwu4MlUocFX8ut3KknWPd95cdnNoGzasDstRD8vutPT/XJfay
|
| 37 |
-
qVLIk7BOitOmpDfNTlDxH718HBTUjFb7pas7EW6LV55K2f4nXHSWcdoXemeLiTYb
|
| 38 |
-
51VCXodCa2hV6Vmo7R9ZtAuv/V5JqFvt6MvjVTBaHhHsn3cLMsUlJ/5IsBX8KKqu
|
| 39 |
-
/FAR4LHow61Dhzr560Mu66s1L/t43y9ERa0mAPYnuGYfqBL8BFN0ixZjxzCIZAMM
|
| 40 |
-
YTpAC/vuxYB2yZNHRqWVJUftcUk0izHnHKCNfckCggEAGCUPAe6G03JdwZKyyo2g
|
| 41 |
-
NTsuqKC3SmZSmoSNtz6laA7KLUOzTqh5OH71Gz7qfbzv1FqdVbAMSEvZTACrdU9o
|
| 42 |
-
wPRDkJO2pqqxpAKuRQnOPrU7QZntLVL53WljUONPkbYQzQbcCrTB4ejha4TZcShU
|
| 43 |
-
GH41l1N9S+O+OgkC9bxrtAdpP1cSoc6v3Dn30rR+DzJUFAbe4LwaOPsXJ1PpmoO/
|
| 44 |
-
Q81Z0C5Nkx6Eap3luT8egv7wnLsWGRXw8UQ99Jz3J+BG22vEXDV2u+yQgeNFE01G
|
| 45 |
-
9iS2rdAizCLntOS5jcWzMu4SDqcO1PwUnxGmcoPlh++coVKkaZXeb3hU0P+DG5sM
|
| 46 |
-
5wKCAQAewjZkCidwClg8lUazvba5oa0ae4bEjfHeiOa+ZFdn1QXug8/SWAw4089W
|
| 47 |
-
IO/lp7npO0oUVD07BloUUUxI/R3rzSpBvvEGwg8rXP+YDXO/58UU40YOO781gzQ8
|
| 48 |
-
BAdcvhas8GTwr1NPTTuYGIxR95r2R6INRHExmsGTf6xXA+3COujz8XMcM8NGSuCe
|
| 49 |
-
ZiM+fqn1Ys0ksaS6ArhiWFTJQOjS7eyCp0tK0T3DZfMAeq4EpdHMT6Ic2jvgqQiB
|
| 50 |
-
YH7FT0k55ivhEtoH8yrUUHG9Dq/k2Y3N2UesZ5kZe59IZvLYvzB3seXt+1G+x8Jz
|
| 51 |
-
PdUp0U9vDa8TQvoXdrRCxKkK/Ltb
|
| 52 |
-
-----END PRIVATE KEY-----
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
nvidia_frontend_test.html
DELETED
|
@@ -1,204 +0,0 @@
|
|
| 1 |
-
<!DOCTYPE html>
|
| 2 |
-
<html lang="en">
|
| 3 |
-
<head>
|
| 4 |
-
<meta charset="UTF-8">
|
| 5 |
-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
-
<title>NVIDIA LLM Local Endpoint Tester</title>
|
| 7 |
-
<style>
|
| 8 |
-
body {
|
| 9 |
-
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
| 10 |
-
background-color: #121212;
|
| 11 |
-
color: #e0e0e0;
|
| 12 |
-
margin: 0;
|
| 13 |
-
padding: 20px;
|
| 14 |
-
display: flex;
|
| 15 |
-
flex-direction: column;
|
| 16 |
-
align-items: center;
|
| 17 |
-
}
|
| 18 |
-
h1 {
|
| 19 |
-
color: #76b900; /* NVIDIA Green */
|
| 20 |
-
margin-bottom: 20px;
|
| 21 |
-
}
|
| 22 |
-
.container {
|
| 23 |
-
width: 100%;
|
| 24 |
-
max-width: 800px;
|
| 25 |
-
background-color: #1e1e1e;
|
| 26 |
-
border-radius: 10px;
|
| 27 |
-
padding: 20px;
|
| 28 |
-
box-shadow: 0 4px 15px rgba(0,0,0,0.5);
|
| 29 |
-
}
|
| 30 |
-
.form-group {
|
| 31 |
-
margin-bottom: 15px;
|
| 32 |
-
}
|
| 33 |
-
label {
|
| 34 |
-
display: block;
|
| 35 |
-
margin-bottom: 5px;
|
| 36 |
-
font-weight: bold;
|
| 37 |
-
color: #bbb;
|
| 38 |
-
}
|
| 39 |
-
textarea, input[type="text"], input[type="number"] {
|
| 40 |
-
width: 100%;
|
| 41 |
-
padding: 10px;
|
| 42 |
-
border: 1px solid #333;
|
| 43 |
-
border-radius: 5px;
|
| 44 |
-
background-color: #2a2a2a;
|
| 45 |
-
color: #fff;
|
| 46 |
-
box-sizing: border-box;
|
| 47 |
-
}
|
| 48 |
-
textarea {
|
| 49 |
-
resize: vertical;
|
| 50 |
-
height: 120px;
|
| 51 |
-
}
|
| 52 |
-
button {
|
| 53 |
-
background-color: #76b900;
|
| 54 |
-
color: #000;
|
| 55 |
-
border: none;
|
| 56 |
-
padding: 10px 20px;
|
| 57 |
-
border-radius: 5px;
|
| 58 |
-
font-weight: bold;
|
| 59 |
-
cursor: pointer;
|
| 60 |
-
transition: background-color 0.2s;
|
| 61 |
-
font-size: 16px;
|
| 62 |
-
}
|
| 63 |
-
button:hover {
|
| 64 |
-
background-color: #8ce100;
|
| 65 |
-
}
|
| 66 |
-
button:disabled {
|
| 67 |
-
background-color: #444;
|
| 68 |
-
color: #888;
|
| 69 |
-
cursor: not-allowed;
|
| 70 |
-
}
|
| 71 |
-
.response-area {
|
| 72 |
-
margin-top: 20px;
|
| 73 |
-
}
|
| 74 |
-
.response-box {
|
| 75 |
-
background-color: #2a2a2a;
|
| 76 |
-
border: 1px solid #444;
|
| 77 |
-
border-radius: 5px;
|
| 78 |
-
padding: 15px;
|
| 79 |
-
min-height: 100px;
|
| 80 |
-
white-space: pre-wrap;
|
| 81 |
-
overflow-x: auto;
|
| 82 |
-
color: #dcdcdc;
|
| 83 |
-
line-height: 1.5;
|
| 84 |
-
}
|
| 85 |
-
.error {
|
| 86 |
-
color: #ff5252;
|
| 87 |
-
font-weight: bold;
|
| 88 |
-
}
|
| 89 |
-
.spinner {
|
| 90 |
-
display: none;
|
| 91 |
-
margin-left: 10px;
|
| 92 |
-
border: 3px solid rgba(255,255,255,0.1);
|
| 93 |
-
border-top: 3px solid #76b900;
|
| 94 |
-
border-radius: 50%;
|
| 95 |
-
width: 15px;
|
| 96 |
-
height: 15px;
|
| 97 |
-
animation: spin 1s linear infinite;
|
| 98 |
-
vertical-align: middle;
|
| 99 |
-
}
|
| 100 |
-
@keyframes spin {
|
| 101 |
-
0% { transform: rotate(0deg); }
|
| 102 |
-
100% { transform: rotate(360deg); }
|
| 103 |
-
}
|
| 104 |
-
</style>
|
| 105 |
-
</head>
|
| 106 |
-
<body>
|
| 107 |
-
|
| 108 |
-
<h1>NVIDIA LLM Tester</h1>
|
| 109 |
-
|
| 110 |
-
<div class="container">
|
| 111 |
-
<div class="form-group">
|
| 112 |
-
<label for="endpoint">Local API Endpoint:</label>
|
| 113 |
-
<input type="text" id="endpoint" value="http://127.0.0.1:8003/v1/completions">
|
| 114 |
-
</div>
|
| 115 |
-
|
| 116 |
-
<div class="form-group">
|
| 117 |
-
<label for="prompt">Prompt:</label>
|
| 118 |
-
<textarea id="prompt" placeholder="Enter your prompt here...">What are the top 3 features of NVIDIA GPUs for AI workloads?</textarea>
|
| 119 |
-
</div>
|
| 120 |
-
|
| 121 |
-
<div class="form-group" style="display: flex; gap: 15px;">
|
| 122 |
-
<div style="flex: 1;">
|
| 123 |
-
<label for="max_tokens">Max Tokens:</label>
|
| 124 |
-
<input type="number" id="max_tokens" value="1024">
|
| 125 |
-
</div>
|
| 126 |
-
<div style="flex: 1;">
|
| 127 |
-
<label for="temperature">Temperature:</label>
|
| 128 |
-
<input type="number" id="temperature" value="0.5" step="0.1" min="0" max="2">
|
| 129 |
-
</div>
|
| 130 |
-
</div>
|
| 131 |
-
|
| 132 |
-
<button id="send-btn">
|
| 133 |
-
Send Request
|
| 134 |
-
<span class="spinner" id="spinner"></span>
|
| 135 |
-
</button>
|
| 136 |
-
|
| 137 |
-
<div class="response-area">
|
| 138 |
-
<label>Response:</label>
|
| 139 |
-
<div class="response-box" id="response-box">Awaiting input...</div>
|
| 140 |
-
</div>
|
| 141 |
-
</div>
|
| 142 |
-
|
| 143 |
-
<script>
|
| 144 |
-
document.getElementById('send-btn').addEventListener('click', async () => {
|
| 145 |
-
const endpoint = document.getElementById('endpoint').value.trim();
|
| 146 |
-
const promptText = document.getElementById('prompt').value.trim();
|
| 147 |
-
const maxTokens = parseInt(document.getElementById('max_tokens').value) || 1024;
|
| 148 |
-
const temperature = parseFloat(document.getElementById('temperature').value) || 0.5;
|
| 149 |
-
const responseBox = document.getElementById('response-box');
|
| 150 |
-
const sendBtn = document.getElementById('send-btn');
|
| 151 |
-
const spinner = document.getElementById('spinner');
|
| 152 |
-
|
| 153 |
-
if (!promptText) {
|
| 154 |
-
alert("Please enter a prompt.");
|
| 155 |
-
return;
|
| 156 |
-
}
|
| 157 |
-
|
| 158 |
-
// UI feedback
|
| 159 |
-
sendBtn.disabled = true;
|
| 160 |
-
spinner.style.display = 'inline-block';
|
| 161 |
-
responseBox.innerHTML = '<i>Processing request...</i>';
|
| 162 |
-
responseBox.classList.remove('error');
|
| 163 |
-
|
| 164 |
-
const payload = {
|
| 165 |
-
prompt: promptText,
|
| 166 |
-
max_tokens: maxTokens,
|
| 167 |
-
temperature: temperature
|
| 168 |
-
};
|
| 169 |
-
|
| 170 |
-
try {
|
| 171 |
-
const response = await fetch(endpoint, {
|
| 172 |
-
method: 'POST',
|
| 173 |
-
headers: {
|
| 174 |
-
'Content-Type': 'application/json'
|
| 175 |
-
},
|
| 176 |
-
body: JSON.stringify(payload)
|
| 177 |
-
});
|
| 178 |
-
|
| 179 |
-
if (!response.ok) {
|
| 180 |
-
const errorData = await response.json().catch(() => null);
|
| 181 |
-
const errorMsg = errorData && errorData.error ? errorData.error : `HTTP error ${response.status}`;
|
| 182 |
-
throw new Error(errorMsg);
|
| 183 |
-
}
|
| 184 |
-
|
| 185 |
-
const data = await response.json();
|
| 186 |
-
|
| 187 |
-
if (data.choices && data.choices.length > 0) {
|
| 188 |
-
responseBox.textContent = data.choices[0].text;
|
| 189 |
-
} else if (data.error) {
|
| 190 |
-
throw new Error(data.error);
|
| 191 |
-
} else {
|
| 192 |
-
responseBox.textContent = "Received unexpected response format:\n" + JSON.stringify(data, null, 2);
|
| 193 |
-
}
|
| 194 |
-
} catch (err) {
|
| 195 |
-
responseBox.textContent = `Error: ${err.message}`;
|
| 196 |
-
responseBox.classList.add('error');
|
| 197 |
-
} finally {
|
| 198 |
-
sendBtn.disabled = false;
|
| 199 |
-
spinner.style.display = 'none';
|
| 200 |
-
}
|
| 201 |
-
});
|
| 202 |
-
</script>
|
| 203 |
-
</body>
|
| 204 |
-
</html>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pipeline/Dockerfile
DELETED
|
@@ -1,28 +0,0 @@
|
|
| 1 |
-
FROM python:3.11-slim
|
| 2 |
-
|
| 3 |
-
RUN apt-get update && apt-get install -y \
|
| 4 |
-
tesseract-ocr \
|
| 5 |
-
libgl1 \
|
| 6 |
-
libglib2.0-0 \
|
| 7 |
-
git \
|
| 8 |
-
build-essential \
|
| 9 |
-
&& rm -rf /var/lib/apt/lists/*
|
| 10 |
-
|
| 11 |
-
WORKDIR /app
|
| 12 |
-
|
| 13 |
-
# Install Python requirements
|
| 14 |
-
COPY requirements.txt .
|
| 15 |
-
RUN pip install --no-cache-dir -r requirements.txt
|
| 16 |
-
|
| 17 |
-
# Copy application codebase
|
| 18 |
-
COPY . .
|
| 19 |
-
|
| 20 |
-
# Ensure the start script is executable
|
| 21 |
-
RUN chmod +x start.sh
|
| 22 |
-
|
| 23 |
-
# Expose default HuggingFace Spaces port
|
| 24 |
-
ENV PORT=7860
|
| 25 |
-
EXPOSE 7860
|
| 26 |
-
|
| 27 |
-
# Run all microservices together
|
| 28 |
-
ENTRYPOINT ["bash", "start.sh"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static/screenshot.png
DELETED
Git LFS Details
|