diff --git a/.dockerignore b/.dockerignore
new file mode 100644
index 0000000..8b8cb3c
--- /dev/null
+++ b/.dockerignore
@@ -0,0 +1,29 @@
+venv
+__pycache__
+*.pyc
+*.pyo
+*.pyd
+.Python
+*.so
+*.egg
+*.egg-info
+dist
+build
+.git
+.gitignore
+.env
+.envrc
+.vscode
+.idea
+*.swp
+*.swo
+*~
+.DS_Store
+Potential\ Datasets
+Reference\ papers
+test
+.pytest_cache
+*.log
+*.pkl
+*.pickle
+node_modules
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
new file mode 100644
index 0000000..3f21d28
--- /dev/null
+++ b/.github/workflows/ci.yml
@@ -0,0 +1,62 @@
+name: Build and Test
+
+on:
+ push:
+ branches:
+ - main
+ - develop
+ - master
+ pull_request:
+ branches:
+ - main
+ - develop
+ - master
+
+jobs:
+ test:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+
+ - name: Set up Python
+ uses: actions/setup-python@v4
+ with:
+ python-version: '3.12'
+
+ - name: Install dependencies
+ run: |
+ python -m pip install --upgrade pip
+ pip install -r requirements.txt
+
+ - name: Lint with flake8 (optional)
+ continue-on-error: true
+ run: |
+ pip install flake8
+ flake8 src --count --select=E9,F63,F7,F82 --show-source --statistics
+ flake8 src --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
+
+ - name: Test API import
+ run: |
+ python -c "from src.api.app import app; print('✓ API imports successfully')"
+
+ build:
+ needs: test
+ runs-on: ubuntu-latest
+ if: github.event_name == 'push'
+ steps:
+ - uses: actions/checkout@v4
+
+ - name: Set up Docker Buildx
+ uses: docker/setup-buildx-action@v3
+
+ - name: Build Docker image
+ uses: docker/build-push-action@v5
+ with:
+ context: .
+ push: false
+ tags: lexguard:latest
+ cache-from: type=gha
+ cache-to: type=gha,mode=max
+
+ - name: Log build success
+ run: echo "✓ Docker image built successfully"
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..f734125
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,81 @@
+# Python
+__pycache__/
+*.py[cod]
+*$py.class
+*.so
+.Python
+env/
+venv/
+ENV/
+build/
+develop-eggs/
+dist/
+downloads/
+eggs/
+.eggs/
+lib/
+lib64/
+parts/
+sdist/
+var/
+wheels/
+*.egg-info/
+.installed.cfg
+*.egg
+
+# Virtual environments
+.venv
+pip-log.txt
+pip-delete-this-directory.txt
+
+# IDE
+.vscode/
+.idea/
+*.swp
+*.swo
+*~
+.DS_Store
+
+# Environment
+.env
+.env.local
+.env.*.local
+
+# Logs
+*.log
+logs/
+
+# Data/artifacts
+*.pkl
+*.pickle
+*.joblib
+*.h5
+*.pb
+.cache/
+
+# IDE Pycharm
+.idea/
+
+# Jupyter
+.ipynb_checkpoints/
+*.ipynb
+
+# Test coverage
+.coverage
+.pytest_cache/
+htmlcov/
+
+# Build artifacts
+dist/
+build/
+*.egg-info/
+
+# OS
+.DS_Store
+Thumbs.db
+
+# Project specific
+/data/preds.json
+/data/preds.json.partial
+/tmp/
+node_modules/
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..d95ec1f
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,37 @@
+# Use Python 3.10 (more stable than 3.12 for complex packages)
+FROM python:3.10-slim
+
+# Set working directory
+WORKDIR /app
+
+# Install system dependencies
+RUN apt-get update && apt-get install -y \
+ build-essential \
+ curl \
+ git \
+ && rm -rf /var/lib/apt/lists/*
+
+# Upgrade pip first
+RUN pip install --upgrade pip setuptools wheel
+
+# Copy requirements
+COPY requirements.txt .
+
+# Install PyTorch first (pre-built wheel, avoid compilation)
+RUN pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
+
+# Install other Python dependencies
+RUN pip install --no-cache-dir -r requirements.txt
+
+# Copy entire project
+COPY . .
+
+# Expose port
+EXPOSE 8000
+
+# Health check
+HEALTHCHECK --interval=30s --timeout=10s --start-period=15s --retries=3 \
+ CMD curl -f http://localhost:8000/health || exit 1
+
+# Run the app
+CMD ["python", "-m", "src.api.app"]
diff --git a/README.md b/README.md
index 95404c3..a6db32a 100644
--- a/README.md
+++ b/README.md
@@ -1,94 +1,21 @@
-# LexGuard
-# Policy Compliance Verification System (Offline RAG-LLM Web App)
+# PolicyLens: Explainable Graph-based RAG Compliance Engine
-## Problem Statement
+## Understand policies. Detect risks. Explain decisions.
-We aim to develop an **offline, LLM-powered web application** for automated policy compliance verification across heterogeneous contexts, such as **GDPR-related regulations between countries, contractual clauses in internship agreements versus institutional policy documents, or HR guidelines (e.g., leave policies) against organizational rulebooks**.
-
-Since the documents involved are often **large, sensitive, and security-critical**, they cannot be shared with external online LLM services. Moreover, their size may **exceed the native context window** of modern language models, necessitating the integration of a **retrieval-augmented generation (RAG) pipeline**.
-
-In this setup, policy documents would be ingested into a **vector database** (or equivalent retrieval layer), enabling efficient semantic search to dynamically retrieve only the most relevant segments for context construction during queries. A crucial challenge lies in **domain-aware vectorization**, where embeddings must be generated with respect to the compliance-checking objectives rather than generic semantic similarity.
-
-The system should be designed as a **modular, API-driven architecture**, where components (e.g., embedding service, retrieval engine, reasoning agent, compliance evaluator) remain **loosely coupled** to allow easy substitution of LLMs or AI agents without disrupting the overall workflow.
-
----
-
-## Team Structure & Responsibilities
-
-### **Student A — Data Collection, Curation & Governance**
-- Acquire GDPR texts, institutional policies, HR manuals, contracts, etc.
-- Redaction, de-duplication, versioning, and schema design.
-- Build a labeled dataset for evaluation.
-- Deliverables: `datasets/`, schema/ontology, annotation guidelines, data card.
-
-### **Student B — Ingestion, Chunking, Embedding & Retrieval**
-- Implement document parsers (PDF/DOCX/HTML).
-- Domain-aware chunking + embeddings.
-- Setup vector database + retrieval pipeline (semantic + keyword hybrid).
-- Deliverables: Ingestion service, vector DB, retrieval evaluation report.
-
-### **Student C — Reasoning, Compliance Engine & Evaluation**
-- Design decision schema (status, evidence, rationale, confidence).
-- Develop compliance assessment engine (prompting + rule library).
-- Build evaluation harness with precision/recall, evidence alignment metrics.
-- Deliverables: Compliance engine API, evaluation reports, error analysis.
-
-### **Student D — Offline Web App, APIs & Deployment**
-- Build offline web UI (upload, search, compare, assess).
-- Develop API gateway for modular services.
-- Package everything in Docker Compose for offline deployment.
-- Deliverables: Web UI, REST APIs, deployment scripts, observability dashboards.
-
----
-## Notion Page
-https://rust-mandolin-74e.notion.site/LexGuard-25ca338f8c5b80aca495c55c3bdc8ea2?pvs=74
-
----
-## Potential datasets for testing the pipeline
-
-https://stanfordnlp.github.io/contract-nli/
-
-The ContractNLI dataset contains contracts (NDAs), fixed hypotheses (requirements), and human annotations that say whether each requirement is entailed (compliant), contradicted (noncompliant), or not mentioned (uncertain), along with the evidence spans in the contract text.
-
-I converted the raw JSON format into a structured CSV/Excel file where each row contains:
---- reference_clause → the hypothesis text (requirement)
---- target_clause → the evidence span from the contract
----compliance → one of compliant, noncompliant, or uncertain
----source_file → original contract filename
-
-### Why this is useful
-
-Our final system will take two documents (a reference requirements sheet and a target contract) and produce a compliance report.
-
-The ContractNLI-based CSV acts as a testbed for this pipeline because:
-
-Each row is a mini version of our task (requirement vs contract clause → compliance label).
-
-The compliance labels are ground truth, so we can check if our pipeline makes the right predictions.
+## 🚀 Overview
+LexGuard is an AI-powered compliance analysis system that uses a hybrid Graph + RAG pipeline to evaluate policy documents and detect violations with explainability.
---
-## Project Milestones
-
-### **Week 1–3 — Foundations**
-Identified references:
-[28/08/25, 11:19:15 AM] Vinu: https://www.meity.gov.in/static/uploads/2024/06/2bf1f0e9f04e6fb4f8fef35e82c42aa5.pdf
-[28/08/25, 11:19:30 AM] Vinu: https://aclanthology.org/2025.coling-main.178.pdf
-
-Discuss the above paper and expand on the ideas—similar to the negation documents we discussed, what other strategies could be explored to improve the system’s accuracy? Identify and discuss relevant datasets in this context, and provide a concrete example based on the Digital Personal Data Protection Act, 2023.
-
-### **Week 4–6 — RAG & Engine v1**
-
-
-### **Week 7–8 — **
-
-### **Week 9–11 — **
+## 🔥 Key Features
+- 📄 PDF Upload & Chunk-based Analysis
+- 🧠 Graph-based Retrieval (Eventic + Static Graphs)
+- 🔍 Explainable Outputs (Hits, Positive & Negative Nodes)
+- ⚡ LLM-based Reasoning (OpenAI / Local)
+- 🎛 Tunable RAG Parameters (lambda, hop_k, etc.)
+- 📊 Interactive UI Dashboard
---
-### Participation
-- Subham ||
-- Trupti |
-- Divyam |
-- Owais |
+## 🧠 Architecture
diff --git a/chunks.json b/chunks.json
new file mode 100644
index 0000000..1678c06
--- /dev/null
+++ b/chunks.json
@@ -0,0 +1,638 @@
+[
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "Indian Oil Corporation Limited",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "DATA PRIVACY POLICY",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "Indian Oil Corporation Limited DATA PRIVACY POLICY",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "1. INTRODUCTION",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "Indian Oil Corporation Limited is a company incorporated under the laws of India, having\nits registered office at IndianOil Bhavan, G -9, Ali Yavar Jung Marg, Bandra [East], Mumbai –\n400051, India [Hereinafter referred to as “We” or “Us” or “Company” or “ IOCL ”].",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "In accordance with all applicable laws, IOCL has created this Privacy Policy [Hereinafter\nreferred to as “Privacy Policy” or “Policy” or “Privacy Statement” ] in order to demonstrate\nIOCL’s privacy commitment to any individual whose data IOCL collect s, stor es or process es\nfor providing or offering its services and products.",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "2. DEFINITIONS",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "Agent : Any individual or entity which has a contractual relationship with IOCL, where IOCL\nis the principal and the other individual or entity is the agent, shall hereinafter be referred\nto as an \"Agent\" . For instance, IOCL’s distributors, dealers, CFA, contractors, etc. shall be\nconsidered Agents.",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "Data Subject: All individuals whose personal information is either collected, received,\nprocessed, stored, dealt or handled by IOCL shall hereinafter be referred to as “Data\nSubject”.",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "Information: Personal Information of a Data Subject collected by IOCL under this Policy shall\nhereinafter be referred to as “Information”. Such Information includes, interalia, Sensitive\nPersonal Data or Information as defined under the Indian Information Technology Act, 2000\nand the Aadhaar number and/or the biometric information associated with an Aadhaar\nnumber .",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "Third -Party: Any individual or entity over which IOCL does not have any control or\nownership, and which operates independently on its own is hereinafter referred to as a\n\"Third Party\".",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "3. GOVERNING LAW",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "IOCL is an organisation based and existing in India and is thus bound by the laws of the\nRepublic of India. This Privacy Policy has been prepared in accordance with applicable\nIndian laws, including the Indian Information Technology Act, 2000 and the Aadhaar\n[Targeted Delivery of Financial and other Subsidies, Benefits and Services ] Act, 2016 .",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "4. APPLICABILITY",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "This Policy appli es to all individuals whose I nformation is either collected, received,\nprocessed, stored, dealt or handled by IOCL .",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "Indian Oil Corporation Limited 5. OBJECTIVE\nThis Privacy Policy is intended to inform the Data Subject on how IOCL collects, processes,\nstores , and use s personal information that a Data Subject provides to IOCL either directly\nor indirectly . This Privacy Policy also covers IOCL’s treatment of any personal information\nthat Third Parties share with IOCL .",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "6. HOW IOCL COLLECT S DATA SUBJECT ’S INFORMATION",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "IOCL collect s Information about Data Subject through the following means:",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "(a) whenever a Data Subject shows an interest or elects to use IOCL’s services or",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "products, including information about IOCL schemes, irrespective of whether such\nservices /products are prov ided directly by IOCL or by its Agents on IOCL’s behalf ;",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "(b) through IOCL’s network of Agents and a Third Party which collects such",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "Information and transfers it to IOCL for a business requirement ;",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "(c) when Data Subject downloads IOCL’s mobile applications or visits any of the",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "websites owned by IOCL and/or creates an account on the mobile applications or\nthe website s.",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "(d) when Data Subject, which also includes employees of IOCL, directly elects to share",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "their Information with IOCL.",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "7. WHY IOCL COLLECT S DATA SUBJECT ’S INFORMATION [PURPOSE]",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "IOCL uses the Information to conduct its business and to provide Data Subject with the\nbest possible services /products. IOCL will only use the Information based on this Privacy\nPolicy, its understanding with the Data Subject , or as required by law.",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "IOCL will collect adequate, relevant and necessary Information and will process such\nInformation fairly and lawfully for the purpose it is collected . Most comm only, IOCL will",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "use the Information in the following circumstances:",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "(a) Where IOCL need s to perform the obligations it has promised the Data Subject ,",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "such as to provide a service or product to the Data Subject and to enable the Data\nSubject’s use of IOCL ’s products/ services , including but not limited to deal ing with\nenquiries and complaints made by or about the Data Subject relating to\nservices/products provided by IOCL and to improve and customise IOCL’s\nservices/products in accordance with the Data Subject’s preferences ;",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "(b) Where IOCL need s to comply with a legal , accounting, business or reporting",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "obligation , including compliance with requests from the Government of India or\nany Governmental Agency ;",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "(c) To send marketing as well as non-marketing commercial communications to the",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "Data Subject ;",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "(d) To send the Data Subject notifications that the Data Subject has specifically",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "requested for as well as to send statements, invoices and payment reminders to\nthe Data Subject , and to collect payments from the Data Subject ;",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "(e) To provide Third Parties with statistical information about its customers but those",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "Third Parties will not be able to identify any individu al from that information;",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "(f) To keep IOCL’s website, mobile application s and other systems secure and to",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "prevent fraud;\nIndian Oil Corporation Limited (g) To promote the mission and objectives of Skill Development in India and/or to\nprovide and disseminate information about relevant programm es under the Skill\nDevelopment Mission.",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "(h) To manage the employment of the data subject with IOCL.",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "IOCL collects and processes the Information only when it is essential to offer its\nservices/products to the Data Subject. By providing his or her Information , the Data Subject\nagrees that IOCL may collect, use and share this Information with Third Parties for the\npurpose s mentioned above from 7[a] to 7[h].",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "8. FAILURE TO PROVIDE INFORMATION",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "IOCL may not be able to perform the obligations it has promised the Data Subject , or IOCL\nmay be prevented from complying with its legal , accounting, business or reporting\nobligation s if the Data Subject fails to provide certain Information when requested by IOCL .",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "IOCL shall not be held liable in any manner whatsoever if IOCL is unable to perform its\nservices or if there is a deficiency in IOCL’s services to the Data Subject due to Data\nSubject’s failure to provide such Information.",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "IOCL and/or its Agents, employees, directors, associates, etc. shall be indemnified by the\nData Subject and held harmless from any complaints, legal proceedings or claims filed or\ninitiated by the Data Subject or any Third Party against IOCL in this regard.",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "9. CHANGE OF PURPOSE",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "IOCL will only use Data Subject ’s Information for the purposes for which IOCL collected it,\nunless IOCL reasonably consider s that it need s to use it for another reason and that reason\nis compatible with the original purpose.",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "10. CONSENT",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "Data Subject agrees that IOCL does not need any additional or further consent from\nhim/her to use the Data Subject ’s Information in accordance with this Policy to carry out\nIOCL’s legal obligations or exercise specific rights.",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "11. INFORMATION SHARING AND DISCLOSURE",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "IOCL may disclose the Information to any of its Agents or Third Parties insofar as reasonably\nnecessary for the purposes set out in this Policy and for the purpose of providing\nservices /products to the Data Subject .",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "Such Agents and Third Parties are expected to provide a similar level of protection to the\nInformation as is adhered to by IOCL .",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "In addition to this, IOCL may disclose the Information where it is required to do so by law\nor to Governmental Agencies.",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "Indian Oil Corporation Limited 12. TRANSFER OF INFORMATION OUTSIDE INDIA\nUnless stated otherwise, IOCL store s and process es the Information in India. There may,\nhowever, be occasions when IOCL need s to transfer the Information outside India for its\nbusiness requirements. In such instances, IOCL will exercise the same level of care in\nhandling the Information as it does in India.",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "13. DATA SECURITY",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "The Information is processed by IOCL in strict accordance with the Indian Information\nTechnology Act, 2000, and the rules notified thereunder. IOCL implement s and maintain\n‘Reasonable Security Practices and Procedures’ as stated in the Indian Information\nTechnology Act, 2000 and the Informat ion Technology [Reasonable Security Practices and\nProcedures and Sensitive Personal Data or Information] Rules, 2011, while processing,\ncollecting, storing or handling any Information.",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "14. DATA RETENTION",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "IOCL will only retain the Information for as lon g as necessary to fulfil the purposes IOCL\ncollected it for, including for the purposes of satisfying any legal, business, accounting, or\nreporting requirements.",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "In some circumstances, IOCL may anonymise the Information so that it can no longer be\nassociated with the Data Subject , in which case IOCL may use such information without a\nfurther reference to Data Subject .",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "15. WHO HANDLES AND RETAINS DATA SUBJECT ’S INFORMATION",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "Details about the primary entity which handles and retains the Information is provided",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "below:",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "Indian Oil Corporation Limited having its registered office at:",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "IndianOil Bhavan\nG-9, Ali Yavar Jung Marg\nBandra [East]\nMumbai – 400051\nIndia",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "16. REVIEW OF INFORMATION",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "Data Subject can contact IOCL, through the Grievance Officer whose details are provided\nat the end of the Policy, requesting access to Data Subject ’s Information for reviewing or\nrequesting amendment to certain information that Data Subject considers to be incorrect\nor wrong. IOCL shall process such requests from Data Subject in accordance with applicable\nlaw.",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "IOCL shall not be responsible for the authenticity of the Information provided by the Data\nSubject to IOCL or its Agents.",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "Indian Oil Corporation Limited 17. WITHDRAWAL OF CONSENT\nData Subject may at any time revoke or withdraw Data Subject’s consent to provide\nInformation to IOCL by contacting the Grievance Officer whose details are provided at the\nend of the Policy. However, such action may render it difficult for IOCL to offer some of its\nservices /products to the Data Subject any further.",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "IOCL shall not be held liable in any manner whatsoever if IOCL is unable to perform its\nservices or if there is a deficiency in its services to Data Subject due to Data Subject’s\nwithdrawal of consent.",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "IOCL and/or its Agents, employees, directors, associates , etc. shall be indemnified by the\nData Subject and held harmless from any complaints, legal proceedings or claims filed or\ninitiated by the Data Subject or any Third Party against IOCL in this regard.",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "18. CHANGES TO THIS PRIVACY POLICY",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "The Policy is subject to modification s from time to time. If IOCL decide s to change this\nPolicy, IOCL shall publish the modified Policy on its website.",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "19. GRIEVANCE OFFICER",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "In accordance with the Indian Information Technology Act 2000 and the rules notified",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "thereund er, the contact details of the Grievance Officer are provided below:",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "Sh. Abhinav Bhatt ,\nCorporate Business Technology Centre,\nIndian Oil Institute of Petroleum Management Campus,\nPlot No. 83, Institutional Area,\nSector 18, Gurugram,\nHaryana – 122001",
+ "meta": {}
+ },
+ {
+ "doc_id": 0,
+ "filename": "Indian Oil Priivacy policy.pdf",
+ "text": "Email: data -grievance@indianoil.in\nPhone : 0124 -2861509",
+ "meta": {}
+ },
+ {
+ "doc_id": 1,
+ "filename": "Privacy_Policy_hdfc.pdf",
+ "text": "Privacy Policy",
+ "meta": {}
+ },
+ {
+ "doc_id": 1,
+ "filename": "Privacy_Policy_hdfc.pdf",
+ "text": "This document is the sole property of HDFC Capital Advisors Limited and is to be used strictly for\nInternal Consumption only.\nHDFC Capital Privacy Policy",
+ "meta": {}
+ },
+ {
+ "doc_id": 1,
+ "filename": "Privacy_Policy_hdfc.pdf",
+ "text": "Version: 2.0 January 2024 Security Classification: INTERNAL Page 2 of 4\nPrivacy Policy",
+ "meta": {}
+ },
+ {
+ "doc_id": 1,
+ "filename": "Privacy_Policy_hdfc.pdf",
+ "text": "1. Objective",
+ "meta": {}
+ },
+ {
+ "doc_id": 1,
+ "filename": "Privacy_Policy_hdfc.pdf",
+ "text": "The purpose of this Privacy P olicy (“Policy ”) is to maintain the privacy of and protect the\npersonal information of employees, contractors, outsourced workforce, vendors, interns,\nassociates, customers , Corporate Social Responsibility (CSR) partners and business\npartners of HDFC Capital Advisors Limited (“ Company ”) and ensure compliance with the\nInformation Technology Act, 2000 (“ Act”) and the Information Technology (Reasonable\nsecurity practices and procedures and sensitive personal data or information) Rules,\n2011 (“ Rules ”).\nThis Policy must be read in conjunction with the Act and the Rules, as may be amended\nfrom time to time.",
+ "meta": {}
+ },
+ {
+ "doc_id": 1,
+ "filename": "Privacy_Policy_hdfc.pdf",
+ "text": "2. Applicability",
+ "meta": {}
+ },
+ {
+ "doc_id": 1,
+ "filename": "Privacy_Policy_hdfc.pdf",
+ "text": "This Policy is applicable to the Company and the Third Party (“as defined in Section 3 of\nthe Policy”) who may receive , collect, possess, stores, deals or handle Personal\ninformation (PI)/ Sensitive personal data or information (SPDI), on behalf of the\nCompany .\nAny such Third Party is expected to have read, understood and comply with this Policy.\nThe Company will use its best endeavors to ensure that such Third Party have read and\nunderstood the terms of this Policy and preferably having entered into a confidentiality\nagreement.",
+ "meta": {}
+ },
+ {
+ "doc_id": 1,
+ "filename": "Privacy_Policy_hdfc.pdf",
+ "text": "3. Key Definitions",
+ "meta": {}
+ },
+ {
+ "doc_id": 1,
+ "filename": "Privacy_Policy_hdfc.pdf",
+ "text": "(a) “Data subject ” is one who is the subject of personal and sensitive personal data . It",
+ "meta": {}
+ },
+ {
+ "doc_id": 1,
+ "filename": "Privacy_Policy_hdfc.pdf",
+ "text": "may include, but is not limited to, the employees, contractors, outsourced workforce,\nvendors, interns, associates, customers, Corporate Social Responsibility (CSR)\npartners and business partners of the Company.",
+ "meta": {}
+ },
+ {
+ "doc_id": 1,
+ "filename": "Privacy_Policy_hdfc.pdf",
+ "text": "(b) \"Personal information (PI) \" means any information that relates to a natural person,",
+ "meta": {}
+ },
+ {
+ "doc_id": 1,
+ "filename": "Privacy_Policy_hdfc.pdf",
+ "text": "which, either directly or indirectly, in combination with other information available\nor likely to be available with a body corporate, is capable of identifying such person .",
+ "meta": {}
+ },
+ {
+ "doc_id": 1,
+ "filename": "Privacy_Policy_hdfc.pdf",
+ "text": "(c) “Sensitive personal data or information (SPDI) ” of a person means such personal",
+ "meta": {}
+ },
+ {
+ "doc_id": 1,
+ "filename": "Privacy_Policy_hdfc.pdf",
+ "text": "information which consists of information relating to.\ni. password .\nii. financial information such as Bank account or credit card or debit card or other\npayment instrument details .\niii. physical, physiological , and mental health condition .\niv. sexual orientation .\nv. medical records and history .\nvi. Biometric information .\nvii. any detail relating to the above clauses as provided to body corporate for\nproviding service; and\nviii. any of the information received under above clauses by body corporate for",
+ "meta": {}
+ },
+ {
+ "doc_id": 1,
+ "filename": "Privacy_Policy_hdfc.pdf",
+ "text": "processing, stored or processed under lawful contract or otherwise:",
+ "meta": {}
+ },
+ {
+ "doc_id": 1,
+ "filename": "Privacy_Policy_hdfc.pdf",
+ "text": "HDFC Capital Privacy Policy",
+ "meta": {}
+ },
+ {
+ "doc_id": 1,
+ "filename": "Privacy_Policy_hdfc.pdf",
+ "text": "Version: 2.0 January 2024 Security Classification: INTERNAL Page 3 of 4\nprovided that, any information that is freely available or accessible in public\ndomain or furnished under the Right to Information Act, 2005 or any other law\nfor the time being in force shall not be regarded as sensitive personal data or\ninformation for th e purposes of these rules.",
+ "meta": {}
+ },
+ {
+ "doc_id": 1,
+ "filename": "Privacy_Policy_hdfc.pdf",
+ "text": "(d) “Third Party ” means all external parties such as contractors, outsourced",
+ "meta": {}
+ },
+ {
+ "doc_id": 1,
+ "filename": "Privacy_Policy_hdfc.pdf",
+ "text": "workforce, interns, summer trainees, vendors , CSR Partners and business partners\nwho have access to Company’s information assets.",
+ "meta": {}
+ },
+ {
+ "doc_id": 1,
+ "filename": "Privacy_Policy_hdfc.pdf",
+ "text": "4. Elements of Privacy Policy",
+ "meta": {}
+ },
+ {
+ "doc_id": 1,
+ "filename": "Privacy_Policy_hdfc.pdf",
+ "text": "This Policy describes generally acceptable privacy principles for the protection and\nappropriate use of personal information and SPDI at the Company .",
+ "meta": {}
+ },
+ {
+ "doc_id": 1,
+ "filename": "Privacy_Policy_hdfc.pdf",
+ "text": "4.1. Consent\nThe Company shall obtain consent from the Data subject before collecting, receiving,\npossessing, storing, dealing or handling personal information or SPDI of the provider of\nsuch information. No PI/SPDI shall be used by the Company without the consent of the\nprovider of the information . The consent shall be obtained (in writing or electronically)\nfrom the Data subjects before or at the time of collecting PI or SPDI .\nThe Data subject shall be provided with a choice to opt out and withdraw any consent\npreviously given by way of written communication to the Company .",
+ "meta": {}
+ },
+ {
+ "doc_id": 1,
+ "filename": "Privacy_Policy_hdfc.pdf",
+ "text": "4.2. Collection of Personal Information\na) The Company shall not collect PI or Sensitive personal data or information (SPDI)\nunless : (i) the information is collected for a lawful purpose connected with a function\nor activity of the Company or any person on its behalf; and ( ii) the collection of the PI\n/ SPDI is considered necessary for that purpose .\nb) While collecting PI/ SPDI directly from the person concerned, the Company or any\nperson on its behalf s hall take such steps as are, in the circumstances, reasonable to\nensure that the person concerned is having the knowledge of : (i) the fact that the\ninformation is being collected; ( ii) the purpose for which the information is being\ncollected; ( iii) the intended recipients of the information; ( iv) the name and address of\nthe agency that is collecting the information; and (v) the agency that will retain the\ninformation.\nc) The Company or any person on its behalf holding PI/ SPDI shall not retain that\ninformation for longer than is required for the purposes for which the information may\nlawfully be used or is otherwise required under any other law for the time being in\nforce.\nd) The PI/SPDI collected shall be used for the purpose for which it has been collected.\ne) The Company shall address any discrepancies and grievances of the provider of the PI/\nSPDI in a time bound manner. For this purpose, the Company shall designate a\nGrievance Officer and publish his name and contact details on its website . The\nGrievance Officer shall use best endeavors to redress the grievances o f the provider of\ninformation expeditiously within one month from the date of receipt of grievance .",
+ "meta": {}
+ },
+ {
+ "doc_id": 1,
+ "filename": "Privacy_Policy_hdfc.pdf",
+ "text": "4.3. Disclosure of Information\na) Disclosure of PI/ SPDI by the Company to any Third Party shall require prior permission\nfrom the provider of such information, who has provided such information under lawful\nHDFC Capital Privacy Policy",
+ "meta": {}
+ },
+ {
+ "doc_id": 1,
+ "filename": "Privacy_Policy_hdfc.pdf",
+ "text": "Version: 2.0 January 2024 Security Classification: INTERNAL Page 4 of 4\ncontract or otherwise, unless such disclosure has been agreed to in the contract\nbetween the Company and the provider of information, or where the disclosure is\nnecessary for compliance of a legal /regulatory obligation ;\nProvided that the information shall be shared by the Company , without obtaining prior\nconsent from the provider of information, with Government agencies mandated under\nthe law to obtain information including sensitive personal data or information for the\npurpose of verification of identity, or for prevention, detection, investigation including\ncyber inciden ts, prosecution, and punishment of offences. The Company will use best\nendeavors to ensure that t he Government agency send s a request in writing to the\nCompany possessing the sensitive personal data or information stating clearly the\npurpose of seeking such information and stating that the information so obtained shall\nnot be published or shared with any other person.\nb) The Company shall disclose any PI/ SPDI to any Third Party by an order under the law\nfor the time being in force.\nc) The Company or any person on its behalf shall not publish the PI/ SPDI .\nd) The Company shall use its best endeavors (including by way of execution of appropriate\nnon-disclosure agreements) to ensure that t he Third Party receiving the PI/ SPDI from\nthe Company or any person on its behalf shall not disclose it further .",
+ "meta": {}
+ },
+ {
+ "doc_id": 1,
+ "filename": "Privacy_Policy_hdfc.pdf",
+ "text": "4.4. Reasonable Security Practices and Procedures\nThe Company endeavors to have in place reasonable security practices and procedures\nin place to protect the PI/SPDI of the provider of information.",
+ "meta": {}
+ }
+]
\ No newline at end of file
diff --git a/data/business/Privacy_Policy_hdfc.pdf b/data/business/Privacy_Policy_hdfc.pdf
new file mode 100644
index 0000000..d1c19f6
Binary files /dev/null and b/data/business/Privacy_Policy_hdfc.pdf differ
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 0000000..a0feee8
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,50 @@
+version: '3.8'
+
+services:
+ lexguard-api:
+ build:
+ context: .
+ dockerfile: Dockerfile
+ ports:
+ - "8000:8000"
+ environment:
+ - PORT=8000
+ - PYTHONUNBUFFERED=1
+ - OMP_NUM_THREADS=1
+ - MKL_NUM_THREADS=1
+ - NUMEXPR_NUM_THREADS=1
+ - OPENBLAS_NUM_THREADS=1
+ volumes:
+ - .:/app
+ # Mount data directory for access to graphs and embeddings
+ - ./data:/home/app/data:ro
+ deploy:
+ resources:
+ limits:
+ memory: 4G
+ cpus: '1.0'
+ reservations:
+ memory: 1G
+ cpus: '0.5'
+ healthcheck:
+ test: ["CMD", "curl", "-f", "http://localhost:8000/health"]
+ interval: 30s
+ timeout: 15s
+ retries: 3
+ start_period: 30s
+ networks:
+ - lexguard-net
+ restart: unless-stopped
+ # Prevent OOM kills
+ oom_kill_disable: false
+
+networks:
+ lexguard-net:
+ driver: bridge
+
+# Usage:
+# docker-compose up --build
+# docker-compose up -d # Run in background
+# docker-compose up --build # Build and run
+# docker-compose down # Stop and remove containers
+# docker-compose logs -f # View logs
diff --git a/faiss.index b/faiss.index
new file mode 100644
index 0000000..e69de29
diff --git a/frontend/.gitignore b/frontend/.gitignore
new file mode 100644
index 0000000..a547bf3
--- /dev/null
+++ b/frontend/.gitignore
@@ -0,0 +1,24 @@
+# Logs
+logs
+*.log
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+pnpm-debug.log*
+lerna-debug.log*
+
+node_modules
+dist
+dist-ssr
+*.local
+
+# Editor directories and files
+.vscode/*
+!.vscode/extensions.json
+.idea
+.DS_Store
+*.suo
+*.ntvs*
+*.njsproj
+*.sln
+*.sw?
diff --git a/frontend/README.md b/frontend/README.md
new file mode 100644
index 0000000..a36934d
--- /dev/null
+++ b/frontend/README.md
@@ -0,0 +1,16 @@
+# React + Vite
+
+This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
+
+Currently, two official plugins are available:
+
+- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Oxc](https://oxc.rs)
+- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/)
+
+## React Compiler
+
+The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see [this documentation](https://react.dev/learn/react-compiler/installation).
+
+## Expanding the ESLint configuration
+
+If you are developing a production application, we recommend using TypeScript with type-aware lint rules enabled. Check out the [TS template](https://github.com/vitejs/vite/tree/main/packages/create-vite/template-react-ts) for information on how to integrate TypeScript and [`typescript-eslint`](https://typescript-eslint.io) in your project.
diff --git a/frontend/eslint.config.js b/frontend/eslint.config.js
new file mode 100644
index 0000000..4fa125d
--- /dev/null
+++ b/frontend/eslint.config.js
@@ -0,0 +1,29 @@
+import js from '@eslint/js'
+import globals from 'globals'
+import reactHooks from 'eslint-plugin-react-hooks'
+import reactRefresh from 'eslint-plugin-react-refresh'
+import { defineConfig, globalIgnores } from 'eslint/config'
+
+export default defineConfig([
+ globalIgnores(['dist']),
+ {
+ files: ['**/*.{js,jsx}'],
+ extends: [
+ js.configs.recommended,
+ reactHooks.configs.flat.recommended,
+ reactRefresh.configs.vite,
+ ],
+ languageOptions: {
+ ecmaVersion: 2020,
+ globals: globals.browser,
+ parserOptions: {
+ ecmaVersion: 'latest',
+ ecmaFeatures: { jsx: true },
+ sourceType: 'module',
+ },
+ },
+ rules: {
+ 'no-unused-vars': ['error', { varsIgnorePattern: '^[A-Z_]' }],
+ },
+ },
+])
diff --git a/frontend/index.html b/frontend/index.html
new file mode 100644
index 0000000..fdb73b2
--- /dev/null
+++ b/frontend/index.html
@@ -0,0 +1,13 @@
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/frontend/src/services/api.js b/frontend/src/services/api.js
new file mode 100644
index 0000000..c006e4a
--- /dev/null
+++ b/frontend/src/services/api.js
@@ -0,0 +1,46 @@
+import axios from "axios";
+
+// 🔹 Backend URL (FastAPI)
+const API_BASE_URL = "https://miniature-enigma-gppx95gxw4xc99vw-8000.app.github.dev/";
+
+// Create axios instance
+const api = axios.create({
+ baseURL: API_BASE_URL,
+});
+
+// 🔹 Health check
+export const checkHealth = async () => {
+ const res = await api.get("/health");
+ return res.data;
+};
+
+// 🔹 Compliance check (text input)
+export const complianceCheck = async (payload) => {
+ const res = await api.post("/compliance-check", payload);
+ return res.data;
+};
+
+// 🔹 Upload PDF (chunk analysis)
+export const uploadPdfChunks = async (file, config) => {
+ const formData = new FormData();
+
+ formData.append("file", file);
+
+ // Config params
+ formData.append("chunk_size", config.chunk_size || 500);
+ formData.append("chunk_overlap", config.chunk_overlap || 100);
+ formData.append("lambda_thresh", config.lambda_thresh || 0.75);
+ formData.append("hop_k", config.hop_k || 1);
+ formData.append("max_triples", config.max_triples || 60);
+ formData.append("prefer_local", config.prefer_local || false);
+
+ const res = await api.post("/upload-pdf-chunks", formData, {
+ headers: {
+ "Content-Type": "multipart/form-data",
+ },
+ });
+
+ return res.data;
+};
+
+export default api;
\ No newline at end of file
diff --git a/frontend/tailwind.config.cjs b/frontend/tailwind.config.cjs
new file mode 100644
index 0000000..a4e7631
--- /dev/null
+++ b/frontend/tailwind.config.cjs
@@ -0,0 +1,10 @@
+module.exports = {
+ content: [
+ "./index.html",
+ "./src/**/*.{js,ts,jsx,tsx}",
+ ],
+ theme: {
+ extend: {},
+ },
+ plugins: [],
+}
\ No newline at end of file
diff --git a/frontend/vite.config.js b/frontend/vite.config.js
new file mode 100644
index 0000000..9930e28
--- /dev/null
+++ b/frontend/vite.config.js
@@ -0,0 +1,10 @@
+import { defineConfig } from 'vite'
+import react from '@vitejs/plugin-react'
+import tailwindcss from '@tailwindcss/vite'
+
+export default defineConfig({
+ plugins: [
+ react(),
+ tailwindcss(),
+ ],
+})
\ No newline at end of file
diff --git a/guides/DEPLOYMENT.md b/guides/DEPLOYMENT.md
new file mode 100644
index 0000000..218cd9c
--- /dev/null
+++ b/guides/DEPLOYMENT.md
@@ -0,0 +1,293 @@
+# LexGuard MLOps & Deployment Guide
+
+## Overview
+This document covers deploying the LexGuard compliance engine as a containerized service for production use.
+
+## Architecture
+
+```
+┌─────────────────────────────────────┐
+│ FastAPI REST Service │
+│ (src/api/app.py) │
+│ - /health │
+│ - /compliance-check (POST) │
+└────────────┬────────────────────────┘
+ │
+ ┌──────▼──────────┐
+ │ Models │
+ ├─────────────────┤
+ │ - Static Graph │
+ │ - Eventic Graph │
+ │ - SBERT Model │
+ │ - FAISS Index │
+ └─────────────────┘
+```
+
+## Quickstart
+
+### Local Development (without Docker)
+
+1. Install dependencies:
+ ```bash
+ pip install -r requirements.txt
+ ```
+
+2. Start the API server:
+ ```bash
+ python -m src.api.app
+ ```
+
+3. Access the API:
+ - Interactive docs: http://localhost:8000/docs
+ - Health check: http://localhost:8000/health
+ - Compliance check: POST http://localhost:8000/compliance-check
+
+### Run with Docker Compose
+
+1. Build and start the service:
+ ```bash
+ docker-compose up --build
+ ```
+
+2. Access the service:
+ - http://localhost:8000/docs
+ - http://localhost:8000/health
+
+3. Stop the service:
+ ```bash
+ docker-compose down
+ ```
+
+4. View logs:
+ ```bash
+ docker-compose logs -f
+ ```
+
+## API Endpoints
+
+### 1. Health Check
+```
+GET /health
+```
+
+Response:
+```json
+{
+ "status": "ok",
+ "loaded_models": {
+ "static_graph": true,
+ "eventic_graph": true,
+ "embeddings_model": true,
+ "faiss_index": true
+ }
+}
+```
+
+### 2. Compliance Check
+```
+POST /compliance-check
+Content-Type: application/json
+```
+
+Request body:
+```json
+{
+ "text": "Your policy text here...",
+ "lambda_thresh": 0.75,
+ "hop_k": 1,
+ "max_triples": 60,
+ "prefer_local": false,
+ "openai_model": "gpt-3.5-turbo"
+}
+```
+
+Response:
+```json
+{
+ "verdict": "pass",
+ "evidence": [],
+ "triples_text": "- Entity1 relatedTo Entity2\n...",
+ "llm_reply": "...",
+ "hits": ["node1", "node2"],
+ "P": ["node3"],
+ "N": ["node4", "node5"]
+}
+```
+
+## Deployment Options
+
+### Option 1: Local Docker (Development)
+Use `docker-compose up` for local testing and development.
+
+### Option 2: Cloud VM (AWS EC2, GCP Compute, Azure VM)
+1. Push your image to a container registry (Docker Hub, ECR, GCR):
+ ```bash
+ docker build -t lexguard:latest .
+ docker tag lexguard:latest docker.io/username/lexguard:latest
+ docker push docker.io/username/lexguard:latest
+ ```
+
+2. Deploy on VM:
+ ```bash
+ # SSH into VM
+ ssh user@vm-ip
+
+ # Install Docker
+ curl -fsSL https://get.docker.com -o get-docker.sh
+ sudo sh get-docker.sh
+
+ # Pull and run
+ docker run -p 8000:8000 \
+ -v /path/to/data:/app/data:ro \
+ docker.io/username/lexguard:latest
+ ```
+
+### Option 3: Managed Container Service
+**AWS ECS**, **Google Cloud Run**, **Azure Container Instances**, or **Railway**:
+
+Example for Railway.app:
+1. Connect your GitHub repo
+2. Railway auto-detects Dockerfile
+3. Set environment variables (if needed)
+4. Deploy with `git push`
+
+Example for Google Cloud Run:
+```bash
+gcloud run deploy lexguard \
+ --source . \
+ --platform managed \
+ --region us-central1 \
+ --allow-unauthenticated
+```
+
+### Option 4: Kubernetes
+For larger deployments, use Kubernetes:
+
+1. Create a simple deployment manifest:
+```yaml
+apiVersion: apps/v1
+kind: Deployment
+metadata:
+ name: lexguard
+spec:
+ replicas: 2
+ selector:
+ matchLabels:
+ app: lexguard
+ template:
+ metadata:
+ labels:
+ app: lexguard
+ spec:
+ containers:
+ - name: lexguard
+ image: username/lexguard:latest
+ ports:
+ - containerPort: 8000
+ livenessProbe:
+ httpGet:
+ path: /health
+ port: 8000
+ initialDelaySeconds: 10
+ periodSeconds: 30
+ volumeMounts:
+ - name: data
+ mountPath: /app/data
+ readOnly: true
+ volumes:
+ - name: data
+ hostPath:
+ path: /path/to/data
+```
+
+2. Deploy:
+```bash
+kubectl apply -f deployment.yaml
+kubectl port-forward svc/lexguard 8000:8000
+```
+
+## Environment Variables
+
+- **PORT**: API server port (default: 8000)
+- **OPENAI_API_KEY**: OpenAI API key (optional, for cloud-based inference)
+- **PYTHONUNBUFFERED**: Set to 1 for real-time logs in containers
+
+## Monitoring & Logging
+
+### Local Logging
+The API logs to stdout with timestamps and levels. Docker Compose captures these:
+```bash
+docker-compose logs -f lexguard-api
+```
+
+### Production Logging
+For production, consider:
+- **ELK Stack** (Elasticsearch, Logstash, Kibana)
+- **CloudWatch** (AWS)
+- **Stackdriver** (Google Cloud)
+- **Application Insights** (Azure)
+
+### Metrics
+Basic health metrics via `/health` endpoint. For advanced monitoring:
+- Add **Prometheus** for metrics export
+- Use **Grafana** for visualization
+- Monitor API response times, error rates, model latency
+
+## Performance Tuning
+
+1. **Model Loading**: Pre-load models on startup (already done)
+2. **Caching**: Consider caching embeddings for repeated texts
+3. **Batch Processing**: For high throughput, add batch compliance check endpoint
+4. **GPU**: If available, leverage GPU for embedding and LLM inference
+ - Set `CUDA_VISIBLE_DEVICES` in docker-compose environment
+
+## CI/CD Pipeline (GitHub Actions)
+
+Create `.github/workflows/deploy.yml`:
+```yaml
+name: Build and Deploy
+
+on:
+ push:
+ branches:
+ - main
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ - uses: docker/setup-buildx-action@v2
+ - uses: docker/build-push-action@v4
+ with:
+ push: true
+ tags: username/lexguard:${{ github.sha }},username/lexguard:latest
+ registry: docker.io
+ username: ${{ secrets.DOCKER_USERNAME }}
+ password: ${{ secrets.DOCKER_PASSWORD }}
+```
+
+## Troubleshooting
+
+### Models not loading
+- Check data directory path in `src/api/app.py`
+- Verify files exist: `data/static_graph.gpickle`, `data/eventic_graph.gpickle`
+
+### Out of memory
+- Run with limited model: Use `prefer_local: true` with smaller model
+- Increase Docker memory limit in docker-compose.yml `mem_limit`
+
+### Slow inference
+- Enable GPU support
+- Consider model quantization
+- Add caching layer
+
+## Next Steps
+
+1. ✅ FastAPI service created
+2. ✅ Dockerfile created
+3. ✅ Docker Compose configured
+4. ⏳ Add monitoring (Prometheus + Grafana)
+5. ⏳ Set up CI/CD (GitHub Actions)
+6. ⏳ Deploy to cloud provider
+7. ⏳ Add API authentication/rate limiting
diff --git a/guides/MLOPS_BEGINNER_GUIDE.md b/guides/MLOPS_BEGINNER_GUIDE.md
new file mode 100644
index 0000000..5a109b2
--- /dev/null
+++ b/guides/MLOPS_BEGINNER_GUIDE.md
@@ -0,0 +1,301 @@
+# MLOps for Beginners - Step by Step
+
+## What Is MLOps?
+
+Think of it like this:
+
+### Before MLOps (Just a Script)
+```
+You: python rag_runner.py
+Output: results.json ✓
+But: Only works on YOUR computer, hard to use, not scalable
+```
+
+### After MLOps (Production Ready)
+```
+Anyone: Makes HTTP request
+ ↓
+Your service answers via API
+ ↓
+Works everywhere (laptop, server, cloud)
+ ↓
+Easy to scale, monitor, update
+```
+
+---
+
+## The 3 Layers (Simple Version)
+
+### Layer 1: Application (What You Built)
+```
+YOU ALREADY HAVE THIS ✓
+├── src/retriever_rag/rag_runner.py ← The core logic
+└── Works locally: python src/retriever_rag/rag_runner.py
+```
+
+### Layer 2: API Service (We Added This)
+```
+NEW: Makes the script accessible
+├── src/api/app.py ← Wraps rag_runner.py as a web service
+└── Access via: http://localhost:8000
+```
+
+### Layer 3: Container (We Added This)
+```
+NEW: Makes it portable
+├── Dockerfile ← Instructions to package everything
+└── Result: Works on any computer/server
+```
+
+---
+
+## Simple Analogy
+
+**Without Docker:**
+```
+Your Laptop: Python 3.12, sentence-transformers 5.1, torch 2.8, ...
+Friend's Laptop: Python 3.10, sentence-transformers 4.0, cuda 11, ...
+Result: ❌ "It works on my machine but not yours"
+```
+
+**With Docker:**
+```
+Dockerfile says: "Use Python 3.12, install these exact versions"
+My Laptop: ✓ Works
+Friend's Laptop: ✓ Works
+AWS Server: ✓ Works
+Result: ✓ Consistency everywhere
+```
+
+---
+
+## Quick Start (Follow This Exactly)
+
+### Step 1: Install Docker
+- Windows/Mac: Download [Docker Desktop](https://www.docker.com/products/docker-desktop)
+- Linux:
+ ```bash
+ curl -fsSL https://get.docker.com -o get-docker.sh
+ sudo sh get-docker.sh
+ ```
+
+### Step 2: Navigate to Project
+```bash
+cd /workspaces/comp_check
+```
+
+### Step 3: Build & Run (One Command)
+```bash
+docker-compose up --build
+```
+
+That's it! After a few minutes (first time is slow), you'll see:
+```
+lexguard-api | INFO: Application startup complete
+lexguard-api | INFO: Uvicorn running on http://0.0.0.0:8000
+```
+
+### Step 4: Test It Works
+Open a browser: http://localhost:8000/docs
+
+You should see an interactive API documentation page.
+
+### Step 5: Try the API
+Click the big green "Try it out" button on the `/compliance-check` endpoint.
+
+### Step 6: Stop It
+Press `Ctrl+C` in terminal, or run:
+```bash
+docker-compose down
+```
+
+---
+
+## What Each Command Does
+
+| Command | What It Does |
+|---------|-------------|
+| `docker-compose up --build` | Build container + start service |
+| `docker-compose logs -f` | Watch live logs |
+| `docker-compose ps` | Show running containers |
+| `docker-compose down` | Stop everything |
+| `docker build .` | Just build (no run) |
+
+---
+
+## Understanding the Files (In Plain English)
+
+### `src/api/app.py`
+**What it is**: A web version of your script
+```python
+@app.post("/compliance-check")
+def check(text):
+ # This is what rag_runner.py does, but via HTTP
+ return results
+```
+**How to use**: Browser or Python requests library
+
+### `Dockerfile`
+**What it is**: Recipe to make your app portable
+```
+1. Start with Python 3.12
+2. Install required system packages
+3. Install Python libraries
+4. Copy your code
+5. Run the app
+```
+**Why**: So it works the same everywhere
+
+### `docker-compose.yml`
+**What it is**: Shortcut to run Docker without typing long commands
+```yaml
+- Instead of: docker run -p 8000:8000 -v data:/app/data ...
+- Just use: docker-compose up
+```
+
+### `.github/workflows/ci.yml`
+**What it is**: Automatic testing when you push to GitHub
+**Why**: Catches bugs before deployment
+
+---
+
+## The Flow (Visual)
+
+```
+┌─────────────────────────────────┐
+│ Your Browser / Mobile App │
+│ Makes HTTP request │
+└────────────┬────────────────────┘
+ │
+ │ GET /health
+ │ POST /compliance-check
+ ↓
+┌─────────────────────────────────┐
+│ FastAPI Service (app.py) │
+│ - Receives request │
+│ - Processes it │
+│ - Returns JSON response │
+└────────────┬────────────────────┘
+ │
+ ↓
+┌─────────────────────────────────┐
+│ RAG Pipeline │
+│ - rag_runner.py logic │
+│ - Embeddings, graphs, LLM │
+└────────────┬────────────────────┘
+ │
+ ↓
+┌─────────────────────────────────┐
+│ Data Files │
+│ - chunks.json │
+│ - static_graph.gpickle │
+│ - faiss.index │
+└─────────────────────────────────┘
+```
+
+---
+
+## Common Questions for Beginners
+
+### Q: Why do I need Docker?
+**A**: Same setup works on laptop, server, and cloud. No "works on my machine" problems.
+
+### Q: Why FastAPI?
+**A**: Makes your Python script accessible as a web service anyone can use.
+
+### Q: Can I just run the script without Docker?
+**A**: Yes! For development:
+```bash
+python -m src.api.app
+# Then visit http://localhost:8000/docs
+```
+(But Docker is better for production)
+
+### Q: What's the difference between docker-compose and Docker?
+**A**:
+- **Docker**: Container technology (the engine)
+- **docker-compose**: Shortcut to manage containers (the remote control)
+
+### Q: How do I deploy this to the internet?
+**A**: Several options (pick one):
+1. **Beginner**: Use Railway.app (auto-deploys from GitHub)
+2. **Intermediate**: AWS EC2 + Docker
+3. **Advanced**: Kubernetes
+
+---
+
+## Your Next Steps
+
+### Now (Today)
+1. ✅ Read this file
+2. ✅ Make sure Docker is installed
+3. ✅ Run `docker-compose up --build`
+4. ✅ Visit http://localhost:8000/docs
+
+### Tomorrow
+- Learn the `/health` endpoint (checks if service is alive)
+- Learn the `/compliance-check` endpoint (your main API)
+- Test with `python test_api.py`
+
+### This Week
+- Deploy to a free cloud service (Railway, Render, or Google Cloud Run)
+- Monitor the logs
+- Make a simple frontend to use the API
+
+### This Month
+- Add authentication (API keys)
+- Add metrics/monitoring
+- Learn Kubernetes basics
+
+---
+
+## Debugging Tips
+
+### Build fails?
+```bash
+docker-compose down -v # Clean everything
+docker-compose up --build # Fresh build
+```
+
+### Port 8000 already in use?
+```bash
+# Kill whatever's using port 8000
+lsof -i :8000
+kill -9
+
+# Or use different port in docker-compose.yml
+ports:
+ - "8001:8000" # Change first 8000 to 8001
+```
+
+### Want to see what's in the container?
+```bash
+docker-compose exec lexguard-api bash
+ls -la /app/data # Explore inside
+```
+
+---
+
+## Most Important Thing
+
+**You don't need to understand everything right now.**
+
+Just focus on:
+1. Run `docker-compose up`
+2. Visit http://localhost:8000/docs
+3. Click "Try it out" on an endpoint
+4. Watch the magic happen
+
+The rest will make sense with time. MLOps is a journey, not a sprint.
+
+---
+
+## Questions?
+
+Ask me about:
+- ❓ What does this error mean?
+- ❓ How do I deploy to AWS?
+- ❓ What's a healthcheck?
+- ❓ How do I add authentication?
+
+I'll explain in simple terms. 🚀
diff --git a/guides/NO_DOCKER_SETUP.md b/guides/NO_DOCKER_SETUP.md
new file mode 100644
index 0000000..73ba898
--- /dev/null
+++ b/guides/NO_DOCKER_SETUP.md
@@ -0,0 +1,127 @@
+# MLOps Without Docker (Codespace Edition)
+
+## The Problem
+Docker builds are resource-heavy and dying in your codespace.
+
+## The Solution
+Run the API directly - it's simpler and works perfectly for learning!
+
+---
+
+## Setup (5 minutes)
+
+### Step 1: Install Dependencies
+```bash
+cd /workspaces/comp_check
+pip install -r requirements.txt
+```
+
+(This uses installation cache and takes 2-3 minutes)
+
+### Step 2: Start the API
+```bash
+python -m src.api.app
+```
+
+### Step 3: Test in Browser
+Open: http://localhost:8000/docs
+
+---
+
+## What You Get
+
+✅ **Same API** - All endpoints work
+✅ **Same MLOps** - Just without Docker container
+✅ **Easier** - Fewer things to debug
+✅ **Good for Learning** - Understand the concepts first
+
+---
+
+## Commands You'll Use
+
+```bash
+# Start API
+python -m src.api.app
+
+# In another terminal, test it
+python test_api.py --url http://localhost:8000
+
+# Stop API
+Ctrl + C
+```
+
+---
+
+## Deploy to Cloud (When Ready)
+
+Once you understand MLOps on codespace, deploy to:
+
+**Option 1: Railway.app** (Easiest)
+- Create account (free)
+- Connect GitHub
+- Railway auto-detects Python + deploys
+- No Docker needed
+
+**Option 2: Google Cloud Run** (Also Easy)
+- Upload code to GitHub
+- Cloud Run handles deployment
+- 2 million free requests/month
+
+**Option 3: Heroku** (Classic)
+- Old but reliable
+- 1 free tier per account
+
+---
+
+## Why This Is Better for NOW
+
+| Aspect | Docker | Direct |
+|--------|--------|--------|
+| Setup time | 15+ min | 3 min |
+| Disk space | 4-5 GB | 500 MB |
+| Debugging | Harder | Easy |
+| Learning | Indirect | Direct |
+| Production? | Yes | Use the other methods |
+
+---
+
+## Getting Started
+
+```bash
+cd /workspaces/comp_check
+
+# Install
+pip install -r requirements.txt
+
+# Run
+python -m src.api.app
+
+# Then in browser
+http://localhost:8000/docs
+```
+
+That's it! 🚀
+
+---
+
+## When You Need Docker
+
+Docker is needed when:
+- ✅ Deploying to production servers
+- ✅ Running on different machines (Mac/Windows/Linux differences)
+- ✅ Complex system dependencies
+- ✅ Scaling to multiple servers
+
+**For learning? Start without it.**
+
+---
+
+## Next Steps
+
+1. Get the API running locally
+2. Understand each endpoint
+3. Make requests from Python
+4. Then deploy to cloud
+5. Then learn Docker for production
+
+You'll understand MLOps better this way! 📚
diff --git a/guides/START_HERE.md b/guides/START_HERE.md
new file mode 100644
index 0000000..126e673
--- /dev/null
+++ b/guides/START_HERE.md
@@ -0,0 +1,217 @@
+# 🚀 START HERE - MLOps Setup (30 minutes)
+
+## IF THIS IS YOUR FIRST TIME, FOLLOW THIS EXACTLY
+
+### Step 1: Check Docker Is Installed (2 min)
+
+```bash
+docker --version
+docker-compose --version
+```
+
+**If you see version numbers, you're good.** ✓
+
+**If you see "command not found":**
+- Download [Docker Desktop](https://www.docker.com/products/docker-desktop)
+- Install it
+- Restart terminal
+
+---
+
+### Step 2: Build & Run (10 min)
+
+Go to project folder:
+```bash
+cd /workspaces/comp_check
+```
+
+Run this ONE command:
+```bash
+docker-compose up --build
+```
+
+**Wait for these messages:**
+```
+lexguard-api | INFO: Uvicorn running on http://0.0.0.0:8000
+lexguard-api | INFO: Application startup complete
+```
+
+**If it gets stuck on "Installing requirements...": Don't worry, just wait. First build takes 5-10 minutes.**
+
+---
+
+### Step 3: Open Your Browser (1 min)
+
+While the command is running, open:
+```
+http://localhost:8000/docs
+```
+
+You should see an interactive API page with this:
+- **GET /health** - Check if service is alive
+- **POST /compliance-check** - Test the compliance check
+- **GET /** - API info
+
+---
+
+### Step 4: Test the API (2 min)
+
+1. Click on **POST /compliance-check**
+2. Click the blue **"Try it out"** button
+3. You'll see a text box with sample data
+4. Click **"Execute"** button
+5. Scroll down to see the **Response**
+
+Should see something like:
+```json
+{
+ "verdict": "pass",
+ "evidence": [],
+ "triples_text": "...",
+ "hits": [...]
+}
+```
+
+✅ **Congratulations! Your MLOps setup is working!**
+
+---
+
+### Step 5: Stop the Service (1 min)
+
+Go back to terminal and press:
+```
+Ctrl + C
+```
+
+---
+
+## What You Just Did
+
+| What | Explanation |
+|------|-------------|
+| `docker-compose up --build` | Create a container + run your app inside |
+| `http://localhost:8000/docs` | Web interface to interact with your API |
+| Container | A box that has Python, your code, and everything needed |
+
+---
+
+## Now What?
+
+### Option A: Keep Learning (Recommended)
+Read: `MLOPS_BEGINNER_GUIDE.md` in this folder
+
+### Option B: Deploy to Internet (Advanced)
+Jump to: `DEPLOYMENT.md`
+
+### Option C: Test with a Script
+```bash
+# (while your service is running in another terminal)
+python test_api.py --url http://localhost:8000
+```
+
+---
+
+## If Something Goes Wrong
+
+### Error: "Port 8000 already in use"
+```bash
+# Solution 1: Use a different port
+# Edit docker-compose.yml, change this line:
+ports:
+ - "8001:8000" # Use 8001 instead
+
+# Solution 2: Kill what's using port 8000
+lsof -i :8000
+kill -9
+```
+
+### Error: "Docker daemon not running"
+- On Windows/Mac: Open Docker Desktop app
+- On Linux: Run `sudo systemctl start docker`
+
+### Error: "Installation failed"
+```bash
+# Clean and rebuild
+docker-compose down -v
+docker-compose up --build
+```
+
+### Logs are confusing?
+That's normal! Just wait for "`Application startup complete`"
+
+---
+
+## Common Questions
+
+**Q: Does my laptop need a GPU?**
+A: No! It works fine on CPU (slower, but fine for learning).
+
+**Q: Can I edit the code?**
+A: Yes! Just edit files, then `docker-compose down` and `docker-compose up --build` again.
+
+**Q: Why does it take so long first time?**
+A: Downloading Python packages (1 GB+ of files). Second build is faster (uses cache).
+
+**Q: After I stop it, do I lose my data?**
+A: No, your data is safe. Just restart with `docker-compose up`.
+
+---
+
+## Next Steps (Learning Path)
+
+### Week 1 (YOU ARE HERE ✓)
+- [x] Get service running with Docker
+- [ ] Test API endpoints
+
+### Week 2
+- [ ] Read MLOPS_BEGINNER_GUIDE.md
+- [ ] Understand what each file does
+- [ ] Try calling API from Python script
+
+### Week 3
+- [ ] Deploy to free cloud service (Railway.app or Render.com)
+- [ ] Learn about monitoring/logs
+- [ ] Add API documentation to your GitHub
+
+### Week 4+
+- [ ] Learn Kubernetes (if interested)
+- [ ] Add authentication
+- [ ] Build a simple frontend
+
+---
+
+## Cheat Sheet (Commands You'll Use)
+
+```bash
+# Start service
+docker-compose up --build
+
+# Stop service
+Ctrl + C
+
+# View logs
+docker-compose logs -f
+
+# Enter container terminal
+docker-compose exec lexguard-api bash
+
+# Clean everything
+docker-compose down -v
+
+# Just build (don't run)
+docker build .
+
+# Show running containers
+docker-compose ps
+```
+
+---
+
+## You're Ready! 🎉
+
+Now go to browser and visit:
+```
+http://localhost:8000/docs
+```
+
+Enjoy your MLOps journey!
diff --git a/out/chunks_recursive_128_ov16.json b/out/chunks_recursive_128_ov16.json
new file mode 100644
index 0000000..a8511ea
--- /dev/null
+++ b/out/chunks_recursive_128_ov16.json
@@ -0,0 +1,152 @@
+[
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_128_ov16",
+ "text": "Indian Oil Corporation Limited \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \nDATA PRIVACY POLICY"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_128_ov16",
+ "text": "Indian Oil Corporation Limited DATA PRIVACY POLICY 1. INTRODUCTION Indian Oil Corporation Limited is a company incorporated under the laws of India, having its registered office at IndianOil Bhavan, G -9, Ali Yavar Jung Marg, Bandra [East], Mumbai – 400051, India [Hereinafter referred to as “We” or “Us” or “Company” or “ IOCL ”]. In accordance with all applicable laws, IOCL has created this Privacy Policy [Hereinafter referred to as “Privacy Policy” or “Policy” or “Privacy Statement” ] in order to demonstrate IOCL’s privacy commitment to any individual whose data IOCL collect s, stor es or process es for providing or offering its services and products. 2. DEFINITIONS Agent : Any individual or entity which has a contractual relationship with IOCL, where IOCL is the principal and the"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_128_ov16",
+ "text": "or entity which has a contractual relationship with IOCL, where IOCL is the principal and the other individual or entity is the agent, shall hereinafter be referred to as an \"Agent\" . For instance, IOCL’s distributors, dealers, CFA, contractors, etc. shall be considered Agents. Data Subject: All individuals whose personal information is either collected, received, processed, stored, dealt or handled by IOCL shall hereinafter be referred to as “Data Subject”. Information: Personal Information of a Data Subject collected by IOCL under this Policy shall hereinafter be referred to as “Information”. Such Information includes, interalia, Sensitive Personal Data or Information as defined under the Indian Information Technology Act, 2000 and the Aadhaar number and/or the biometric information associated with an Aadhaar number . Third -Party: Any individual or entity"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_128_ov16",
+ "text": "and/or the biometric information associated with an Aadhaar number . Third -Party: Any individual or entity over which IOCL does not have any control or ownership, and which operates independently on its own is hereinafter referred to as a \"Third Party\". 3. GOVERNING LAW IOCL is an organisation based and existing in India and is thus bound by the laws of the Republic of India. This Privacy Policy has been prepared in accordance with applicable Indian laws, including the Indian Information Technology Act, 2000 and the Aadhaar [Targeted Delivery of Financial and other Subsidies, Benefits and Services ] Act, 2016 . 4. APPLICABILITY This Policy appli es to all individuals whose I nformation is either collected, received, processed, stored, dealt or handled by IOCL . Indian Oil Corporation"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_128_ov16",
+ "text": "nformation is either collected, received, processed, stored, dealt or handled by IOCL . Indian Oil Corporation Limited 5. OBJECTIVE This Privacy Policy is intended to inform the Data Subject on how IOCL collects, processes, stores , and use s personal information that a Data Subject provides to IOCL either directly or indirectly . This Privacy Policy also covers IOCL’s treatment of any personal information that Third Parties share with IOCL . 6. HOW IOCL COLLECT S DATA SUBJECT ’S INFORMATION IOCL collect s Information about Data Subject through the following means: (a) whenever a Data Subject shows an interest or elects to use IOCL’s services or products, including information about IOCL schemes, irrespective of whether such services /products are prov ided directly by IOCL or by its Agents"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_128_ov16",
+ "text": "irrespective of whether such services /products are prov ided directly by IOCL or by its Agents on IOCL’s behalf ; (b) through IOCL’s network of Agents and a Third Party which collects such Information and transfers it to IOCL for a business requirement ; (c) when Data Subject downloads IOCL’s mobile applications or visits any of the websites owned by IOCL and/or creates an account on the mobile applications or the website s. (d) when Data Subject, which also includes employees of IOCL, directly elects to share their Information with IOCL. 7. WHY IOCL COLLECT S DATA SUBJECT ’S INFORMATION [PURPOSE] IOCL uses the Information to conduct its business and to provide Data Subject with the best possible services /products. IOCL will only use the Information based on"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_128_ov16",
+ "text": "Data Subject with the best possible services /products. IOCL will only use the Information based on this Privacy Policy, its understanding with the Data Subject , or as required by law. IOCL will collect adequate, relevant and necessary Information and will process such Information fairly and lawfully for the purpose it is collected . Most comm only, IOCL will use the Information in the following circumstances: (a) Where IOCL need s to perform the obligations it has promised the Data Subject , such as to provide a service or product to the Data Subject and to enable the Data Subject’s use of IOCL ’s products/ services , including but not limited to deal ing with enquiries and complaints made by or about the Data Subject relating to services/products"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_128_ov16",
+ "text": "deal ing with enquiries and complaints made by or about the Data Subject relating to services/products provided by IOCL and to improve and customise IOCL’s services/products in accordance with the Data Subject’s preferences ; (b) Where IOCL need s to comply with a legal , accounting, business or reporting obligation , including compliance with requests from the Government of India or any Governmental Agency ; (c) To send marketing as well as non-marketing commercial communications to the Data Subject ; (d) To send the Data Subject notifications that the Data Subject has specifically requested for as well as to send statements, invoices and payment reminders to the Data Subject , and to collect payments from the Data Subject ; (e) To provide Third Parties with statistical information about"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_128_ov16",
+ "text": "collect payments from the Data Subject ; (e) To provide Third Parties with statistical information about its customers but those Third Parties will not be able to identify any individu al from that information; (f) To keep IOCL’s website, mobile application s and other systems secure and to prevent fraud; Indian Oil Corporation Limited (g) To promote the mission and objectives of Skill Development in India and/or to provide and disseminate information about relevant programm es under the Skill Development Mission. (h) To manage the employment of the data subject with IOCL. IOCL collects and processes the Information only when it is essential to offer its services/products to the Data Subject. By providing his or her Information , the Data Subject agrees that IOCL may collect, use and"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_128_ov16",
+ "text": "providing his or her Information , the Data Subject agrees that IOCL may collect, use and share this Information with Third Parties for the purpose s mentioned above from 7[a] to 7[h]. 8. FAILURE TO PROVIDE INFORMATION IOCL may not be able to perform the obligations it has promised the Data Subject , or IOCL may be prevented from complying with its legal , accounting, business or reporting obligation s if the Data Subject fails to provide certain Information when requested by IOCL . IOCL shall not be held liable in any manner whatsoever if IOCL is unable to perform its services or if there is a deficiency in IOCL’s services to the Data Subject due to Data Subject’s failure to provide such Information. IOCL and/or its Agents,"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_128_ov16",
+ "text": "the Data Subject due to Data Subject’s failure to provide such Information. IOCL and/or its Agents, employees, directors, associates, etc. shall be indemnified by the Data Subject and held harmless from any complaints, legal proceedings or claims filed or initiated by the Data Subject or any Third Party against IOCL in this regard. 9. CHANGE OF PURPOSE IOCL will only use Data Subject ’s Information for the purposes for which IOCL collected it, unless IOCL reasonably consider s that it need s to use it for another reason and that reason is compatible with the original purpose. 10. CONSENT Data Subject agrees that IOCL does not need any additional or further consent from him/her to use the Data Subject ’s Information in accordance with this Policy to carry"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_128_ov16",
+ "text": "from him/her to use the Data Subject ’s Information in accordance with this Policy to carry out IOCL’s legal obligations or exercise specific rights. 11. INFORMATION SHARING AND DISCLOSURE IOCL may disclose the Information to any of its Agents or Third Parties insofar as reasonably necessary for the purposes set out in this Policy and for the purpose of providing services /products to the Data Subject . Such Agents and Third Parties are expected to provide a similar level of protection to the Information as is adhered to by IOCL . In addition to this, IOCL may disclose the Information where it is required to do so by law or to Governmental Agencies. Indian Oil Corporation Limited 12. TRANSFER OF INFORMATION OUTSIDE INDIA Unless stated otherwise, IOCL store"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_128_ov16",
+ "text": "Agencies. Indian Oil Corporation Limited 12. TRANSFER OF INFORMATION OUTSIDE INDIA Unless stated otherwise, IOCL store s and process es the Information in India. There may, however, be occasions when IOCL need s to transfer the Information outside India for its business requirements. In such instances, IOCL will exercise the same level of care in handling the Information as it does in India. 13. DATA SECURITY The Information is processed by IOCL in strict accordance with the Indian Information Technology Act, 2000, and the rules notified thereunder. IOCL implement s and maintain ‘Reasonable Security Practices and Procedures’ as stated in the Indian Information Technology Act, 2000 and the Informat ion Technology [Reasonable Security Practices and Procedures and Sensitive Personal Data or Information] Rules, 2011, while processing, collecting, storing"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_128_ov16",
+ "text": "Security Practices and Procedures and Sensitive Personal Data or Information] Rules, 2011, while processing, collecting, storing or handling any Information. 14. DATA RETENTION IOCL will only retain the Information for as lon g as necessary to fulfil the purposes IOCL collected it for, including for the purposes of satisfying any legal, business, accounting, or reporting requirements. In some circumstances, IOCL may anonymise the Information so that it can no longer be associated with the Data Subject , in which case IOCL may use such information without a further reference to Data Subject . 15. WHO HANDLES AND RETAINS DATA SUBJECT ’S INFORMATION Details about the primary entity which handles and retains the Information is provided below: Indian Oil Corporation Limited having its registered office at: IndianOil Bhavan G-9,"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_128_ov16",
+ "text": "Information is provided below: Indian Oil Corporation Limited having its registered office at: IndianOil Bhavan G-9, Ali Yavar Jung Marg Bandra [East] Mumbai – 400051 India 16. REVIEW OF INFORMATION Data Subject can contact IOCL, through the Grievance Officer whose details are provided at the end of the Policy, requesting access to Data Subject ’s Information for reviewing or requesting amendment to certain information that Data Subject considers to be incorrect or wrong. IOCL shall process such requests from Data Subject in accordance with applicable law. IOCL shall not be responsible for the authenticity of the Information provided by the Data Subject to IOCL or its Agents. Indian Oil Corporation Limited 17. WITHDRAWAL OF CONSENT Data Subject may at any time revoke or withdraw Data Subject’s consent to"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_128_ov16",
+ "text": "WITHDRAWAL OF CONSENT Data Subject may at any time revoke or withdraw Data Subject’s consent to provide Information to IOCL by contacting the Grievance Officer whose details are provided at the end of the Policy. However, such action may render it difficult for IOCL to offer some of its services /products to the Data Subject any further. IOCL shall not be held liable in any manner whatsoever if IOCL is unable to perform its services or if there is a deficiency in its services to Data Subject due to Data Subject’s withdrawal of consent. IOCL and/or its Agents, employees, directors, associates , etc. shall be indemnified by the Data Subject and held harmless from any complaints, legal proceedings or claims filed or initiated by the Data Subject or"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_128_ov16",
+ "text": "harmless from any complaints, legal proceedings or claims filed or initiated by the Data Subject or any Third Party against IOCL in this regard. 18. CHANGES TO THIS PRIVACY POLICY The Policy is subject to modification s from time to time. If IOCL decide s to change this Policy, IOCL shall publish the modified Policy on its website. 19. GRIEVANCE OFFICER In accordance with the Indian Information Technology Act 2000 and the rules notified thereund er, the contact details of the Grievance Officer are provided below: Sh. Abhinav Bhatt , Corporate Business Technology Centre, Indian Oil Institute of Petroleum Management Campus, Plot No. 83, Institutional Area, Sector 18, Gurugram, Haryana – 122001 Email: data -grievance@indianoil.in Phone : 0124 -2861509"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_128_ov16",
+ "text": "Email: data -grievance@indianoil.in Phone : 0124 -2861509"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_128_ov16",
+ "text": "Privacy Policy This document is the sole property of HDFC Capital Advisors Limited and is to be used strictly for Internal Consumption only. HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 2 of 4 Privacy Policy 1. Objective The purpose of this Privacy P olicy (“Policy ”) is to maintain the privacy of and protect the personal information of employees, contractors, outsourced workforce, vendors, interns, associates, customers , Corporate Social Responsibility (CSR) partners and business partners of HDFC Capital Advisors Limited (“ Company ”) and ensure compliance with the Information Technology Act, 2000 (“ Act”) and the Information Technology (Reasonable security practices and procedures and sensitive personal data or information) Rules, 2011 (“ Rules ”). This Policy must be read in conjunction with the"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_128_ov16",
+ "text": "or information) Rules, 2011 (“ Rules ”). This Policy must be read in conjunction with the Act and the Rules, as may be amended from time to time. 2. Applicability This Policy is applicable to the Company and the Third Party (“as defined in Section 3 of the Policy”) who may receive , collect, possess, stores, deals or handle Personal information (PI)/ Sensitive personal data or information (SPDI), on behalf of the Company . Any such Third Party is expected to have read, understood and comply with this Policy. The Company will use its best endeavors to ensure that such Third Party have read and understood the terms of this Policy and preferably having entered into a confidentiality agreement. 3. Key Definitions (a) “Data subject ” is one"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_128_ov16",
+ "text": "preferably having entered into a confidentiality agreement. 3. Key Definitions (a) “Data subject ” is one who is the subject of personal and sensitive personal data . It may include, but is not limited to, the employees, contractors, outsourced workforce, vendors, interns, associates, customers, Corporate Social Responsibility (CSR) partners and business partners of the Company. (b) \"Personal information (PI) \" means any information that relates to a natural person, which, either directly or indirectly, in combination with other information available or likely to be available with a body corporate, is capable of identifying such person . (c) “Sensitive personal data or information (SPDI) ” of a person means such personal information which consists of information relating to. i. password . ii. financial information such as Bank account or"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_128_ov16",
+ "text": "consists of information relating to. i. password . ii. financial information such as Bank account or credit card or debit card or other payment instrument details . iii. physical, physiological , and mental health condition . iv. sexual orientation . v. medical records and history . vi. Biometric information . vii. any detail relating to the above clauses as provided to body corporate for providing service; and viii. any of the information received under above clauses by body corporate for processing, stored or processed under lawful contract or otherwise: HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 3 of 4 provided that, any information that is freely available or accessible in public domain or furnished under the Right to Information Act, 2005 or any"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_128_ov16",
+ "text": "or accessible in public domain or furnished under the Right to Information Act, 2005 or any other law for the time being in force shall not be regarded as sensitive personal data or information for th e purposes of these rules. (d) “Third Party ” means all external parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy describes generally acceptable privacy principles for the protection and appropriate use of personal information and SPDI at the Company . 4.1. Consent The Company shall obtain consent from the Data subject before collecting, receiving, possessing, storing, dealing or handling personal information or SPDI of the provider of such information. No"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_128_ov16",
+ "text": "possessing, storing, dealing or handling personal information or SPDI of the provider of such information. No PI/SPDI shall be used by the Company without the consent of the provider of the information . The consent shall be obtained (in writing or electronically) from the Data subjects before or at the time of collecting PI or SPDI . The Data subject shall be provided with a choice to opt out and withdraw any consent previously given by way of written communication to the Company . 4.2. Collection of Personal Information a) The Company shall not collect PI or Sensitive personal data or information (SPDI) unless : (i) the information is collected for a lawful purpose connected with a function or activity of the Company or any person on its"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_128_ov16",
+ "text": "lawful purpose connected with a function or activity of the Company or any person on its behalf; and ( ii) the collection of the PI / SPDI is considered necessary for that purpose . b) While collecting PI/ SPDI directly from the person concerned, the Company or any person on its behalf s hall take such steps as are, in the circumstances, reasonable to ensure that the person concerned is having the knowledge of : (i) the fact that the information is being collected; ( ii) the purpose for which the information is being collected; ( iii) the intended recipients of the information; ( iv) the name and address of the agency that is collecting the information; and (v) the agency that will retain the information. c) The"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_128_ov16",
+ "text": "that is collecting the information; and (v) the agency that will retain the information. c) The Company or any person on its behalf holding PI/ SPDI shall not retain that information for longer than is required for the purposes for which the information may lawfully be used or is otherwise required under any other law for the time being in force. d) The PI/SPDI collected shall be used for the purpose for which it has been collected. e) The Company shall address any discrepancies and grievances of the provider of the PI/ SPDI in a time bound manner. For this purpose, the Company shall designate a Grievance Officer and publish his name and contact details on its website . The Grievance Officer shall use best endeavors to redress"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_128_ov16",
+ "text": "and contact details on its website . The Grievance Officer shall use best endeavors to redress the grievances o f the provider of information expeditiously within one month from the date of receipt of grievance . 4.3. Disclosure of Information a) Disclosure of PI/ SPDI by the Company to any Third Party shall require prior permission from the provider of such information, who has provided such information under lawful HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 4 of 4 contract or otherwise, unless such disclosure has been agreed to in the contract between the Company and the provider of information, or where the disclosure is necessary for compliance of a legal /regulatory obligation ; Provided that the information shall be shared by the"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_128_ov16",
+ "text": "compliance of a legal /regulatory obligation ; Provided that the information shall be shared by the Company , without obtaining prior consent from the provider of information, with Government agencies mandated under the law to obtain information including sensitive personal data or information for the purpose of verification of identity, or for prevention, detection, investigation including cyber inciden ts, prosecution, and punishment of offences. The Company will use best endeavors to ensure that t he Government agency send s a request in writing to the Company possessing the sensitive personal data or information stating clearly the purpose of seeking such information and stating that the information so obtained shall not be published or shared with any other person. b) The Company shall disclose any PI/ SPDI to any"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_128_ov16",
+ "text": "or shared with any other person. b) The Company shall disclose any PI/ SPDI to any Third Party by an order under the law for the time being in force. c) The Company or any person on its behalf shall not publish the PI/ SPDI . d) The Company shall use its best endeavors (including by way of execution of appropriate non-disclosure agreements) to ensure that t he Third Party receiving the PI/ SPDI from the Company or any person on its behalf shall not disclose it further . 4.4. Reasonable Security Practices and Procedures The Company endeavors to have in place reasonable security practices and procedures in place to protect the PI/SPDI of the provider of information."
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_128_ov16",
+ "text": "PI/SPDI of the provider of information."
+ }
+]
\ No newline at end of file
diff --git a/out/chunks_recursive_128_ov8.json b/out/chunks_recursive_128_ov8.json
new file mode 100644
index 0000000..ef1a8b0
--- /dev/null
+++ b/out/chunks_recursive_128_ov8.json
@@ -0,0 +1,137 @@
+[
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_128_ov8",
+ "text": "Indian Oil Corporation Limited \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \nDATA PRIVACY POLICY"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_128_ov8",
+ "text": "Indian Oil Corporation Limited DATA PRIVACY POLICY 1. INTRODUCTION Indian Oil Corporation Limited is a company incorporated under the laws of India, having its registered office at IndianOil Bhavan, G -9, Ali Yavar Jung Marg, Bandra [East], Mumbai – 400051, India [Hereinafter referred to as “We” or “Us” or “Company” or “ IOCL ”]. In accordance with all applicable laws, IOCL has created this Privacy Policy [Hereinafter referred to as “Privacy Policy” or “Policy” or “Privacy Statement” ] in order to demonstrate IOCL’s privacy commitment to any individual whose data IOCL collect s, stor es or process es for providing or offering its services and products. 2. DEFINITIONS Agent : Any individual or entity which has a contractual relationship with IOCL, where IOCL is the principal and the"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_128_ov8",
+ "text": "IOCL, where IOCL is the principal and the other individual or entity is the agent, shall hereinafter be referred to as an \"Agent\" . For instance, IOCL’s distributors, dealers, CFA, contractors, etc. shall be considered Agents. Data Subject: All individuals whose personal information is either collected, received, processed, stored, dealt or handled by IOCL shall hereinafter be referred to as “Data Subject”. Information: Personal Information of a Data Subject collected by IOCL under this Policy shall hereinafter be referred to as “Information”. Such Information includes, interalia, Sensitive Personal Data or Information as defined under the Indian Information Technology Act, 2000 and the Aadhaar number and/or the biometric information associated with an Aadhaar number . Third -Party: Any individual or entity over which IOCL does not have any control"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_128_ov8",
+ "text": "over which IOCL does not have any control or ownership, and which operates independently on its own is hereinafter referred to as a \"Third Party\". 3. GOVERNING LAW IOCL is an organisation based and existing in India and is thus bound by the laws of the Republic of India. This Privacy Policy has been prepared in accordance with applicable Indian laws, including the Indian Information Technology Act, 2000 and the Aadhaar [Targeted Delivery of Financial and other Subsidies, Benefits and Services ] Act, 2016 . 4. APPLICABILITY This Policy appli es to all individuals whose I nformation is either collected, received, processed, stored, dealt or handled by IOCL . Indian Oil Corporation Limited 5. OBJECTIVE This Privacy Policy is intended to inform the Data Subject on how IOCL"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_128_ov8",
+ "text": "to inform the Data Subject on how IOCL collects, processes, stores , and use s personal information that a Data Subject provides to IOCL either directly or indirectly . This Privacy Policy also covers IOCL’s treatment of any personal information that Third Parties share with IOCL . 6. HOW IOCL COLLECT S DATA SUBJECT ’S INFORMATION IOCL collect s Information about Data Subject through the following means: (a) whenever a Data Subject shows an interest or elects to use IOCL’s services or products, including information about IOCL schemes, irrespective of whether such services /products are prov ided directly by IOCL or by its Agents on IOCL’s behalf ; (b) through IOCL’s network of Agents and a Third Party which collects such Information and transfers it to IOCL for"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_128_ov8",
+ "text": "such Information and transfers it to IOCL for a business requirement ; (c) when Data Subject downloads IOCL’s mobile applications or visits any of the websites owned by IOCL and/or creates an account on the mobile applications or the website s. (d) when Data Subject, which also includes employees of IOCL, directly elects to share their Information with IOCL. 7. WHY IOCL COLLECT S DATA SUBJECT ’S INFORMATION [PURPOSE] IOCL uses the Information to conduct its business and to provide Data Subject with the best possible services /products. IOCL will only use the Information based on this Privacy Policy, its understanding with the Data Subject , or as required by law. IOCL will collect adequate, relevant and necessary Information and will process such Information fairly and lawfully for"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_128_ov8",
+ "text": "will process such Information fairly and lawfully for the purpose it is collected . Most comm only, IOCL will use the Information in the following circumstances: (a) Where IOCL need s to perform the obligations it has promised the Data Subject , such as to provide a service or product to the Data Subject and to enable the Data Subject’s use of IOCL ’s products/ services , including but not limited to deal ing with enquiries and complaints made by or about the Data Subject relating to services/products provided by IOCL and to improve and customise IOCL’s services/products in accordance with the Data Subject’s preferences ; (b) Where IOCL need s to comply with a legal , accounting, business or reporting obligation , including compliance with requests from"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_128_ov8",
+ "text": "reporting obligation , including compliance with requests from the Government of India or any Governmental Agency ; (c) To send marketing as well as non-marketing commercial communications to the Data Subject ; (d) To send the Data Subject notifications that the Data Subject has specifically requested for as well as to send statements, invoices and payment reminders to the Data Subject , and to collect payments from the Data Subject ; (e) To provide Third Parties with statistical information about its customers but those Third Parties will not be able to identify any individu al from that information; (f) To keep IOCL’s website, mobile application s and other systems secure and to prevent fraud; Indian Oil Corporation Limited (g) To promote the mission and objectives of Skill Development"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_128_ov8",
+ "text": "promote the mission and objectives of Skill Development in India and/or to provide and disseminate information about relevant programm es under the Skill Development Mission. (h) To manage the employment of the data subject with IOCL. IOCL collects and processes the Information only when it is essential to offer its services/products to the Data Subject. By providing his or her Information , the Data Subject agrees that IOCL may collect, use and share this Information with Third Parties for the purpose s mentioned above from 7[a] to 7[h]. 8. FAILURE TO PROVIDE INFORMATION IOCL may not be able to perform the obligations it has promised the Data Subject , or IOCL may be prevented from complying with its legal , accounting, business or reporting obligation s if the"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_128_ov8",
+ "text": "accounting, business or reporting obligation s if the Data Subject fails to provide certain Information when requested by IOCL . IOCL shall not be held liable in any manner whatsoever if IOCL is unable to perform its services or if there is a deficiency in IOCL’s services to the Data Subject due to Data Subject’s failure to provide such Information. IOCL and/or its Agents, employees, directors, associates, etc. shall be indemnified by the Data Subject and held harmless from any complaints, legal proceedings or claims filed or initiated by the Data Subject or any Third Party against IOCL in this regard. 9. CHANGE OF PURPOSE IOCL will only use Data Subject ’s Information for the purposes for which IOCL collected it, unless IOCL reasonably consider s that it"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_128_ov8",
+ "text": "it, unless IOCL reasonably consider s that it need s to use it for another reason and that reason is compatible with the original purpose. 10. CONSENT Data Subject agrees that IOCL does not need any additional or further consent from him/her to use the Data Subject ’s Information in accordance with this Policy to carry out IOCL’s legal obligations or exercise specific rights. 11. INFORMATION SHARING AND DISCLOSURE IOCL may disclose the Information to any of its Agents or Third Parties insofar as reasonably necessary for the purposes set out in this Policy and for the purpose of providing services /products to the Data Subject . Such Agents and Third Parties are expected to provide a similar level of protection to the Information as is adhered to"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_128_ov8",
+ "text": "protection to the Information as is adhered to by IOCL . In addition to this, IOCL may disclose the Information where it is required to do so by law or to Governmental Agencies. Indian Oil Corporation Limited 12. TRANSFER OF INFORMATION OUTSIDE INDIA Unless stated otherwise, IOCL store s and process es the Information in India. There may, however, be occasions when IOCL need s to transfer the Information outside India for its business requirements. In such instances, IOCL will exercise the same level of care in handling the Information as it does in India. 13. DATA SECURITY The Information is processed by IOCL in strict accordance with the Indian Information Technology Act, 2000, and the rules notified thereunder. IOCL implement s and maintain ‘Reasonable Security Practices and"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_128_ov8",
+ "text": "implement s and maintain ‘Reasonable Security Practices and Procedures’ as stated in the Indian Information Technology Act, 2000 and the Informat ion Technology [Reasonable Security Practices and Procedures and Sensitive Personal Data or Information] Rules, 2011, while processing, collecting, storing or handling any Information. 14. DATA RETENTION IOCL will only retain the Information for as lon g as necessary to fulfil the purposes IOCL collected it for, including for the purposes of satisfying any legal, business, accounting, or reporting requirements. In some circumstances, IOCL may anonymise the Information so that it can no longer be associated with the Data Subject , in which case IOCL may use such information without a further reference to Data Subject . 15. WHO HANDLES AND RETAINS DATA SUBJECT ’S INFORMATION Details about"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_128_ov8",
+ "text": "AND RETAINS DATA SUBJECT ’S INFORMATION Details about the primary entity which handles and retains the Information is provided below: Indian Oil Corporation Limited having its registered office at: IndianOil Bhavan G-9, Ali Yavar Jung Marg Bandra [East] Mumbai – 400051 India 16. REVIEW OF INFORMATION Data Subject can contact IOCL, through the Grievance Officer whose details are provided at the end of the Policy, requesting access to Data Subject ’s Information for reviewing or requesting amendment to certain information that Data Subject considers to be incorrect or wrong. IOCL shall process such requests from Data Subject in accordance with applicable law. IOCL shall not be responsible for the authenticity of the Information provided by the Data Subject to IOCL or its Agents. Indian Oil Corporation Limited 17."
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_128_ov8",
+ "text": "or its Agents. Indian Oil Corporation Limited 17. WITHDRAWAL OF CONSENT Data Subject may at any time revoke or withdraw Data Subject’s consent to provide Information to IOCL by contacting the Grievance Officer whose details are provided at the end of the Policy. However, such action may render it difficult for IOCL to offer some of its services /products to the Data Subject any further. IOCL shall not be held liable in any manner whatsoever if IOCL is unable to perform its services or if there is a deficiency in its services to Data Subject due to Data Subject’s withdrawal of consent. IOCL and/or its Agents, employees, directors, associates , etc. shall be indemnified by the Data Subject and held harmless from any complaints, legal proceedings or claims"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_128_ov8",
+ "text": "harmless from any complaints, legal proceedings or claims filed or initiated by the Data Subject or any Third Party against IOCL in this regard. 18. CHANGES TO THIS PRIVACY POLICY The Policy is subject to modification s from time to time. If IOCL decide s to change this Policy, IOCL shall publish the modified Policy on its website. 19. GRIEVANCE OFFICER In accordance with the Indian Information Technology Act 2000 and the rules notified thereund er, the contact details of the Grievance Officer are provided below: Sh. Abhinav Bhatt , Corporate Business Technology Centre, Indian Oil Institute of Petroleum Management Campus, Plot No. 83, Institutional Area, Sector 18, Gurugram, Haryana – 122001 Email: data -grievance@indianoil.in Phone : 0124 -2861509"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_128_ov8",
+ "text": "Privacy Policy This document is the sole property of HDFC Capital Advisors Limited and is to be used strictly for Internal Consumption only. HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 2 of 4 Privacy Policy 1. Objective The purpose of this Privacy P olicy (“Policy ”) is to maintain the privacy of and protect the personal information of employees, contractors, outsourced workforce, vendors, interns, associates, customers , Corporate Social Responsibility (CSR) partners and business partners of HDFC Capital Advisors Limited (“ Company ”) and ensure compliance with the Information Technology Act, 2000 (“ Act”) and the Information Technology (Reasonable security practices and procedures and sensitive personal data or information) Rules, 2011 (“ Rules ”). This Policy must be read in conjunction with the"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_128_ov8",
+ "text": "Policy must be read in conjunction with the Act and the Rules, as may be amended from time to time. 2. Applicability This Policy is applicable to the Company and the Third Party (“as defined in Section 3 of the Policy”) who may receive , collect, possess, stores, deals or handle Personal information (PI)/ Sensitive personal data or information (SPDI), on behalf of the Company . Any such Third Party is expected to have read, understood and comply with this Policy. The Company will use its best endeavors to ensure that such Third Party have read and understood the terms of this Policy and preferably having entered into a confidentiality agreement. 3. Key Definitions (a) “Data subject ” is one who is the subject of personal and sensitive"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_128_ov8",
+ "text": "who is the subject of personal and sensitive personal data . It may include, but is not limited to, the employees, contractors, outsourced workforce, vendors, interns, associates, customers, Corporate Social Responsibility (CSR) partners and business partners of the Company. (b) \"Personal information (PI) \" means any information that relates to a natural person, which, either directly or indirectly, in combination with other information available or likely to be available with a body corporate, is capable of identifying such person . (c) “Sensitive personal data or information (SPDI) ” of a person means such personal information which consists of information relating to. i. password . ii. financial information such as Bank account or credit card or debit card or other payment instrument details . iii. physical, physiological , and"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_128_ov8",
+ "text": "instrument details . iii. physical, physiological , and mental health condition . iv. sexual orientation . v. medical records and history . vi. Biometric information . vii. any detail relating to the above clauses as provided to body corporate for providing service; and viii. any of the information received under above clauses by body corporate for processing, stored or processed under lawful contract or otherwise: HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 3 of 4 provided that, any information that is freely available or accessible in public domain or furnished under the Right to Information Act, 2005 or any other law for the time being in force shall not be regarded as sensitive personal data or information for th e purposes of these"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_128_ov8",
+ "text": "or information for th e purposes of these rules. (d) “Third Party ” means all external parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy describes generally acceptable privacy principles for the protection and appropriate use of personal information and SPDI at the Company . 4.1. Consent The Company shall obtain consent from the Data subject before collecting, receiving, possessing, storing, dealing or handling personal information or SPDI of the provider of such information. No PI/SPDI shall be used by the Company without the consent of the provider of the information . The consent shall be obtained (in writing or electronically) from the Data subjects before or"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_128_ov8",
+ "text": "or electronically) from the Data subjects before or at the time of collecting PI or SPDI . The Data subject shall be provided with a choice to opt out and withdraw any consent previously given by way of written communication to the Company . 4.2. Collection of Personal Information a) The Company shall not collect PI or Sensitive personal data or information (SPDI) unless : (i) the information is collected for a lawful purpose connected with a function or activity of the Company or any person on its behalf; and ( ii) the collection of the PI / SPDI is considered necessary for that purpose . b) While collecting PI/ SPDI directly from the person concerned, the Company or any person on its behalf s hall take such"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_128_ov8",
+ "text": "person on its behalf s hall take such steps as are, in the circumstances, reasonable to ensure that the person concerned is having the knowledge of : (i) the fact that the information is being collected; ( ii) the purpose for which the information is being collected; ( iii) the intended recipients of the information; ( iv) the name and address of the agency that is collecting the information; and (v) the agency that will retain the information. c) The Company or any person on its behalf holding PI/ SPDI shall not retain that information for longer than is required for the purposes for which the information may lawfully be used or is otherwise required under any other law for the time being in force. d) The PI/SPDI"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_128_ov8",
+ "text": "the time being in force. d) The PI/SPDI collected shall be used for the purpose for which it has been collected. e) The Company shall address any discrepancies and grievances of the provider of the PI/ SPDI in a time bound manner. For this purpose, the Company shall designate a Grievance Officer and publish his name and contact details on its website . The Grievance Officer shall use best endeavors to redress the grievances o f the provider of information expeditiously within one month from the date of receipt of grievance . 4.3. Disclosure of Information a) Disclosure of PI/ SPDI by the Company to any Third Party shall require prior permission from the provider of such information, who has provided such information under lawful HDFC Capital Privacy"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_128_ov8",
+ "text": "provided such information under lawful HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 4 of 4 contract or otherwise, unless such disclosure has been agreed to in the contract between the Company and the provider of information, or where the disclosure is necessary for compliance of a legal /regulatory obligation ; Provided that the information shall be shared by the Company , without obtaining prior consent from the provider of information, with Government agencies mandated under the law to obtain information including sensitive personal data or information for the purpose of verification of identity, or for prevention, detection, investigation including cyber inciden ts, prosecution, and punishment of offences. The Company will use best endeavors to ensure that t he Government agency send s a"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_128_ov8",
+ "text": "that t he Government agency send s a request in writing to the Company possessing the sensitive personal data or information stating clearly the purpose of seeking such information and stating that the information so obtained shall not be published or shared with any other person. b) The Company shall disclose any PI/ SPDI to any Third Party by an order under the law for the time being in force. c) The Company or any person on its behalf shall not publish the PI/ SPDI . d) The Company shall use its best endeavors (including by way of execution of appropriate non-disclosure agreements) to ensure that t he Third Party receiving the PI/ SPDI from the Company or any person on its behalf shall not disclose it further"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_128_ov8",
+ "text": "on its behalf shall not disclose it further . 4.4. Reasonable Security Practices and Procedures The Company endeavors to have in place reasonable security practices and procedures in place to protect the PI/SPDI of the provider of information."
+ }
+]
\ No newline at end of file
diff --git a/out/chunks_recursive_256_ov16.json b/out/chunks_recursive_256_ov16.json
new file mode 100644
index 0000000..72261eb
--- /dev/null
+++ b/out/chunks_recursive_256_ov16.json
@@ -0,0 +1,77 @@
+[
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_256_ov16",
+ "text": "Indian Oil Corporation Limited \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \nDATA PRIVACY POLICY"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_256_ov16",
+ "text": "Indian Oil Corporation Limited DATA PRIVACY POLICY 1. INTRODUCTION Indian Oil Corporation Limited is a company incorporated under the laws of India, having its registered office at IndianOil Bhavan, G -9, Ali Yavar Jung Marg, Bandra [East], Mumbai – 400051, India [Hereinafter referred to as “We” or “Us” or “Company” or “ IOCL ”]. In accordance with all applicable laws, IOCL has created this Privacy Policy [Hereinafter referred to as “Privacy Policy” or “Policy” or “Privacy Statement” ] in order to demonstrate IOCL’s privacy commitment to any individual whose data IOCL collect s, stor es or process es for providing or offering its services and products. 2. DEFINITIONS Agent : Any individual or entity which has a contractual relationship with IOCL, where IOCL is the principal and the other individual or entity is the agent, shall hereinafter be referred to as an \"Agent\" . For instance, IOCL’s distributors, dealers, CFA, contractors, etc. shall be considered Agents. Data Subject: All individuals whose personal information is either collected, received, processed, stored, dealt or handled by IOCL shall hereinafter be referred to as “Data Subject”. Information: Personal Information of a Data Subject collected by IOCL under this Policy shall hereinafter be referred to as “Information”. Such Information includes, interalia, Sensitive Personal Data or Information as defined under the Indian Information Technology Act, 2000 and the Aadhaar number and/or the biometric information associated with an Aadhaar number . Third -Party: Any individual or entity over which IOCL does not have any control or ownership, and which operates independently on its"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_256_ov16",
+ "text": "over which IOCL does not have any control or ownership, and which operates independently on its own is hereinafter referred to as a \"Third Party\". 3. GOVERNING LAW IOCL is an organisation based and existing in India and is thus bound by the laws of the Republic of India. This Privacy Policy has been prepared in accordance with applicable Indian laws, including the Indian Information Technology Act, 2000 and the Aadhaar [Targeted Delivery of Financial and other Subsidies, Benefits and Services ] Act, 2016 . 4. APPLICABILITY This Policy appli es to all individuals whose I nformation is either collected, received, processed, stored, dealt or handled by IOCL . Indian Oil Corporation Limited 5. OBJECTIVE This Privacy Policy is intended to inform the Data Subject on how IOCL collects, processes, stores , and use s personal information that a Data Subject provides to IOCL either directly or indirectly . This Privacy Policy also covers IOCL’s treatment of any personal information that Third Parties share with IOCL . 6. HOW IOCL COLLECT S DATA SUBJECT ’S INFORMATION IOCL collect s Information about Data Subject through the following means: (a) whenever a Data Subject shows an interest or elects to use IOCL’s services or products, including information about IOCL schemes, irrespective of whether such services /products are prov ided directly by IOCL or by its Agents on IOCL’s behalf ; (b) through IOCL’s network of Agents and a Third Party which collects such Information and transfers it to IOCL for a business requirement ; (c) when Data Subject"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_256_ov16",
+ "text": "such Information and transfers it to IOCL for a business requirement ; (c) when Data Subject downloads IOCL’s mobile applications or visits any of the websites owned by IOCL and/or creates an account on the mobile applications or the website s. (d) when Data Subject, which also includes employees of IOCL, directly elects to share their Information with IOCL. 7. WHY IOCL COLLECT S DATA SUBJECT ’S INFORMATION [PURPOSE] IOCL uses the Information to conduct its business and to provide Data Subject with the best possible services /products. IOCL will only use the Information based on this Privacy Policy, its understanding with the Data Subject , or as required by law. IOCL will collect adequate, relevant and necessary Information and will process such Information fairly and lawfully for the purpose it is collected . Most comm only, IOCL will use the Information in the following circumstances: (a) Where IOCL need s to perform the obligations it has promised the Data Subject , such as to provide a service or product to the Data Subject and to enable the Data Subject’s use of IOCL ’s products/ services , including but not limited to deal ing with enquiries and complaints made by or about the Data Subject relating to services/products provided by IOCL and to improve and customise IOCL’s services/products in accordance with the Data Subject’s preferences ; (b) Where IOCL need s to comply with a legal , accounting, business or reporting obligation , including compliance with requests from the Government of India or any Governmental Agency"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_256_ov16",
+ "text": "reporting obligation , including compliance with requests from the Government of India or any Governmental Agency ; (c) To send marketing as well as non-marketing commercial communications to the Data Subject ; (d) To send the Data Subject notifications that the Data Subject has specifically requested for as well as to send statements, invoices and payment reminders to the Data Subject , and to collect payments from the Data Subject ; (e) To provide Third Parties with statistical information about its customers but those Third Parties will not be able to identify any individu al from that information; (f) To keep IOCL’s website, mobile application s and other systems secure and to prevent fraud; Indian Oil Corporation Limited (g) To promote the mission and objectives of Skill Development in India and/or to provide and disseminate information about relevant programm es under the Skill Development Mission. (h) To manage the employment of the data subject with IOCL. IOCL collects and processes the Information only when it is essential to offer its services/products to the Data Subject. By providing his or her Information , the Data Subject agrees that IOCL may collect, use and share this Information with Third Parties for the purpose s mentioned above from 7[a] to 7[h]. 8. FAILURE TO PROVIDE INFORMATION IOCL may not be able to perform the obligations it has promised the Data Subject , or IOCL may be prevented from complying with its legal , accounting, business or reporting obligation s if the Data Subject fails to provide certain Information when"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_256_ov16",
+ "text": "accounting, business or reporting obligation s if the Data Subject fails to provide certain Information when requested by IOCL . IOCL shall not be held liable in any manner whatsoever if IOCL is unable to perform its services or if there is a deficiency in IOCL’s services to the Data Subject due to Data Subject’s failure to provide such Information. IOCL and/or its Agents, employees, directors, associates, etc. shall be indemnified by the Data Subject and held harmless from any complaints, legal proceedings or claims filed or initiated by the Data Subject or any Third Party against IOCL in this regard. 9. CHANGE OF PURPOSE IOCL will only use Data Subject ’s Information for the purposes for which IOCL collected it, unless IOCL reasonably consider s that it need s to use it for another reason and that reason is compatible with the original purpose. 10. CONSENT Data Subject agrees that IOCL does not need any additional or further consent from him/her to use the Data Subject ’s Information in accordance with this Policy to carry out IOCL’s legal obligations or exercise specific rights. 11. INFORMATION SHARING AND DISCLOSURE IOCL may disclose the Information to any of its Agents or Third Parties insofar as reasonably necessary for the purposes set out in this Policy and for the purpose of providing services /products to the Data Subject . Such Agents and Third Parties are expected to provide a similar level of protection to the Information as is adhered to by IOCL . In addition to this, IOCL"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_256_ov16",
+ "text": "protection to the Information as is adhered to by IOCL . In addition to this, IOCL may disclose the Information where it is required to do so by law or to Governmental Agencies. Indian Oil Corporation Limited 12. TRANSFER OF INFORMATION OUTSIDE INDIA Unless stated otherwise, IOCL store s and process es the Information in India. There may, however, be occasions when IOCL need s to transfer the Information outside India for its business requirements. In such instances, IOCL will exercise the same level of care in handling the Information as it does in India. 13. DATA SECURITY The Information is processed by IOCL in strict accordance with the Indian Information Technology Act, 2000, and the rules notified thereunder. IOCL implement s and maintain ‘Reasonable Security Practices and Procedures’ as stated in the Indian Information Technology Act, 2000 and the Informat ion Technology [Reasonable Security Practices and Procedures and Sensitive Personal Data or Information] Rules, 2011, while processing, collecting, storing or handling any Information. 14. DATA RETENTION IOCL will only retain the Information for as lon g as necessary to fulfil the purposes IOCL collected it for, including for the purposes of satisfying any legal, business, accounting, or reporting requirements. In some circumstances, IOCL may anonymise the Information so that it can no longer be associated with the Data Subject , in which case IOCL may use such information without a further reference to Data Subject . 15. WHO HANDLES AND RETAINS DATA SUBJECT ’S INFORMATION Details about the primary entity which handles and retains the"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_256_ov16",
+ "text": "AND RETAINS DATA SUBJECT ’S INFORMATION Details about the primary entity which handles and retains the Information is provided below: Indian Oil Corporation Limited having its registered office at: IndianOil Bhavan G-9, Ali Yavar Jung Marg Bandra [East] Mumbai – 400051 India 16. REVIEW OF INFORMATION Data Subject can contact IOCL, through the Grievance Officer whose details are provided at the end of the Policy, requesting access to Data Subject ’s Information for reviewing or requesting amendment to certain information that Data Subject considers to be incorrect or wrong. IOCL shall process such requests from Data Subject in accordance with applicable law. IOCL shall not be responsible for the authenticity of the Information provided by the Data Subject to IOCL or its Agents. Indian Oil Corporation Limited 17. WITHDRAWAL OF CONSENT Data Subject may at any time revoke or withdraw Data Subject’s consent to provide Information to IOCL by contacting the Grievance Officer whose details are provided at the end of the Policy. However, such action may render it difficult for IOCL to offer some of its services /products to the Data Subject any further. IOCL shall not be held liable in any manner whatsoever if IOCL is unable to perform its services or if there is a deficiency in its services to Data Subject due to Data Subject’s withdrawal of consent. IOCL and/or its Agents, employees, directors, associates , etc. shall be indemnified by the Data Subject and held harmless from any complaints, legal proceedings or claims filed or initiated by the Data Subject or"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_256_ov16",
+ "text": "harmless from any complaints, legal proceedings or claims filed or initiated by the Data Subject or any Third Party against IOCL in this regard. 18. CHANGES TO THIS PRIVACY POLICY The Policy is subject to modification s from time to time. If IOCL decide s to change this Policy, IOCL shall publish the modified Policy on its website. 19. GRIEVANCE OFFICER In accordance with the Indian Information Technology Act 2000 and the rules notified thereund er, the contact details of the Grievance Officer are provided below: Sh. Abhinav Bhatt , Corporate Business Technology Centre, Indian Oil Institute of Petroleum Management Campus, Plot No. 83, Institutional Area, Sector 18, Gurugram, Haryana – 122001 Email: data -grievance@indianoil.in Phone : 0124 -2861509"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_256_ov16",
+ "text": "Privacy Policy This document is the sole property of HDFC Capital Advisors Limited and is to be used strictly for Internal Consumption only. HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 2 of 4 Privacy Policy 1. Objective The purpose of this Privacy P olicy (“Policy ”) is to maintain the privacy of and protect the personal information of employees, contractors, outsourced workforce, vendors, interns, associates, customers , Corporate Social Responsibility (CSR) partners and business partners of HDFC Capital Advisors Limited (“ Company ”) and ensure compliance with the Information Technology Act, 2000 (“ Act”) and the Information Technology (Reasonable security practices and procedures and sensitive personal data or information) Rules, 2011 (“ Rules ”). This Policy must be read in conjunction with the Act and the Rules, as may be amended from time to time. 2. Applicability This Policy is applicable to the Company and the Third Party (“as defined in Section 3 of the Policy”) who may receive , collect, possess, stores, deals or handle Personal information (PI)/ Sensitive personal data or information (SPDI), on behalf of the Company . Any such Third Party is expected to have read, understood and comply with this Policy. The Company will use its best endeavors to ensure that such Third Party have read and understood the terms of this Policy and preferably having entered into a confidentiality agreement. 3. Key Definitions (a) “Data subject ” is one who is the subject of personal and sensitive personal data . It may include, but is"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_256_ov16",
+ "text": "who is the subject of personal and sensitive personal data . It may include, but is not limited to, the employees, contractors, outsourced workforce, vendors, interns, associates, customers, Corporate Social Responsibility (CSR) partners and business partners of the Company. (b) \"Personal information (PI) \" means any information that relates to a natural person, which, either directly or indirectly, in combination with other information available or likely to be available with a body corporate, is capable of identifying such person . (c) “Sensitive personal data or information (SPDI) ” of a person means such personal information which consists of information relating to. i. password . ii. financial information such as Bank account or credit card or debit card or other payment instrument details . iii. physical, physiological , and mental health condition . iv. sexual orientation . v. medical records and history . vi. Biometric information . vii. any detail relating to the above clauses as provided to body corporate for providing service; and viii. any of the information received under above clauses by body corporate for processing, stored or processed under lawful contract or otherwise: HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 3 of 4 provided that, any information that is freely available or accessible in public domain or furnished under the Right to Information Act, 2005 or any other law for the time being in force shall not be regarded as sensitive personal data or information for th e purposes of these rules. (d) “Third Party ” means all external"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_256_ov16",
+ "text": "or information for th e purposes of these rules. (d) “Third Party ” means all external parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy describes generally acceptable privacy principles for the protection and appropriate use of personal information and SPDI at the Company . 4.1. Consent The Company shall obtain consent from the Data subject before collecting, receiving, possessing, storing, dealing or handling personal information or SPDI of the provider of such information. No PI/SPDI shall be used by the Company without the consent of the provider of the information . The consent shall be obtained (in writing or electronically) from the Data subjects before or at the time of collecting PI or SPDI . The Data subject shall be provided with a choice to opt out and withdraw any consent previously given by way of written communication to the Company . 4.2. Collection of Personal Information a) The Company shall not collect PI or Sensitive personal data or information (SPDI) unless : (i) the information is collected for a lawful purpose connected with a function or activity of the Company or any person on its behalf; and ( ii) the collection of the PI / SPDI is considered necessary for that purpose . b) While collecting PI/ SPDI directly from the person concerned, the Company or any person on its behalf s hall take such steps as are, in the circumstances, reasonable to"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_256_ov16",
+ "text": "person on its behalf s hall take such steps as are, in the circumstances, reasonable to ensure that the person concerned is having the knowledge of : (i) the fact that the information is being collected; ( ii) the purpose for which the information is being collected; ( iii) the intended recipients of the information; ( iv) the name and address of the agency that is collecting the information; and (v) the agency that will retain the information. c) The Company or any person on its behalf holding PI/ SPDI shall not retain that information for longer than is required for the purposes for which the information may lawfully be used or is otherwise required under any other law for the time being in force. d) The PI/SPDI collected shall be used for the purpose for which it has been collected. e) The Company shall address any discrepancies and grievances of the provider of the PI/ SPDI in a time bound manner. For this purpose, the Company shall designate a Grievance Officer and publish his name and contact details on its website . The Grievance Officer shall use best endeavors to redress the grievances o f the provider of information expeditiously within one month from the date of receipt of grievance . 4.3. Disclosure of Information a) Disclosure of PI/ SPDI by the Company to any Third Party shall require prior permission from the provider of such information, who has provided such information under lawful HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_256_ov16",
+ "text": "provided such information under lawful HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 4 of 4 contract or otherwise, unless such disclosure has been agreed to in the contract between the Company and the provider of information, or where the disclosure is necessary for compliance of a legal /regulatory obligation ; Provided that the information shall be shared by the Company , without obtaining prior consent from the provider of information, with Government agencies mandated under the law to obtain information including sensitive personal data or information for the purpose of verification of identity, or for prevention, detection, investigation including cyber inciden ts, prosecution, and punishment of offences. The Company will use best endeavors to ensure that t he Government agency send s a request in writing to the Company possessing the sensitive personal data or information stating clearly the purpose of seeking such information and stating that the information so obtained shall not be published or shared with any other person. b) The Company shall disclose any PI/ SPDI to any Third Party by an order under the law for the time being in force. c) The Company or any person on its behalf shall not publish the PI/ SPDI . d) The Company shall use its best endeavors (including by way of execution of appropriate non-disclosure agreements) to ensure that t he Third Party receiving the PI/ SPDI from the Company or any person on its behalf shall not disclose it further . 4.4. Reasonable Security Practices and Procedures The"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_256_ov16",
+ "text": "on its behalf shall not disclose it further . 4.4. Reasonable Security Practices and Procedures The Company endeavors to have in place reasonable security practices and procedures in place to protect the PI/SPDI of the provider of information."
+ }
+]
\ No newline at end of file
diff --git a/out/chunks_recursive_256_ov8.json b/out/chunks_recursive_256_ov8.json
new file mode 100644
index 0000000..f204240
--- /dev/null
+++ b/out/chunks_recursive_256_ov8.json
@@ -0,0 +1,72 @@
+[
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_256_ov8",
+ "text": "Indian Oil Corporation Limited \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \nDATA PRIVACY POLICY"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_256_ov8",
+ "text": "Indian Oil Corporation Limited DATA PRIVACY POLICY 1. INTRODUCTION Indian Oil Corporation Limited is a company incorporated under the laws of India, having its registered office at IndianOil Bhavan, G -9, Ali Yavar Jung Marg, Bandra [East], Mumbai – 400051, India [Hereinafter referred to as “We” or “Us” or “Company” or “ IOCL ”]. In accordance with all applicable laws, IOCL has created this Privacy Policy [Hereinafter referred to as “Privacy Policy” or “Policy” or “Privacy Statement” ] in order to demonstrate IOCL’s privacy commitment to any individual whose data IOCL collect s, stor es or process es for providing or offering its services and products. 2. DEFINITIONS Agent : Any individual or entity which has a contractual relationship with IOCL, where IOCL is the principal and the other individual or entity is the agent, shall hereinafter be referred to as an \"Agent\" . For instance, IOCL’s distributors, dealers, CFA, contractors, etc. shall be considered Agents. Data Subject: All individuals whose personal information is either collected, received, processed, stored, dealt or handled by IOCL shall hereinafter be referred to as “Data Subject”. Information: Personal Information of a Data Subject collected by IOCL under this Policy shall hereinafter be referred to as “Information”. Such Information includes, interalia, Sensitive Personal Data or Information as defined under the Indian Information Technology Act, 2000 and the Aadhaar number and/or the biometric information associated with an Aadhaar number . Third -Party: Any individual or entity over which IOCL does not have any control or ownership, and which operates independently on its"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_256_ov8",
+ "text": "or ownership, and which operates independently on its own is hereinafter referred to as a \"Third Party\". 3. GOVERNING LAW IOCL is an organisation based and existing in India and is thus bound by the laws of the Republic of India. This Privacy Policy has been prepared in accordance with applicable Indian laws, including the Indian Information Technology Act, 2000 and the Aadhaar [Targeted Delivery of Financial and other Subsidies, Benefits and Services ] Act, 2016 . 4. APPLICABILITY This Policy appli es to all individuals whose I nformation is either collected, received, processed, stored, dealt or handled by IOCL . Indian Oil Corporation Limited 5. OBJECTIVE This Privacy Policy is intended to inform the Data Subject on how IOCL collects, processes, stores , and use s personal information that a Data Subject provides to IOCL either directly or indirectly . This Privacy Policy also covers IOCL’s treatment of any personal information that Third Parties share with IOCL . 6. HOW IOCL COLLECT S DATA SUBJECT ’S INFORMATION IOCL collect s Information about Data Subject through the following means: (a) whenever a Data Subject shows an interest or elects to use IOCL’s services or products, including information about IOCL schemes, irrespective of whether such services /products are prov ided directly by IOCL or by its Agents on IOCL’s behalf ; (b) through IOCL’s network of Agents and a Third Party which collects such Information and transfers it to IOCL for a business requirement ; (c) when Data Subject downloads IOCL’s mobile applications or visits any of"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_256_ov8",
+ "text": "downloads IOCL’s mobile applications or visits any of the websites owned by IOCL and/or creates an account on the mobile applications or the website s. (d) when Data Subject, which also includes employees of IOCL, directly elects to share their Information with IOCL. 7. WHY IOCL COLLECT S DATA SUBJECT ’S INFORMATION [PURPOSE] IOCL uses the Information to conduct its business and to provide Data Subject with the best possible services /products. IOCL will only use the Information based on this Privacy Policy, its understanding with the Data Subject , or as required by law. IOCL will collect adequate, relevant and necessary Information and will process such Information fairly and lawfully for the purpose it is collected . Most comm only, IOCL will use the Information in the following circumstances: (a) Where IOCL need s to perform the obligations it has promised the Data Subject , such as to provide a service or product to the Data Subject and to enable the Data Subject’s use of IOCL ’s products/ services , including but not limited to deal ing with enquiries and complaints made by or about the Data Subject relating to services/products provided by IOCL and to improve and customise IOCL’s services/products in accordance with the Data Subject’s preferences ; (b) Where IOCL need s to comply with a legal , accounting, business or reporting obligation , including compliance with requests from the Government of India or any Governmental Agency ; (c) To send marketing as well as non-marketing commercial communications to the Data Subject ;"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_256_ov8",
+ "text": "non-marketing commercial communications to the Data Subject ; (d) To send the Data Subject notifications that the Data Subject has specifically requested for as well as to send statements, invoices and payment reminders to the Data Subject , and to collect payments from the Data Subject ; (e) To provide Third Parties with statistical information about its customers but those Third Parties will not be able to identify any individu al from that information; (f) To keep IOCL’s website, mobile application s and other systems secure and to prevent fraud; Indian Oil Corporation Limited (g) To promote the mission and objectives of Skill Development in India and/or to provide and disseminate information about relevant programm es under the Skill Development Mission. (h) To manage the employment of the data subject with IOCL. IOCL collects and processes the Information only when it is essential to offer its services/products to the Data Subject. By providing his or her Information , the Data Subject agrees that IOCL may collect, use and share this Information with Third Parties for the purpose s mentioned above from 7[a] to 7[h]. 8. FAILURE TO PROVIDE INFORMATION IOCL may not be able to perform the obligations it has promised the Data Subject , or IOCL may be prevented from complying with its legal , accounting, business or reporting obligation s if the Data Subject fails to provide certain Information when requested by IOCL . IOCL shall not be held liable in any manner whatsoever if IOCL is unable to perform its services or if"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_256_ov8",
+ "text": "is unable to perform its services or if there is a deficiency in IOCL’s services to the Data Subject due to Data Subject’s failure to provide such Information. IOCL and/or its Agents, employees, directors, associates, etc. shall be indemnified by the Data Subject and held harmless from any complaints, legal proceedings or claims filed or initiated by the Data Subject or any Third Party against IOCL in this regard. 9. CHANGE OF PURPOSE IOCL will only use Data Subject ’s Information for the purposes for which IOCL collected it, unless IOCL reasonably consider s that it need s to use it for another reason and that reason is compatible with the original purpose. 10. CONSENT Data Subject agrees that IOCL does not need any additional or further consent from him/her to use the Data Subject ’s Information in accordance with this Policy to carry out IOCL’s legal obligations or exercise specific rights. 11. INFORMATION SHARING AND DISCLOSURE IOCL may disclose the Information to any of its Agents or Third Parties insofar as reasonably necessary for the purposes set out in this Policy and for the purpose of providing services /products to the Data Subject . Such Agents and Third Parties are expected to provide a similar level of protection to the Information as is adhered to by IOCL . In addition to this, IOCL may disclose the Information where it is required to do so by law or to Governmental Agencies. Indian Oil Corporation Limited 12. TRANSFER OF INFORMATION OUTSIDE INDIA Unless stated otherwise, IOCL store"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_256_ov8",
+ "text": "INFORMATION OUTSIDE INDIA Unless stated otherwise, IOCL store s and process es the Information in India. There may, however, be occasions when IOCL need s to transfer the Information outside India for its business requirements. In such instances, IOCL will exercise the same level of care in handling the Information as it does in India. 13. DATA SECURITY The Information is processed by IOCL in strict accordance with the Indian Information Technology Act, 2000, and the rules notified thereunder. IOCL implement s and maintain ‘Reasonable Security Practices and Procedures’ as stated in the Indian Information Technology Act, 2000 and the Informat ion Technology [Reasonable Security Practices and Procedures and Sensitive Personal Data or Information] Rules, 2011, while processing, collecting, storing or handling any Information. 14. DATA RETENTION IOCL will only retain the Information for as lon g as necessary to fulfil the purposes IOCL collected it for, including for the purposes of satisfying any legal, business, accounting, or reporting requirements. In some circumstances, IOCL may anonymise the Information so that it can no longer be associated with the Data Subject , in which case IOCL may use such information without a further reference to Data Subject . 15. WHO HANDLES AND RETAINS DATA SUBJECT ’S INFORMATION Details about the primary entity which handles and retains the Information is provided below: Indian Oil Corporation Limited having its registered office at: IndianOil Bhavan G-9, Ali Yavar Jung Marg Bandra [East] Mumbai – 400051 India 16. REVIEW OF INFORMATION Data Subject can contact IOCL, through the Grievance Officer whose"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_256_ov8",
+ "text": "can contact IOCL, through the Grievance Officer whose details are provided at the end of the Policy, requesting access to Data Subject ’s Information for reviewing or requesting amendment to certain information that Data Subject considers to be incorrect or wrong. IOCL shall process such requests from Data Subject in accordance with applicable law. IOCL shall not be responsible for the authenticity of the Information provided by the Data Subject to IOCL or its Agents. Indian Oil Corporation Limited 17. WITHDRAWAL OF CONSENT Data Subject may at any time revoke or withdraw Data Subject’s consent to provide Information to IOCL by contacting the Grievance Officer whose details are provided at the end of the Policy. However, such action may render it difficult for IOCL to offer some of its services /products to the Data Subject any further. IOCL shall not be held liable in any manner whatsoever if IOCL is unable to perform its services or if there is a deficiency in its services to Data Subject due to Data Subject’s withdrawal of consent. IOCL and/or its Agents, employees, directors, associates , etc. shall be indemnified by the Data Subject and held harmless from any complaints, legal proceedings or claims filed or initiated by the Data Subject or any Third Party against IOCL in this regard. 18. CHANGES TO THIS PRIVACY POLICY The Policy is subject to modification s from time to time. If IOCL decide s to change this Policy, IOCL shall publish the modified Policy on its website. 19. GRIEVANCE OFFICER In accordance with"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_256_ov8",
+ "text": "its website. 19. GRIEVANCE OFFICER In accordance with the Indian Information Technology Act 2000 and the rules notified thereund er, the contact details of the Grievance Officer are provided below: Sh. Abhinav Bhatt , Corporate Business Technology Centre, Indian Oil Institute of Petroleum Management Campus, Plot No. 83, Institutional Area, Sector 18, Gurugram, Haryana – 122001 Email: data -grievance@indianoil.in Phone : 0124 -2861509"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_256_ov8",
+ "text": "Privacy Policy This document is the sole property of HDFC Capital Advisors Limited and is to be used strictly for Internal Consumption only. HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 2 of 4 Privacy Policy 1. Objective The purpose of this Privacy P olicy (“Policy ”) is to maintain the privacy of and protect the personal information of employees, contractors, outsourced workforce, vendors, interns, associates, customers , Corporate Social Responsibility (CSR) partners and business partners of HDFC Capital Advisors Limited (“ Company ”) and ensure compliance with the Information Technology Act, 2000 (“ Act”) and the Information Technology (Reasonable security practices and procedures and sensitive personal data or information) Rules, 2011 (“ Rules ”). This Policy must be read in conjunction with the Act and the Rules, as may be amended from time to time. 2. Applicability This Policy is applicable to the Company and the Third Party (“as defined in Section 3 of the Policy”) who may receive , collect, possess, stores, deals or handle Personal information (PI)/ Sensitive personal data or information (SPDI), on behalf of the Company . Any such Third Party is expected to have read, understood and comply with this Policy. The Company will use its best endeavors to ensure that such Third Party have read and understood the terms of this Policy and preferably having entered into a confidentiality agreement. 3. Key Definitions (a) “Data subject ” is one who is the subject of personal and sensitive personal data . It may include, but is"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_256_ov8",
+ "text": "personal data . It may include, but is not limited to, the employees, contractors, outsourced workforce, vendors, interns, associates, customers, Corporate Social Responsibility (CSR) partners and business partners of the Company. (b) \"Personal information (PI) \" means any information that relates to a natural person, which, either directly or indirectly, in combination with other information available or likely to be available with a body corporate, is capable of identifying such person . (c) “Sensitive personal data or information (SPDI) ” of a person means such personal information which consists of information relating to. i. password . ii. financial information such as Bank account or credit card or debit card or other payment instrument details . iii. physical, physiological , and mental health condition . iv. sexual orientation . v. medical records and history . vi. Biometric information . vii. any detail relating to the above clauses as provided to body corporate for providing service; and viii. any of the information received under above clauses by body corporate for processing, stored or processed under lawful contract or otherwise: HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 3 of 4 provided that, any information that is freely available or accessible in public domain or furnished under the Right to Information Act, 2005 or any other law for the time being in force shall not be regarded as sensitive personal data or information for th e purposes of these rules. (d) “Third Party ” means all external parties such as contractors, outsourced workforce, interns, summer"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_256_ov8",
+ "text": "parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy describes generally acceptable privacy principles for the protection and appropriate use of personal information and SPDI at the Company . 4.1. Consent The Company shall obtain consent from the Data subject before collecting, receiving, possessing, storing, dealing or handling personal information or SPDI of the provider of such information. No PI/SPDI shall be used by the Company without the consent of the provider of the information . The consent shall be obtained (in writing or electronically) from the Data subjects before or at the time of collecting PI or SPDI . The Data subject shall be provided with a choice to opt out and withdraw any consent previously given by way of written communication to the Company . 4.2. Collection of Personal Information a) The Company shall not collect PI or Sensitive personal data or information (SPDI) unless : (i) the information is collected for a lawful purpose connected with a function or activity of the Company or any person on its behalf; and ( ii) the collection of the PI / SPDI is considered necessary for that purpose . b) While collecting PI/ SPDI directly from the person concerned, the Company or any person on its behalf s hall take such steps as are, in the circumstances, reasonable to ensure that the person concerned is having the knowledge of : (i) the fact that the"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_256_ov8",
+ "text": "knowledge of : (i) the fact that the information is being collected; ( ii) the purpose for which the information is being collected; ( iii) the intended recipients of the information; ( iv) the name and address of the agency that is collecting the information; and (v) the agency that will retain the information. c) The Company or any person on its behalf holding PI/ SPDI shall not retain that information for longer than is required for the purposes for which the information may lawfully be used or is otherwise required under any other law for the time being in force. d) The PI/SPDI collected shall be used for the purpose for which it has been collected. e) The Company shall address any discrepancies and grievances of the provider of the PI/ SPDI in a time bound manner. For this purpose, the Company shall designate a Grievance Officer and publish his name and contact details on its website . The Grievance Officer shall use best endeavors to redress the grievances o f the provider of information expeditiously within one month from the date of receipt of grievance . 4.3. Disclosure of Information a) Disclosure of PI/ SPDI by the Company to any Third Party shall require prior permission from the provider of such information, who has provided such information under lawful HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 4 of 4 contract or otherwise, unless such disclosure has been agreed to in the contract between the Company and the provider of"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_256_ov8",
+ "text": "contract between the Company and the provider of information, or where the disclosure is necessary for compliance of a legal /regulatory obligation ; Provided that the information shall be shared by the Company , without obtaining prior consent from the provider of information, with Government agencies mandated under the law to obtain information including sensitive personal data or information for the purpose of verification of identity, or for prevention, detection, investigation including cyber inciden ts, prosecution, and punishment of offences. The Company will use best endeavors to ensure that t he Government agency send s a request in writing to the Company possessing the sensitive personal data or information stating clearly the purpose of seeking such information and stating that the information so obtained shall not be published or shared with any other person. b) The Company shall disclose any PI/ SPDI to any Third Party by an order under the law for the time being in force. c) The Company or any person on its behalf shall not publish the PI/ SPDI . d) The Company shall use its best endeavors (including by way of execution of appropriate non-disclosure agreements) to ensure that t he Third Party receiving the PI/ SPDI from the Company or any person on its behalf shall not disclose it further . 4.4. Reasonable Security Practices and Procedures The Company endeavors to have in place reasonable security practices and procedures in place to protect the PI/SPDI of the provider of information."
+ }
+]
\ No newline at end of file
diff --git a/out/chunks_recursive_512_ov16.json b/out/chunks_recursive_512_ov16.json
new file mode 100644
index 0000000..6e090da
--- /dev/null
+++ b/out/chunks_recursive_512_ov16.json
@@ -0,0 +1,42 @@
+[
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_512_ov16",
+ "text": "Indian Oil Corporation Limited \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \nDATA PRIVACY POLICY"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_512_ov16",
+ "text": "Indian Oil Corporation Limited DATA PRIVACY POLICY 1. INTRODUCTION Indian Oil Corporation Limited is a company incorporated under the laws of India, having its registered office at IndianOil Bhavan, G -9, Ali Yavar Jung Marg, Bandra [East], Mumbai – 400051, India [Hereinafter referred to as “We” or “Us” or “Company” or “ IOCL ”]. In accordance with all applicable laws, IOCL has created this Privacy Policy [Hereinafter referred to as “Privacy Policy” or “Policy” or “Privacy Statement” ] in order to demonstrate IOCL’s privacy commitment to any individual whose data IOCL collect s, stor es or process es for providing or offering its services and products. 2. DEFINITIONS Agent : Any individual or entity which has a contractual relationship with IOCL, where IOCL is the principal and the other individual or entity is the agent, shall hereinafter be referred to as an \"Agent\" . For instance, IOCL’s distributors, dealers, CFA, contractors, etc. shall be considered Agents. Data Subject: All individuals whose personal information is either collected, received, processed, stored, dealt or handled by IOCL shall hereinafter be referred to as “Data Subject”. Information: Personal Information of a Data Subject collected by IOCL under this Policy shall hereinafter be referred to as “Information”. Such Information includes, interalia, Sensitive Personal Data or Information as defined under the Indian Information Technology Act, 2000 and the Aadhaar number and/or the biometric information associated with an Aadhaar number . Third -Party: Any individual or entity over which IOCL does not have any control or ownership, and which operates independently on its own is hereinafter referred to as a \"Third Party\". 3. GOVERNING LAW IOCL is an organisation based and existing in India and is thus bound by the laws of the Republic of India. This Privacy Policy has been prepared in accordance with applicable Indian laws, including the Indian Information Technology Act, 2000 and the Aadhaar [Targeted Delivery of Financial and other Subsidies, Benefits and Services ] Act, 2016 . 4. APPLICABILITY This Policy appli es to all individuals whose I nformation is either collected, received, processed, stored, dealt or handled by IOCL . Indian Oil Corporation Limited 5. OBJECTIVE This Privacy Policy is intended to inform the Data Subject on how IOCL collects, processes, stores , and use s personal information that a Data Subject provides to IOCL either directly or indirectly . This Privacy Policy also covers IOCL’s treatment of any personal information that Third Parties share with IOCL . 6. HOW IOCL COLLECT S DATA SUBJECT ’S INFORMATION IOCL collect s Information about Data Subject through the following means: (a) whenever a Data Subject shows an interest or elects to use IOCL’s services or products, including information about IOCL schemes, irrespective of whether such services /products are prov ided directly by IOCL or by its Agents on IOCL’s behalf ; (b) through IOCL’s network of Agents and a Third Party which collects such Information and transfers it to IOCL for a business requirement ; (c) when Data Subject downloads IOCL’s mobile applications or visits any of the websites owned by IOCL and/or creates an"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_512_ov16",
+ "text": "downloads IOCL’s mobile applications or visits any of the websites owned by IOCL and/or creates an account on the mobile applications or the website s. (d) when Data Subject, which also includes employees of IOCL, directly elects to share their Information with IOCL. 7. WHY IOCL COLLECT S DATA SUBJECT ’S INFORMATION [PURPOSE] IOCL uses the Information to conduct its business and to provide Data Subject with the best possible services /products. IOCL will only use the Information based on this Privacy Policy, its understanding with the Data Subject , or as required by law. IOCL will collect adequate, relevant and necessary Information and will process such Information fairly and lawfully for the purpose it is collected . Most comm only, IOCL will use the Information in the following circumstances: (a) Where IOCL need s to perform the obligations it has promised the Data Subject , such as to provide a service or product to the Data Subject and to enable the Data Subject’s use of IOCL ’s products/ services , including but not limited to deal ing with enquiries and complaints made by or about the Data Subject relating to services/products provided by IOCL and to improve and customise IOCL’s services/products in accordance with the Data Subject’s preferences ; (b) Where IOCL need s to comply with a legal , accounting, business or reporting obligation , including compliance with requests from the Government of India or any Governmental Agency ; (c) To send marketing as well as non-marketing commercial communications to the Data Subject ; (d) To send the Data Subject notifications that the Data Subject has specifically requested for as well as to send statements, invoices and payment reminders to the Data Subject , and to collect payments from the Data Subject ; (e) To provide Third Parties with statistical information about its customers but those Third Parties will not be able to identify any individu al from that information; (f) To keep IOCL’s website, mobile application s and other systems secure and to prevent fraud; Indian Oil Corporation Limited (g) To promote the mission and objectives of Skill Development in India and/or to provide and disseminate information about relevant programm es under the Skill Development Mission. (h) To manage the employment of the data subject with IOCL. IOCL collects and processes the Information only when it is essential to offer its services/products to the Data Subject. By providing his or her Information , the Data Subject agrees that IOCL may collect, use and share this Information with Third Parties for the purpose s mentioned above from 7[a] to 7[h]. 8. FAILURE TO PROVIDE INFORMATION IOCL may not be able to perform the obligations it has promised the Data Subject , or IOCL may be prevented from complying with its legal , accounting, business or reporting obligation s if the Data Subject fails to provide certain Information when requested by IOCL . IOCL shall not be held liable in any manner whatsoever if IOCL is unable to perform its services or if there is a deficiency in IOCL’s services to"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_512_ov16",
+ "text": "is unable to perform its services or if there is a deficiency in IOCL’s services to the Data Subject due to Data Subject’s failure to provide such Information. IOCL and/or its Agents, employees, directors, associates, etc. shall be indemnified by the Data Subject and held harmless from any complaints, legal proceedings or claims filed or initiated by the Data Subject or any Third Party against IOCL in this regard. 9. CHANGE OF PURPOSE IOCL will only use Data Subject ’s Information for the purposes for which IOCL collected it, unless IOCL reasonably consider s that it need s to use it for another reason and that reason is compatible with the original purpose. 10. CONSENT Data Subject agrees that IOCL does not need any additional or further consent from him/her to use the Data Subject ’s Information in accordance with this Policy to carry out IOCL’s legal obligations or exercise specific rights. 11. INFORMATION SHARING AND DISCLOSURE IOCL may disclose the Information to any of its Agents or Third Parties insofar as reasonably necessary for the purposes set out in this Policy and for the purpose of providing services /products to the Data Subject . Such Agents and Third Parties are expected to provide a similar level of protection to the Information as is adhered to by IOCL . In addition to this, IOCL may disclose the Information where it is required to do so by law or to Governmental Agencies. Indian Oil Corporation Limited 12. TRANSFER OF INFORMATION OUTSIDE INDIA Unless stated otherwise, IOCL store s and process es the Information in India. There may, however, be occasions when IOCL need s to transfer the Information outside India for its business requirements. In such instances, IOCL will exercise the same level of care in handling the Information as it does in India. 13. DATA SECURITY The Information is processed by IOCL in strict accordance with the Indian Information Technology Act, 2000, and the rules notified thereunder. IOCL implement s and maintain ‘Reasonable Security Practices and Procedures’ as stated in the Indian Information Technology Act, 2000 and the Informat ion Technology [Reasonable Security Practices and Procedures and Sensitive Personal Data or Information] Rules, 2011, while processing, collecting, storing or handling any Information. 14. DATA RETENTION IOCL will only retain the Information for as lon g as necessary to fulfil the purposes IOCL collected it for, including for the purposes of satisfying any legal, business, accounting, or reporting requirements. In some circumstances, IOCL may anonymise the Information so that it can no longer be associated with the Data Subject , in which case IOCL may use such information without a further reference to Data Subject . 15. WHO HANDLES AND RETAINS DATA SUBJECT ’S INFORMATION Details about the primary entity which handles and retains the Information is provided below: Indian Oil Corporation Limited having its registered office at: IndianOil Bhavan G-9, Ali Yavar Jung Marg Bandra [East] Mumbai – 400051 India 16. REVIEW OF INFORMATION Data Subject can contact IOCL, through the Grievance Officer whose details are provided at the end of the"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_512_ov16",
+ "text": "can contact IOCL, through the Grievance Officer whose details are provided at the end of the Policy, requesting access to Data Subject ’s Information for reviewing or requesting amendment to certain information that Data Subject considers to be incorrect or wrong. IOCL shall process such requests from Data Subject in accordance with applicable law. IOCL shall not be responsible for the authenticity of the Information provided by the Data Subject to IOCL or its Agents. Indian Oil Corporation Limited 17. WITHDRAWAL OF CONSENT Data Subject may at any time revoke or withdraw Data Subject’s consent to provide Information to IOCL by contacting the Grievance Officer whose details are provided at the end of the Policy. However, such action may render it difficult for IOCL to offer some of its services /products to the Data Subject any further. IOCL shall not be held liable in any manner whatsoever if IOCL is unable to perform its services or if there is a deficiency in its services to Data Subject due to Data Subject’s withdrawal of consent. IOCL and/or its Agents, employees, directors, associates , etc. shall be indemnified by the Data Subject and held harmless from any complaints, legal proceedings or claims filed or initiated by the Data Subject or any Third Party against IOCL in this regard. 18. CHANGES TO THIS PRIVACY POLICY The Policy is subject to modification s from time to time. If IOCL decide s to change this Policy, IOCL shall publish the modified Policy on its website. 19. GRIEVANCE OFFICER In accordance with the Indian Information Technology Act 2000 and the rules notified thereund er, the contact details of the Grievance Officer are provided below: Sh. Abhinav Bhatt , Corporate Business Technology Centre, Indian Oil Institute of Petroleum Management Campus, Plot No. 83, Institutional Area, Sector 18, Gurugram, Haryana – 122001 Email: data -grievance@indianoil.in Phone : 0124 -2861509"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_512_ov16",
+ "text": "Privacy Policy This document is the sole property of HDFC Capital Advisors Limited and is to be used strictly for Internal Consumption only. HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 2 of 4 Privacy Policy 1. Objective The purpose of this Privacy P olicy (“Policy ”) is to maintain the privacy of and protect the personal information of employees, contractors, outsourced workforce, vendors, interns, associates, customers , Corporate Social Responsibility (CSR) partners and business partners of HDFC Capital Advisors Limited (“ Company ”) and ensure compliance with the Information Technology Act, 2000 (“ Act”) and the Information Technology (Reasonable security practices and procedures and sensitive personal data or information) Rules, 2011 (“ Rules ”). This Policy must be read in conjunction with the Act and the Rules, as may be amended from time to time. 2. Applicability This Policy is applicable to the Company and the Third Party (“as defined in Section 3 of the Policy”) who may receive , collect, possess, stores, deals or handle Personal information (PI)/ Sensitive personal data or information (SPDI), on behalf of the Company . Any such Third Party is expected to have read, understood and comply with this Policy. The Company will use its best endeavors to ensure that such Third Party have read and understood the terms of this Policy and preferably having entered into a confidentiality agreement. 3. Key Definitions (a) “Data subject ” is one who is the subject of personal and sensitive personal data . It may include, but is not limited to, the employees, contractors, outsourced workforce, vendors, interns, associates, customers, Corporate Social Responsibility (CSR) partners and business partners of the Company. (b) \"Personal information (PI) \" means any information that relates to a natural person, which, either directly or indirectly, in combination with other information available or likely to be available with a body corporate, is capable of identifying such person . (c) “Sensitive personal data or information (SPDI) ” of a person means such personal information which consists of information relating to. i. password . ii. financial information such as Bank account or credit card or debit card or other payment instrument details . iii. physical, physiological , and mental health condition . iv. sexual orientation . v. medical records and history . vi. Biometric information . vii. any detail relating to the above clauses as provided to body corporate for providing service; and viii. any of the information received under above clauses by body corporate for processing, stored or processed under lawful contract or otherwise: HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 3 of 4 provided that, any information that is freely available or accessible in public domain or furnished under the Right to Information Act, 2005 or any other law for the time being in force shall not be regarded as sensitive personal data or information for th e purposes of these rules. (d) “Third Party ” means all external parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_512_ov16",
+ "text": "parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy describes generally acceptable privacy principles for the protection and appropriate use of personal information and SPDI at the Company . 4.1. Consent The Company shall obtain consent from the Data subject before collecting, receiving, possessing, storing, dealing or handling personal information or SPDI of the provider of such information. No PI/SPDI shall be used by the Company without the consent of the provider of the information . The consent shall be obtained (in writing or electronically) from the Data subjects before or at the time of collecting PI or SPDI . The Data subject shall be provided with a choice to opt out and withdraw any consent previously given by way of written communication to the Company . 4.2. Collection of Personal Information a) The Company shall not collect PI or Sensitive personal data or information (SPDI) unless : (i) the information is collected for a lawful purpose connected with a function or activity of the Company or any person on its behalf; and ( ii) the collection of the PI / SPDI is considered necessary for that purpose . b) While collecting PI/ SPDI directly from the person concerned, the Company or any person on its behalf s hall take such steps as are, in the circumstances, reasonable to ensure that the person concerned is having the knowledge of : (i) the fact that the information is being collected; ( ii) the purpose for which the information is being collected; ( iii) the intended recipients of the information; ( iv) the name and address of the agency that is collecting the information; and (v) the agency that will retain the information. c) The Company or any person on its behalf holding PI/ SPDI shall not retain that information for longer than is required for the purposes for which the information may lawfully be used or is otherwise required under any other law for the time being in force. d) The PI/SPDI collected shall be used for the purpose for which it has been collected. e) The Company shall address any discrepancies and grievances of the provider of the PI/ SPDI in a time bound manner. For this purpose, the Company shall designate a Grievance Officer and publish his name and contact details on its website . The Grievance Officer shall use best endeavors to redress the grievances o f the provider of information expeditiously within one month from the date of receipt of grievance . 4.3. Disclosure of Information a) Disclosure of PI/ SPDI by the Company to any Third Party shall require prior permission from the provider of such information, who has provided such information under lawful HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 4 of 4 contract or otherwise, unless such disclosure has been agreed to in the contract between the Company and the provider of information, or where the disclosure is necessary for"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_512_ov16",
+ "text": "contract between the Company and the provider of information, or where the disclosure is necessary for compliance of a legal /regulatory obligation ; Provided that the information shall be shared by the Company , without obtaining prior consent from the provider of information, with Government agencies mandated under the law to obtain information including sensitive personal data or information for the purpose of verification of identity, or for prevention, detection, investigation including cyber inciden ts, prosecution, and punishment of offences. The Company will use best endeavors to ensure that t he Government agency send s a request in writing to the Company possessing the sensitive personal data or information stating clearly the purpose of seeking such information and stating that the information so obtained shall not be published or shared with any other person. b) The Company shall disclose any PI/ SPDI to any Third Party by an order under the law for the time being in force. c) The Company or any person on its behalf shall not publish the PI/ SPDI . d) The Company shall use its best endeavors (including by way of execution of appropriate non-disclosure agreements) to ensure that t he Third Party receiving the PI/ SPDI from the Company or any person on its behalf shall not disclose it further . 4.4. Reasonable Security Practices and Procedures The Company endeavors to have in place reasonable security practices and procedures in place to protect the PI/SPDI of the provider of information."
+ }
+]
\ No newline at end of file
diff --git a/out/chunks_recursive_512_ov8.json b/out/chunks_recursive_512_ov8.json
new file mode 100644
index 0000000..bc443dc
--- /dev/null
+++ b/out/chunks_recursive_512_ov8.json
@@ -0,0 +1,42 @@
+[
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_512_ov8",
+ "text": "Indian Oil Corporation Limited \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \nDATA PRIVACY POLICY"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_512_ov8",
+ "text": "Indian Oil Corporation Limited DATA PRIVACY POLICY 1. INTRODUCTION Indian Oil Corporation Limited is a company incorporated under the laws of India, having its registered office at IndianOil Bhavan, G -9, Ali Yavar Jung Marg, Bandra [East], Mumbai – 400051, India [Hereinafter referred to as “We” or “Us” or “Company” or “ IOCL ”]. In accordance with all applicable laws, IOCL has created this Privacy Policy [Hereinafter referred to as “Privacy Policy” or “Policy” or “Privacy Statement” ] in order to demonstrate IOCL’s privacy commitment to any individual whose data IOCL collect s, stor es or process es for providing or offering its services and products. 2. DEFINITIONS Agent : Any individual or entity which has a contractual relationship with IOCL, where IOCL is the principal and the other individual or entity is the agent, shall hereinafter be referred to as an \"Agent\" . For instance, IOCL’s distributors, dealers, CFA, contractors, etc. shall be considered Agents. Data Subject: All individuals whose personal information is either collected, received, processed, stored, dealt or handled by IOCL shall hereinafter be referred to as “Data Subject”. Information: Personal Information of a Data Subject collected by IOCL under this Policy shall hereinafter be referred to as “Information”. Such Information includes, interalia, Sensitive Personal Data or Information as defined under the Indian Information Technology Act, 2000 and the Aadhaar number and/or the biometric information associated with an Aadhaar number . Third -Party: Any individual or entity over which IOCL does not have any control or ownership, and which operates independently on its own is hereinafter referred to as a \"Third Party\". 3. GOVERNING LAW IOCL is an organisation based and existing in India and is thus bound by the laws of the Republic of India. This Privacy Policy has been prepared in accordance with applicable Indian laws, including the Indian Information Technology Act, 2000 and the Aadhaar [Targeted Delivery of Financial and other Subsidies, Benefits and Services ] Act, 2016 . 4. APPLICABILITY This Policy appli es to all individuals whose I nformation is either collected, received, processed, stored, dealt or handled by IOCL . Indian Oil Corporation Limited 5. OBJECTIVE This Privacy Policy is intended to inform the Data Subject on how IOCL collects, processes, stores , and use s personal information that a Data Subject provides to IOCL either directly or indirectly . This Privacy Policy also covers IOCL’s treatment of any personal information that Third Parties share with IOCL . 6. HOW IOCL COLLECT S DATA SUBJECT ’S INFORMATION IOCL collect s Information about Data Subject through the following means: (a) whenever a Data Subject shows an interest or elects to use IOCL’s services or products, including information about IOCL schemes, irrespective of whether such services /products are prov ided directly by IOCL or by its Agents on IOCL’s behalf ; (b) through IOCL’s network of Agents and a Third Party which collects such Information and transfers it to IOCL for a business requirement ; (c) when Data Subject downloads IOCL’s mobile applications or visits any of the websites owned by IOCL and/or creates an"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_512_ov8",
+ "text": "the websites owned by IOCL and/or creates an account on the mobile applications or the website s. (d) when Data Subject, which also includes employees of IOCL, directly elects to share their Information with IOCL. 7. WHY IOCL COLLECT S DATA SUBJECT ’S INFORMATION [PURPOSE] IOCL uses the Information to conduct its business and to provide Data Subject with the best possible services /products. IOCL will only use the Information based on this Privacy Policy, its understanding with the Data Subject , or as required by law. IOCL will collect adequate, relevant and necessary Information and will process such Information fairly and lawfully for the purpose it is collected . Most comm only, IOCL will use the Information in the following circumstances: (a) Where IOCL need s to perform the obligations it has promised the Data Subject , such as to provide a service or product to the Data Subject and to enable the Data Subject’s use of IOCL ’s products/ services , including but not limited to deal ing with enquiries and complaints made by or about the Data Subject relating to services/products provided by IOCL and to improve and customise IOCL’s services/products in accordance with the Data Subject’s preferences ; (b) Where IOCL need s to comply with a legal , accounting, business or reporting obligation , including compliance with requests from the Government of India or any Governmental Agency ; (c) To send marketing as well as non-marketing commercial communications to the Data Subject ; (d) To send the Data Subject notifications that the Data Subject has specifically requested for as well as to send statements, invoices and payment reminders to the Data Subject , and to collect payments from the Data Subject ; (e) To provide Third Parties with statistical information about its customers but those Third Parties will not be able to identify any individu al from that information; (f) To keep IOCL’s website, mobile application s and other systems secure and to prevent fraud; Indian Oil Corporation Limited (g) To promote the mission and objectives of Skill Development in India and/or to provide and disseminate information about relevant programm es under the Skill Development Mission. (h) To manage the employment of the data subject with IOCL. IOCL collects and processes the Information only when it is essential to offer its services/products to the Data Subject. By providing his or her Information , the Data Subject agrees that IOCL may collect, use and share this Information with Third Parties for the purpose s mentioned above from 7[a] to 7[h]. 8. FAILURE TO PROVIDE INFORMATION IOCL may not be able to perform the obligations it has promised the Data Subject , or IOCL may be prevented from complying with its legal , accounting, business or reporting obligation s if the Data Subject fails to provide certain Information when requested by IOCL . IOCL shall not be held liable in any manner whatsoever if IOCL is unable to perform its services or if there is a deficiency in IOCL’s services to the Data Subject due to Data Subject’s failure"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_512_ov8",
+ "text": "the Data Subject due to Data Subject’s failure to provide such Information. IOCL and/or its Agents, employees, directors, associates, etc. shall be indemnified by the Data Subject and held harmless from any complaints, legal proceedings or claims filed or initiated by the Data Subject or any Third Party against IOCL in this regard. 9. CHANGE OF PURPOSE IOCL will only use Data Subject ’s Information for the purposes for which IOCL collected it, unless IOCL reasonably consider s that it need s to use it for another reason and that reason is compatible with the original purpose. 10. CONSENT Data Subject agrees that IOCL does not need any additional or further consent from him/her to use the Data Subject ’s Information in accordance with this Policy to carry out IOCL’s legal obligations or exercise specific rights. 11. INFORMATION SHARING AND DISCLOSURE IOCL may disclose the Information to any of its Agents or Third Parties insofar as reasonably necessary for the purposes set out in this Policy and for the purpose of providing services /products to the Data Subject . Such Agents and Third Parties are expected to provide a similar level of protection to the Information as is adhered to by IOCL . In addition to this, IOCL may disclose the Information where it is required to do so by law or to Governmental Agencies. Indian Oil Corporation Limited 12. TRANSFER OF INFORMATION OUTSIDE INDIA Unless stated otherwise, IOCL store s and process es the Information in India. There may, however, be occasions when IOCL need s to transfer the Information outside India for its business requirements. In such instances, IOCL will exercise the same level of care in handling the Information as it does in India. 13. DATA SECURITY The Information is processed by IOCL in strict accordance with the Indian Information Technology Act, 2000, and the rules notified thereunder. IOCL implement s and maintain ‘Reasonable Security Practices and Procedures’ as stated in the Indian Information Technology Act, 2000 and the Informat ion Technology [Reasonable Security Practices and Procedures and Sensitive Personal Data or Information] Rules, 2011, while processing, collecting, storing or handling any Information. 14. DATA RETENTION IOCL will only retain the Information for as lon g as necessary to fulfil the purposes IOCL collected it for, including for the purposes of satisfying any legal, business, accounting, or reporting requirements. In some circumstances, IOCL may anonymise the Information so that it can no longer be associated with the Data Subject , in which case IOCL may use such information without a further reference to Data Subject . 15. WHO HANDLES AND RETAINS DATA SUBJECT ’S INFORMATION Details about the primary entity which handles and retains the Information is provided below: Indian Oil Corporation Limited having its registered office at: IndianOil Bhavan G-9, Ali Yavar Jung Marg Bandra [East] Mumbai – 400051 India 16. REVIEW OF INFORMATION Data Subject can contact IOCL, through the Grievance Officer whose details are provided at the end of the Policy, requesting access to Data Subject ’s Information for reviewing or requesting amendment to certain information"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "recursive_512_ov8",
+ "text": "for reviewing or requesting amendment to certain information that Data Subject considers to be incorrect or wrong. IOCL shall process such requests from Data Subject in accordance with applicable law. IOCL shall not be responsible for the authenticity of the Information provided by the Data Subject to IOCL or its Agents. Indian Oil Corporation Limited 17. WITHDRAWAL OF CONSENT Data Subject may at any time revoke or withdraw Data Subject’s consent to provide Information to IOCL by contacting the Grievance Officer whose details are provided at the end of the Policy. However, such action may render it difficult for IOCL to offer some of its services /products to the Data Subject any further. IOCL shall not be held liable in any manner whatsoever if IOCL is unable to perform its services or if there is a deficiency in its services to Data Subject due to Data Subject’s withdrawal of consent. IOCL and/or its Agents, employees, directors, associates , etc. shall be indemnified by the Data Subject and held harmless from any complaints, legal proceedings or claims filed or initiated by the Data Subject or any Third Party against IOCL in this regard. 18. CHANGES TO THIS PRIVACY POLICY The Policy is subject to modification s from time to time. If IOCL decide s to change this Policy, IOCL shall publish the modified Policy on its website. 19. GRIEVANCE OFFICER In accordance with the Indian Information Technology Act 2000 and the rules notified thereund er, the contact details of the Grievance Officer are provided below: Sh. Abhinav Bhatt , Corporate Business Technology Centre, Indian Oil Institute of Petroleum Management Campus, Plot No. 83, Institutional Area, Sector 18, Gurugram, Haryana – 122001 Email: data -grievance@indianoil.in Phone : 0124 -2861509"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_512_ov8",
+ "text": "Privacy Policy This document is the sole property of HDFC Capital Advisors Limited and is to be used strictly for Internal Consumption only. HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 2 of 4 Privacy Policy 1. Objective The purpose of this Privacy P olicy (“Policy ”) is to maintain the privacy of and protect the personal information of employees, contractors, outsourced workforce, vendors, interns, associates, customers , Corporate Social Responsibility (CSR) partners and business partners of HDFC Capital Advisors Limited (“ Company ”) and ensure compliance with the Information Technology Act, 2000 (“ Act”) and the Information Technology (Reasonable security practices and procedures and sensitive personal data or information) Rules, 2011 (“ Rules ”). This Policy must be read in conjunction with the Act and the Rules, as may be amended from time to time. 2. Applicability This Policy is applicable to the Company and the Third Party (“as defined in Section 3 of the Policy”) who may receive , collect, possess, stores, deals or handle Personal information (PI)/ Sensitive personal data or information (SPDI), on behalf of the Company . Any such Third Party is expected to have read, understood and comply with this Policy. The Company will use its best endeavors to ensure that such Third Party have read and understood the terms of this Policy and preferably having entered into a confidentiality agreement. 3. Key Definitions (a) “Data subject ” is one who is the subject of personal and sensitive personal data . It may include, but is not limited to, the employees, contractors, outsourced workforce, vendors, interns, associates, customers, Corporate Social Responsibility (CSR) partners and business partners of the Company. (b) \"Personal information (PI) \" means any information that relates to a natural person, which, either directly or indirectly, in combination with other information available or likely to be available with a body corporate, is capable of identifying such person . (c) “Sensitive personal data or information (SPDI) ” of a person means such personal information which consists of information relating to. i. password . ii. financial information such as Bank account or credit card or debit card or other payment instrument details . iii. physical, physiological , and mental health condition . iv. sexual orientation . v. medical records and history . vi. Biometric information . vii. any detail relating to the above clauses as provided to body corporate for providing service; and viii. any of the information received under above clauses by body corporate for processing, stored or processed under lawful contract or otherwise: HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 3 of 4 provided that, any information that is freely available or accessible in public domain or furnished under the Right to Information Act, 2005 or any other law for the time being in force shall not be regarded as sensitive personal data or information for th e purposes of these rules. (d) “Third Party ” means all external parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_512_ov8",
+ "text": "trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy describes generally acceptable privacy principles for the protection and appropriate use of personal information and SPDI at the Company . 4.1. Consent The Company shall obtain consent from the Data subject before collecting, receiving, possessing, storing, dealing or handling personal information or SPDI of the provider of such information. No PI/SPDI shall be used by the Company without the consent of the provider of the information . The consent shall be obtained (in writing or electronically) from the Data subjects before or at the time of collecting PI or SPDI . The Data subject shall be provided with a choice to opt out and withdraw any consent previously given by way of written communication to the Company . 4.2. Collection of Personal Information a) The Company shall not collect PI or Sensitive personal data or information (SPDI) unless : (i) the information is collected for a lawful purpose connected with a function or activity of the Company or any person on its behalf; and ( ii) the collection of the PI / SPDI is considered necessary for that purpose . b) While collecting PI/ SPDI directly from the person concerned, the Company or any person on its behalf s hall take such steps as are, in the circumstances, reasonable to ensure that the person concerned is having the knowledge of : (i) the fact that the information is being collected; ( ii) the purpose for which the information is being collected; ( iii) the intended recipients of the information; ( iv) the name and address of the agency that is collecting the information; and (v) the agency that will retain the information. c) The Company or any person on its behalf holding PI/ SPDI shall not retain that information for longer than is required for the purposes for which the information may lawfully be used or is otherwise required under any other law for the time being in force. d) The PI/SPDI collected shall be used for the purpose for which it has been collected. e) The Company shall address any discrepancies and grievances of the provider of the PI/ SPDI in a time bound manner. For this purpose, the Company shall designate a Grievance Officer and publish his name and contact details on its website . The Grievance Officer shall use best endeavors to redress the grievances o f the provider of information expeditiously within one month from the date of receipt of grievance . 4.3. Disclosure of Information a) Disclosure of PI/ SPDI by the Company to any Third Party shall require prior permission from the provider of such information, who has provided such information under lawful HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 4 of 4 contract or otherwise, unless such disclosure has been agreed to in the contract between the Company and the provider of information, or where the disclosure is necessary for compliance of a legal /regulatory obligation ; Provided"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "recursive_512_ov8",
+ "text": "compliance of a legal /regulatory obligation ; Provided that the information shall be shared by the Company , without obtaining prior consent from the provider of information, with Government agencies mandated under the law to obtain information including sensitive personal data or information for the purpose of verification of identity, or for prevention, detection, investigation including cyber inciden ts, prosecution, and punishment of offences. The Company will use best endeavors to ensure that t he Government agency send s a request in writing to the Company possessing the sensitive personal data or information stating clearly the purpose of seeking such information and stating that the information so obtained shall not be published or shared with any other person. b) The Company shall disclose any PI/ SPDI to any Third Party by an order under the law for the time being in force. c) The Company or any person on its behalf shall not publish the PI/ SPDI . d) The Company shall use its best endeavors (including by way of execution of appropriate non-disclosure agreements) to ensure that t he Third Party receiving the PI/ SPDI from the Company or any person on its behalf shall not disclose it further . 4.4. Reasonable Security Practices and Procedures The Company endeavors to have in place reasonable security practices and procedures in place to protect the PI/SPDI of the provider of information."
+ }
+]
\ No newline at end of file
diff --git a/out/chunks_semantic_sim74.json b/out/chunks_semantic_sim74.json
new file mode 100644
index 0000000..9fb8b8b
--- /dev/null
+++ b/out/chunks_semantic_sim74.json
@@ -0,0 +1,202 @@
+[
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "semantic_sim74",
+ "text": "Indian Oil Corporation Limited \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \nDATA PRIVACY POLICY \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\nIndian Oil Corporation Limited DATA PRIVACY POLICY \n \n \n \n1. INTRODUCTION \nIndian Oil Corporation Limited is a company incorporated under the laws of India, having \nits registered office at IndianOil Bhavan, G -9, Ali Yavar Jung Marg, Bandra [East], Mumbai – \n400051, India [Hereinafter referred to as “We” or “Us” or “Company” or “ IOCL ”]."
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "semantic_sim74",
+ "text": "In accordance with all applicable laws, IOCL has created this Privacy Policy [Hereinafter \nreferred to as “Privacy Policy” or “Policy” or “Privacy Statement” ] in order to demonstrate \nIOCL’s privacy commitment to any individual whose data IOCL collect s, stor es or process es \nfor providing or offering its services and products. 2. DEFINITIONS \nAgent : Any individual or entity which has a contractual relationship with IOCL, where IOCL \nis the principal and the other individual or entity is the agent, shall hereinafter be referred \nto as an \"Agent\" ."
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "semantic_sim74",
+ "text": "For instance, IOCL’s distributors, dealers, CFA, contractors, etc. shall be \nconsidered Agents. Data Subject: All individuals whose personal information is either collected, received, \nprocessed, stored, dealt or handled by IOCL shall hereinafter be referred to as “Data \nSubject”. Information: Personal Information of a Data Subject collected by IOCL under this Policy shall \nhereinafter be referred to as “Information”. Such Information includes, interalia, Sensitive \nPersonal Data or Information as defined under the Indian Information Technology Act, 2000 \nand the Aadhaar number and/or the biometric information associated with an Aadhaar \nnumber ."
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "semantic_sim74",
+ "text": "Third -Party: Any individual or entity over which IOCL does not have any control or \nownership, and which operates independently on its own is hereinafter referred to as a \n\"Third Party\". 3. GOVERNING LAW \nIOCL is an organisation based and existing in India and is thus bound by the laws of the \nRepublic of India. This Privacy Policy has been prepared in accordance with applicable \nIndian laws, including the Indian Information Technology Act, 2000 and the Aadhaar \n[Targeted Delivery of Financial and other Subsidies, Benefits and Services ] Act, 2016 ."
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "semantic_sim74",
+ "text": "4. APPLICABILITY \nThis Policy appli es to all individuals whose I nformation is either collected, received, \nprocessed, stored, dealt or handled by IOCL . Indian Oil Corporation Limited 5. OBJECTIVE \nThis Privacy Policy is intended to inform the Data Subject on how IOCL collects, processes, \nstores , and use s personal information that a Data Subject provides to IOCL either directly \nor indirectly ."
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "semantic_sim74",
+ "text": "This Privacy Policy also covers IOCL’s treatment of any personal information \nthat Third Parties share with IOCL . 6. HOW IOCL COLLECT S DATA SUBJECT ’S INFORMATION \nIOCL collect s Information about Data Subject through the following means: (a) whenever a Data Subject shows an interest or elects to use IOCL’s services or \nproducts, including information about IOCL schemes, irrespective of whether such \nservices /products are prov ided directly by IOCL or by its Agents on IOCL’s behalf ;"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "semantic_sim74",
+ "text": "(b) through IOCL’s network of Agents and a Third Party which collects such \nInformation and transfers it to IOCL for a business requirement ; (c) when Data Subject downloads IOCL’s mobile applications or visits any of the \nwebsites owned by IOCL and/or creates an account on the mobile applications or \nthe website s. (d) when Data Subject, which also includes employees of IOCL, directly elects to share \ntheir Information with IOCL."
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "semantic_sim74",
+ "text": "7. WHY IOCL COLLECT S DATA SUBJECT ’S INFORMATION [PURPOSE] \nIOCL uses the Information to conduct its business and to provide Data Subject with the \nbest possible services /products. IOCL will only use the Information based on this Privacy \nPolicy, its understanding with the Data Subject , or as required by law. IOCL will collect adequate, relevant and necessary Information and will process such \nInformation fairly and lawfully for the purpose it is collected ."
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "semantic_sim74",
+ "text": "Most comm only, IOCL will \nuse the Information in the following circumstances: (a) Where IOCL need s to perform the obligations it has promised the Data Subject , \nsuch as to provide a service or product to the Data Subject and to enable the Data \nSubject’s use of IOCL ’s products/ services , including but not limited to deal ing with \nenquiries and complaints made by or about the Data Subject relating to \nservices/products provided by IOCL and to improve and customise IOCL’s \nservices/products in accordance with the Data Subject’s preferences ;"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "semantic_sim74",
+ "text": "(b) Where IOCL need s to comply with a legal , accounting, business or reporting \nobligation , including compliance with requests from the Government of India or \nany Governmental Agency ; (c) To send marketing as well as non-marketing commercial communications to the \nData Subject ; (d) To send the Data Subject notifications that the Data Subject has specifically \nrequested for as well as to send statements, invoices and payment reminders to \nthe Data Subject , and to collect payments from the Data Subject ;"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "semantic_sim74",
+ "text": "(e) To provide Third Parties with statistical information about its customers but those \nThird Parties will not be able to identify any individu al from that information; (f) To keep IOCL’s website, mobile application s and other systems secure and to \nprevent fraud; Indian Oil Corporation Limited (g) To promote the mission and objectives of Skill Development in India and/or to \nprovide and disseminate information about relevant programm es under the Skill \nDevelopment Mission."
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "semantic_sim74",
+ "text": "(h) To manage the employment of the data subject with IOCL. IOCL collects and processes the Information only when it is essential to offer its \nservices/products to the Data Subject. By providing his or her Information , the Data Subject \nagrees that IOCL may collect, use and share this Information with Third Parties for the \npurpose s mentioned above from 7[a] to 7[h]."
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "semantic_sim74",
+ "text": "8. FAILURE TO PROVIDE INFORMATION \nIOCL may not be able to perform the obligations it has promised the Data Subject , or IOCL \nmay be prevented from complying with its legal , accounting, business or reporting \nobligation s if the Data Subject fails to provide certain Information when requested by IOCL . IOCL shall not be held liable in any manner whatsoever if IOCL is unable to perform its \nservices or if there is a deficiency in IOCL’s services to the Data Subject due to Data \nSubject’s failure to provide such Information."
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "semantic_sim74",
+ "text": "IOCL and/or its Agents, employees, directors, associates, etc. shall be indemnified by the \nData Subject and held harmless from any complaints, legal proceedings or claims filed or \ninitiated by the Data Subject or any Third Party against IOCL in this regard. 9. CHANGE OF PURPOSE \nIOCL will only use Data Subject ’s Information for the purposes for which IOCL collected it, \nunless IOCL reasonably consider s that it need s to use it for another reason and that reason \nis compatible with the original purpose."
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "semantic_sim74",
+ "text": "10. CONSENT \nData Subject agrees that IOCL does not need any additional or further consent from \nhim/her to use the Data Subject ’s Information in accordance with this Policy to carry out \nIOCL’s legal obligations or exercise specific rights. 11. INFORMATION SHARING AND DISCLOSURE \nIOCL may disclose the Information to any of its Agents or Third Parties insofar as reasonably \nnecessary for the purposes set out in this Policy and for the purpose of providing \nservices /products to the Data Subject ."
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "semantic_sim74",
+ "text": "Such Agents and Third Parties are expected to provide a similar level of protection to the \nInformation as is adhered to by IOCL . In addition to this, IOCL may disclose the Information where it is required to do so by law \nor to Governmental Agencies. Indian Oil Corporation Limited 12. TRANSFER OF INFORMATION OUTSIDE INDIA \nUnless stated otherwise, IOCL store s and process es the Information in India."
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "semantic_sim74",
+ "text": "There may, \nhowever, be occasions when IOCL need s to transfer the Information outside India for its \nbusiness requirements. In such instances, IOCL will exercise the same level of care in \nhandling the Information as it does in India. 13. DATA SECURITY \nThe Information is processed by IOCL in strict accordance with the Indian Information \nTechnology Act, 2000, and the rules notified thereunder."
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "semantic_sim74",
+ "text": "IOCL implement s and maintain \n‘Reasonable Security Practices and Procedures’ as stated in the Indian Information \nTechnology Act, 2000 and the Informat ion Technology [Reasonable Security Practices and \nProcedures and Sensitive Personal Data or Information] Rules, 2011, while processing, \ncollecting, storing or handling any Information. 14. DATA RETENTION \nIOCL will only retain the Information for as lon g as necessary to fulfil the purposes IOCL \ncollected it for, including for the purposes of satisfying any legal, business, accounting, or \nreporting requirements."
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "semantic_sim74",
+ "text": "In some circumstances, IOCL may anonymise the Information so that it can no longer be \nassociated with the Data Subject , in which case IOCL may use such information without a \nfurther reference to Data Subject . 15. WHO HANDLES AND RETAINS DATA SUBJECT ’S INFORMATION \nDetails about the primary entity which handles and retains the Information is provided \nbelow:"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "semantic_sim74",
+ "text": "Indian Oil Corporation Limited having its registered office at: IndianOil Bhavan \nG-9, Ali Yavar Jung Marg \nBandra [East] \nMumbai – 400051 \nIndia \n \n16. REVIEW OF INFORMATION \nData Subject can contact IOCL, through the Grievance Officer whose details are provided \nat the end of the Policy, requesting access to Data Subject ’s Information for reviewing or \nrequesting amendment to certain information that Data Subject considers to be incorrect \nor wrong."
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "semantic_sim74",
+ "text": "IOCL shall process such requests from Data Subject in accordance with applicable \nlaw. IOCL shall not be responsible for the authenticity of the Information provided by the Data \nSubject to IOCL or its Agents. Indian Oil Corporation Limited 17. WITHDRAWAL OF CONSENT \nData Subject may at any time revoke or withdraw Data Subject’s consent to provide \nInformation to IOCL by contacting the Grievance Officer whose details are provided at the \nend of the Policy."
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "semantic_sim74",
+ "text": "However, such action may render it difficult for IOCL to offer some of its \nservices /products to the Data Subject any further. IOCL shall not be held liable in any manner whatsoever if IOCL is unable to perform its \nservices or if there is a deficiency in its services to Data Subject due to Data Subject’s \nwithdrawal of consent. IOCL and/or its Agents, employees, directors, associates , etc."
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "semantic_sim74",
+ "text": "shall be indemnified by the \nData Subject and held harmless from any complaints, legal proceedings or claims filed or \ninitiated by the Data Subject or any Third Party against IOCL in this regard. 18. CHANGES TO THIS PRIVACY POLICY \nThe Policy is subject to modification s from time to time. If IOCL decide s to change this \nPolicy, IOCL shall publish the modified Policy on its website."
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "semantic_sim74",
+ "text": "19. GRIEVANCE OFFICER \nIn accordance with the Indian Information Technology Act 2000 and the rules notified \nthereund er, the contact details of the Grievance Officer are provided below: Sh. Abhinav Bhatt , \nCorporate Business Technology Centre, \nIndian Oil Institute of Petroleum Management Campus, \nPlot No. 83, Institutional Area, \nSector 18, Gurugram, \nHaryana – 122001 \n \nEmail: data -grievance@indianoil.in \nPhone : 0124 -2861509"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "semantic_sim74",
+ "text": "Privacy Policy \n \n \n \nThis document is the sole property of HDFC Capital Advisors Limited and is to be used strictly for \nInternal Consumption only. HDFC Capital Privacy Policy \n \nVersion: 2.0 January 2024 Security Classification: INTERNAL Page 2 of 4 \n Privacy Policy \n \n1. Objective \n \nThe purpose of this Privacy P olicy (“Policy ”) is to maintain the privacy of and protect the \npersonal information of employees, contractors, outsourced workforce, vendors, interns, \nassociates, customers , Corporate Social Responsibility (CSR) partners and business \npartners of HDFC Capital Advisors Limited (“ Company ”) and ensure compliance with the \nInformation Technology Act, 2000 (“ Act”) and the Information Technology (Reasonable \nsecurity practices and procedures and sensitive personal data or information) Rules, \n2011 (“ Rules ”)."
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "semantic_sim74",
+ "text": "This Policy must be read in conjunction with the Act and the Rules, as may be amended \nfrom time to time. 2. Applicability \n \nThis Policy is applicable to the Company and the Third Party (“as defined in Section 3 of \nthe Policy”) who may receive , collect, possess, stores, deals or handle Personal \ninformation (PI)/ Sensitive personal data or information (SPDI), on behalf of the \nCompany ."
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "semantic_sim74",
+ "text": "Any such Third Party is expected to have read, understood and comply with this Policy. The Company will use its best endeavors to ensure that such Third Party have read and \nunderstood the terms of this Policy and preferably having entered into a confidentiality \nagreement. 3. Key Definitions \n \n(a) “Data subject ” is one who is the subject of personal and sensitive personal data ."
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "semantic_sim74",
+ "text": "It \nmay include, but is not limited to, the employees, contractors, outsourced workforce, \nvendors, interns, associates, customers, Corporate Social Responsibility (CSR) \npartners and business partners of the Company. (b) \"Personal information (PI) \" means any information that relates to a natural person, \nwhich, either directly or indirectly, in combination with other information available \nor likely to be available with a body corporate, is capable of identifying such person ."
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "semantic_sim74",
+ "text": "(c) “Sensitive personal data or information (SPDI) ” of a person means such personal \ninformation which consists of information relating to. i. password . ii. financial information such as Bank account or credit card or debit card or other \npayment instrument details . iii. physical, physiological , and mental health condition . iv. sexual orientation . v. medical records and history ."
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "semantic_sim74",
+ "text": "vi. Biometric information . vii. any detail relating to the above clauses as provided to body corporate for \nproviding service; and \nviii. any of the information received under above clauses by body corporate for \nprocessing, stored or processed under lawful contract or otherwise: HDFC Capital Privacy Policy \n \nVersion: 2.0 January 2024 Security Classification: INTERNAL Page 3 of 4 \n provided that, any information that is freely available or accessible in public \ndomain or furnished under the Right to Information Act, 2005 or any other law \nfor the time being in force shall not be regarded as sensitive personal data or \ninformation for th e purposes of these rules."
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "semantic_sim74",
+ "text": "(d) “Third Party ” means all external parties such as contractors, outsourced \nworkforce, interns, summer trainees, vendors , CSR Partners and business partners \nwho have access to Company’s information assets. 4. Elements of Privacy Policy \n \nThis Policy describes generally acceptable privacy principles for the protection and \nappropriate use of personal information and SPDI at the Company . 4.1. Consent \nThe Company shall obtain consent from the Data subject before collecting, receiving, \npossessing, storing, dealing or handling personal information or SPDI of the provider of \nsuch information."
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "semantic_sim74",
+ "text": "No PI/SPDI shall be used by the Company without the consent of the \nprovider of the information . The consent shall be obtained (in writing or electronically) \nfrom the Data subjects before or at the time of collecting PI or SPDI . The Data subject shall be provided with a choice to opt out and withdraw any consent \npreviously given by way of written communication to the Company ."
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "semantic_sim74",
+ "text": "4.2. Collection of Personal Information \na) The Company shall not collect PI or Sensitive personal data or information (SPDI) \nunless : (i) the information is collected for a lawful purpose connected with a function \nor activity of the Company or any person on its behalf; and ( ii) the collection of the PI \n/ SPDI is considered necessary for that purpose ."
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "semantic_sim74",
+ "text": "b) While collecting PI/ SPDI directly from the person concerned, the Company or any \nperson on its behalf s hall take such steps as are, in the circumstances, reasonable to \nensure that the person concerned is having the knowledge of : (i) the fact that the \ninformation is being collected; ( ii) the purpose for which the information is being \ncollected;"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "semantic_sim74",
+ "text": "( iii) the intended recipients of the information; ( iv) the name and address of \nthe agency that is collecting the information; and (v) the agency that will retain the \ninformation. c) The Company or any person on its behalf holding PI/ SPDI shall not retain that \ninformation for longer than is required for the purposes for which the information may \nlawfully be used or is otherwise required under any other law for the time being in \nforce."
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "semantic_sim74",
+ "text": "d) The PI/SPDI collected shall be used for the purpose for which it has been collected. e) The Company shall address any discrepancies and grievances of the provider of the PI/ \nSPDI in a time bound manner. For this purpose, the Company shall designate a \nGrievance Officer and publish his name and contact details on its website . The \nGrievance Officer shall use best endeavors to redress the grievances o f the provider of \ninformation expeditiously within one month from the date of receipt of grievance ."
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "semantic_sim74",
+ "text": "4.3. Disclosure of Information \na) Disclosure of PI/ SPDI by the Company to any Third Party shall require prior permission \nfrom the provider of such information, who has provided such information under lawful \nHDFC Capital Privacy Policy \n \nVersion: 2.0 January 2024 Security Classification: INTERNAL Page 4 of 4 \n contract or otherwise, unless such disclosure has been agreed to in the contract \nbetween the Company and the provider of information, or where the disclosure is \nnecessary for compliance of a legal /regulatory obligation ;"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "semantic_sim74",
+ "text": "Provided that the information shall be shared by the Company , without obtaining prior \nconsent from the provider of information, with Government agencies mandated under \nthe law to obtain information including sensitive personal data or information for the \npurpose of verification of identity, or for prevention, detection, investigation including \ncyber inciden ts, prosecution, and punishment of offences. The Company will use best \nendeavors to ensure that t he Government agency send s a request in writing to the \nCompany possessing the sensitive personal data or information stating clearly the \npurpose of seeking such information and stating that the information so obtained shall \nnot be published or shared with any other person."
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "semantic_sim74",
+ "text": "b) The Company shall disclose any PI/ SPDI to any Third Party by an order under the law \nfor the time being in force. c) The Company or any person on its behalf shall not publish the PI/ SPDI . d) The Company shall use its best endeavors (including by way of execution of appropriate \nnon-disclosure agreements) to ensure that t he Third Party receiving the PI/ SPDI from \nthe Company or any person on its behalf shall not disclose it further ."
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "semantic_sim74",
+ "text": "4.4. Reasonable Security Practices and Procedures \nThe Company endeavors to have in place reasonable security practices and procedures \nin place to protect the PI/SPDI of the provider of information."
+ }
+]
\ No newline at end of file
diff --git a/out/chunks_simple_128_ov16.json b/out/chunks_simple_128_ov16.json
new file mode 100644
index 0000000..5a1fe10
--- /dev/null
+++ b/out/chunks_simple_128_ov16.json
@@ -0,0 +1,147 @@
+[
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_128_ov16",
+ "text": "Indian Oil Corporation Limited DATA PRIVACY POLICY Indian Oil Corporation Limited DATA PRIVACY POLICY 1. INTRODUCTION Indian Oil Corporation Limited is a company incorporated under the laws of India, having its registered office at IndianOil Bhavan, G -9, Ali Yavar Jung Marg, Bandra [East], Mumbai – 400051, India [Hereinafter referred to as “We” or “Us” or “Company” or “ IOCL ”]. In accordance with all applicable laws, IOCL has created this Privacy Policy [Hereinafter referred to as “Privacy Policy” or “Policy” or “Privacy Statement” ] in order to demonstrate IOCL’s privacy commitment to any individual whose data IOCL collect s, stor es or process es for providing or offering its services and products. 2. DEFINITIONS Agent : Any individual or entity which has a contractual relationship with IOCL,"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_128_ov16",
+ "text": "products. 2. DEFINITIONS Agent : Any individual or entity which has a contractual relationship with IOCL, where IOCL is the principal and the other individual or entity is the agent, shall hereinafter be referred to as an \"Agent\" . For instance, IOCL’s distributors, dealers, CFA, contractors, etc. shall be considered Agents. Data Subject: All individuals whose personal information is either collected, received, processed, stored, dealt or handled by IOCL shall hereinafter be referred to as “Data Subject”. Information: Personal Information of a Data Subject collected by IOCL under this Policy shall hereinafter be referred to as “Information”. Such Information includes, interalia, Sensitive Personal Data or Information as defined under the Indian Information Technology Act, 2000 and the Aadhaar number and/or the biometric information associated with an Aadhaar number"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_128_ov16",
+ "text": "Technology Act, 2000 and the Aadhaar number and/or the biometric information associated with an Aadhaar number . Third -Party: Any individual or entity over which IOCL does not have any control or ownership, and which operates independently on its own is hereinafter referred to as a \"Third Party\". 3. GOVERNING LAW IOCL is an organisation based and existing in India and is thus bound by the laws of the Republic of India. This Privacy Policy has been prepared in accordance with applicable Indian laws, including the Indian Information Technology Act, 2000 and the Aadhaar [Targeted Delivery of Financial and other Subsidies, Benefits and Services ] Act, 2016 . 4. APPLICABILITY This Policy appli es to all individuals whose I nformation is either collected, received, processed, stored, dealt or"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_128_ov16",
+ "text": "appli es to all individuals whose I nformation is either collected, received, processed, stored, dealt or handled by IOCL . Indian Oil Corporation Limited 5. OBJECTIVE This Privacy Policy is intended to inform the Data Subject on how IOCL collects, processes, stores , and use s personal information that a Data Subject provides to IOCL either directly or indirectly . This Privacy Policy also covers IOCL’s treatment of any personal information that Third Parties share with IOCL . 6. HOW IOCL COLLECT S DATA SUBJECT ’S INFORMATION IOCL collect s Information about Data Subject through the following means: (a) whenever a Data Subject shows an interest or elects to use IOCL’s services or products, including information about IOCL schemes, irrespective of whether such services /products are prov ided"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_128_ov16",
+ "text": "or products, including information about IOCL schemes, irrespective of whether such services /products are prov ided directly by IOCL or by its Agents on IOCL’s behalf ; (b) through IOCL’s network of Agents and a Third Party which collects such Information and transfers it to IOCL for a business requirement ; (c) when Data Subject downloads IOCL’s mobile applications or visits any of the websites owned by IOCL and/or creates an account on the mobile applications or the website s. (d) when Data Subject, which also includes employees of IOCL, directly elects to share their Information with IOCL. 7. WHY IOCL COLLECT S DATA SUBJECT ’S INFORMATION [PURPOSE] IOCL uses the Information to conduct its business and to provide Data Subject with the best possible services /products. IOCL"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_128_ov16",
+ "text": "to conduct its business and to provide Data Subject with the best possible services /products. IOCL will only use the Information based on this Privacy Policy, its understanding with the Data Subject , or as required by law. IOCL will collect adequate, relevant and necessary Information and will process such Information fairly and lawfully for the purpose it is collected . Most comm only, IOCL will use the Information in the following circumstances: (a) Where IOCL need s to perform the obligations it has promised the Data Subject , such as to provide a service or product to the Data Subject and to enable the Data Subject’s use of IOCL ’s products/ services , including but not limited to deal ing with enquiries and complaints made by or"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_128_ov16",
+ "text": "services , including but not limited to deal ing with enquiries and complaints made by or about the Data Subject relating to services/products provided by IOCL and to improve and customise IOCL’s services/products in accordance with the Data Subject’s preferences ; (b) Where IOCL need s to comply with a legal , accounting, business or reporting obligation , including compliance with requests from the Government of India or any Governmental Agency ; (c) To send marketing as well as non-marketing commercial communications to the Data Subject ; (d) To send the Data Subject notifications that the Data Subject has specifically requested for as well as to send statements, invoices and payment reminders to the Data Subject , and to collect payments from the Data Subject ; (e) To"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_128_ov16",
+ "text": "to the Data Subject , and to collect payments from the Data Subject ; (e) To provide Third Parties with statistical information about its customers but those Third Parties will not be able to identify any individu al from that information; (f) To keep IOCL’s website, mobile application s and other systems secure and to prevent fraud; Indian Oil Corporation Limited (g) To promote the mission and objectives of Skill Development in India and/or to provide and disseminate information about relevant programm es under the Skill Development Mission. (h) To manage the employment of the data subject with IOCL. IOCL collects and processes the Information only when it is essential to offer its services/products to the Data Subject. By providing his or her Information , the Data Subject"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_128_ov16",
+ "text": "its services/products to the Data Subject. By providing his or her Information , the Data Subject agrees that IOCL may collect, use and share this Information with Third Parties for the purpose s mentioned above from 7[a] to 7[h]. 8. FAILURE TO PROVIDE INFORMATION IOCL may not be able to perform the obligations it has promised the Data Subject , or IOCL may be prevented from complying with its legal , accounting, business or reporting obligation s if the Data Subject fails to provide certain Information when requested by IOCL . IOCL shall not be held liable in any manner whatsoever if IOCL is unable to perform its services or if there is a deficiency in IOCL’s services to the Data Subject due to Data Subject’s failure to"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_128_ov16",
+ "text": "is a deficiency in IOCL’s services to the Data Subject due to Data Subject’s failure to provide such Information. IOCL and/or its Agents, employees, directors, associates, etc. shall be indemnified by the Data Subject and held harmless from any complaints, legal proceedings or claims filed or initiated by the Data Subject or any Third Party against IOCL in this regard. 9. CHANGE OF PURPOSE IOCL will only use Data Subject ’s Information for the purposes for which IOCL collected it, unless IOCL reasonably consider s that it need s to use it for another reason and that reason is compatible with the original purpose. 10. CONSENT Data Subject agrees that IOCL does not need any additional or further consent from him/her to use the Data Subject ’s Information"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_128_ov16",
+ "text": "not need any additional or further consent from him/her to use the Data Subject ’s Information in accordance with this Policy to carry out IOCL’s legal obligations or exercise specific rights. 11. INFORMATION SHARING AND DISCLOSURE IOCL may disclose the Information to any of its Agents or Third Parties insofar as reasonably necessary for the purposes set out in this Policy and for the purpose of providing services /products to the Data Subject . Such Agents and Third Parties are expected to provide a similar level of protection to the Information as is adhered to by IOCL . In addition to this, IOCL may disclose the Information where it is required to do so by law or to Governmental Agencies. Indian Oil Corporation Limited 12. TRANSFER OF INFORMATION"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_128_ov16",
+ "text": "do so by law or to Governmental Agencies. Indian Oil Corporation Limited 12. TRANSFER OF INFORMATION OUTSIDE INDIA Unless stated otherwise, IOCL store s and process es the Information in India. There may, however, be occasions when IOCL need s to transfer the Information outside India for its business requirements. In such instances, IOCL will exercise the same level of care in handling the Information as it does in India. 13. DATA SECURITY The Information is processed by IOCL in strict accordance with the Indian Information Technology Act, 2000, and the rules notified thereunder. IOCL implement s and maintain ‘Reasonable Security Practices and Procedures’ as stated in the Indian Information Technology Act, 2000 and the Informat ion Technology [Reasonable Security Practices and Procedures and Sensitive Personal Data or"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_128_ov16",
+ "text": "2000 and the Informat ion Technology [Reasonable Security Practices and Procedures and Sensitive Personal Data or Information] Rules, 2011, while processing, collecting, storing or handling any Information. 14. DATA RETENTION IOCL will only retain the Information for as lon g as necessary to fulfil the purposes IOCL collected it for, including for the purposes of satisfying any legal, business, accounting, or reporting requirements. In some circumstances, IOCL may anonymise the Information so that it can no longer be associated with the Data Subject , in which case IOCL may use such information without a further reference to Data Subject . 15. WHO HANDLES AND RETAINS DATA SUBJECT ’S INFORMATION Details about the primary entity which handles and retains the Information is provided below: Indian Oil Corporation Limited having"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_128_ov16",
+ "text": "primary entity which handles and retains the Information is provided below: Indian Oil Corporation Limited having its registered office at: IndianOil Bhavan G-9, Ali Yavar Jung Marg Bandra [East] Mumbai – 400051 India 16. REVIEW OF INFORMATION Data Subject can contact IOCL, through the Grievance Officer whose details are provided at the end of the Policy, requesting access to Data Subject ’s Information for reviewing or requesting amendment to certain information that Data Subject considers to be incorrect or wrong. IOCL shall process such requests from Data Subject in accordance with applicable law. IOCL shall not be responsible for the authenticity of the Information provided by the Data Subject to IOCL or its Agents. Indian Oil Corporation Limited 17. WITHDRAWAL OF CONSENT Data Subject may at any time"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_128_ov16",
+ "text": "its Agents. Indian Oil Corporation Limited 17. WITHDRAWAL OF CONSENT Data Subject may at any time revoke or withdraw Data Subject’s consent to provide Information to IOCL by contacting the Grievance Officer whose details are provided at the end of the Policy. However, such action may render it difficult for IOCL to offer some of its services /products to the Data Subject any further. IOCL shall not be held liable in any manner whatsoever if IOCL is unable to perform its services or if there is a deficiency in its services to Data Subject due to Data Subject’s withdrawal of consent. IOCL and/or its Agents, employees, directors, associates , etc. shall be indemnified by the Data Subject and held harmless from any complaints, legal proceedings or claims filed"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_128_ov16",
+ "text": "indemnified by the Data Subject and held harmless from any complaints, legal proceedings or claims filed or initiated by the Data Subject or any Third Party against IOCL in this regard. 18. CHANGES TO THIS PRIVACY POLICY The Policy is subject to modification s from time to time. If IOCL decide s to change this Policy, IOCL shall publish the modified Policy on its website. 19. GRIEVANCE OFFICER In accordance with the Indian Information Technology Act 2000 and the rules notified thereund er, the contact details of the Grievance Officer are provided below: Sh. Abhinav Bhatt , Corporate Business Technology Centre, Indian Oil Institute of Petroleum Management Campus, Plot No. 83, Institutional Area, Sector 18, Gurugram, Haryana – 122001 Email: data -grievance@indianoil.in Phone : 0124 -2861509"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_128_ov16",
+ "text": "Area, Sector 18, Gurugram, Haryana – 122001 Email: data -grievance@indianoil.in Phone : 0124 -2861509"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_128_ov16",
+ "text": "Privacy Policy This document is the sole property of HDFC Capital Advisors Limited and is to be used strictly for Internal Consumption only. HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 2 of 4 Privacy Policy 1. Objective The purpose of this Privacy P olicy (“Policy ”) is to maintain the privacy of and protect the personal information of employees, contractors, outsourced workforce, vendors, interns, associates, customers , Corporate Social Responsibility (CSR) partners and business partners of HDFC Capital Advisors Limited (“ Company ”) and ensure compliance with the Information Technology Act, 2000 (“ Act”) and the Information Technology (Reasonable security practices and procedures and sensitive personal data or information) Rules, 2011 (“ Rules ”). This Policy must be read in conjunction with the"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_128_ov16",
+ "text": "or information) Rules, 2011 (“ Rules ”). This Policy must be read in conjunction with the Act and the Rules, as may be amended from time to time. 2. Applicability This Policy is applicable to the Company and the Third Party (“as defined in Section 3 of the Policy”) who may receive , collect, possess, stores, deals or handle Personal information (PI)/ Sensitive personal data or information (SPDI), on behalf of the Company . Any such Third Party is expected to have read, understood and comply with this Policy. The Company will use its best endeavors to ensure that such Third Party have read and understood the terms of this Policy and preferably having entered into a confidentiality agreement. 3. Key Definitions (a) “Data subject ” is one"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_128_ov16",
+ "text": "preferably having entered into a confidentiality agreement. 3. Key Definitions (a) “Data subject ” is one who is the subject of personal and sensitive personal data . It may include, but is not limited to, the employees, contractors, outsourced workforce, vendors, interns, associates, customers, Corporate Social Responsibility (CSR) partners and business partners of the Company. (b) \"Personal information (PI) \" means any information that relates to a natural person, which, either directly or indirectly, in combination with other information available or likely to be available with a body corporate, is capable of identifying such person . (c) “Sensitive personal data or information (SPDI) ” of a person means such personal information which consists of information relating to. i. password . ii. financial information such as Bank account or"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_128_ov16",
+ "text": "consists of information relating to. i. password . ii. financial information such as Bank account or credit card or debit card or other payment instrument details . iii. physical, physiological , and mental health condition . iv. sexual orientation . v. medical records and history . vi. Biometric information . vii. any detail relating to the above clauses as provided to body corporate for providing service; and viii. any of the information received under above clauses by body corporate for processing, stored or processed under lawful contract or otherwise: HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 3 of 4 provided that, any information that is freely available or accessible in public domain or furnished under the Right to Information Act, 2005 or any"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_128_ov16",
+ "text": "or accessible in public domain or furnished under the Right to Information Act, 2005 or any other law for the time being in force shall not be regarded as sensitive personal data or information for th e purposes of these rules. (d) “Third Party ” means all external parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy describes generally acceptable privacy principles for the protection and appropriate use of personal information and SPDI at the Company . 4.1. Consent The Company shall obtain consent from the Data subject before collecting, receiving, possessing, storing, dealing or handling personal information or SPDI of the provider of such information. No"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_128_ov16",
+ "text": "possessing, storing, dealing or handling personal information or SPDI of the provider of such information. No PI/SPDI shall be used by the Company without the consent of the provider of the information . The consent shall be obtained (in writing or electronically) from the Data subjects before or at the time of collecting PI or SPDI . The Data subject shall be provided with a choice to opt out and withdraw any consent previously given by way of written communication to the Company . 4.2. Collection of Personal Information a) The Company shall not collect PI or Sensitive personal data or information (SPDI) unless : (i) the information is collected for a lawful purpose connected with a function or activity of the Company or any person on its"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_128_ov16",
+ "text": "lawful purpose connected with a function or activity of the Company or any person on its behalf; and ( ii) the collection of the PI / SPDI is considered necessary for that purpose . b) While collecting PI/ SPDI directly from the person concerned, the Company or any person on its behalf s hall take such steps as are, in the circumstances, reasonable to ensure that the person concerned is having the knowledge of : (i) the fact that the information is being collected; ( ii) the purpose for which the information is being collected; ( iii) the intended recipients of the information; ( iv) the name and address of the agency that is collecting the information; and (v) the agency that will retain the information. c) The"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_128_ov16",
+ "text": "that is collecting the information; and (v) the agency that will retain the information. c) The Company or any person on its behalf holding PI/ SPDI shall not retain that information for longer than is required for the purposes for which the information may lawfully be used or is otherwise required under any other law for the time being in force. d) The PI/SPDI collected shall be used for the purpose for which it has been collected. e) The Company shall address any discrepancies and grievances of the provider of the PI/ SPDI in a time bound manner. For this purpose, the Company shall designate a Grievance Officer and publish his name and contact details on its website . The Grievance Officer shall use best endeavors to redress"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_128_ov16",
+ "text": "and contact details on its website . The Grievance Officer shall use best endeavors to redress the grievances o f the provider of information expeditiously within one month from the date of receipt of grievance . 4.3. Disclosure of Information a) Disclosure of PI/ SPDI by the Company to any Third Party shall require prior permission from the provider of such information, who has provided such information under lawful HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 4 of 4 contract or otherwise, unless such disclosure has been agreed to in the contract between the Company and the provider of information, or where the disclosure is necessary for compliance of a legal /regulatory obligation ; Provided that the information shall be shared by the"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_128_ov16",
+ "text": "compliance of a legal /regulatory obligation ; Provided that the information shall be shared by the Company , without obtaining prior consent from the provider of information, with Government agencies mandated under the law to obtain information including sensitive personal data or information for the purpose of verification of identity, or for prevention, detection, investigation including cyber inciden ts, prosecution, and punishment of offences. The Company will use best endeavors to ensure that t he Government agency send s a request in writing to the Company possessing the sensitive personal data or information stating clearly the purpose of seeking such information and stating that the information so obtained shall not be published or shared with any other person. b) The Company shall disclose any PI/ SPDI to any"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_128_ov16",
+ "text": "or shared with any other person. b) The Company shall disclose any PI/ SPDI to any Third Party by an order under the law for the time being in force. c) The Company or any person on its behalf shall not publish the PI/ SPDI . d) The Company shall use its best endeavors (including by way of execution of appropriate non-disclosure agreements) to ensure that t he Third Party receiving the PI/ SPDI from the Company or any person on its behalf shall not disclose it further . 4.4. Reasonable Security Practices and Procedures The Company endeavors to have in place reasonable security practices and procedures in place to protect the PI/SPDI of the provider of information."
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_128_ov16",
+ "text": "PI/SPDI of the provider of information."
+ }
+]
\ No newline at end of file
diff --git a/out/chunks_simple_128_ov8.json b/out/chunks_simple_128_ov8.json
new file mode 100644
index 0000000..9ccacc7
--- /dev/null
+++ b/out/chunks_simple_128_ov8.json
@@ -0,0 +1,137 @@
+[
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_128_ov8",
+ "text": "Indian Oil Corporation Limited DATA PRIVACY POLICY Indian Oil Corporation Limited DATA PRIVACY POLICY 1. INTRODUCTION Indian Oil Corporation Limited is a company incorporated under the laws of India, having its registered office at IndianOil Bhavan, G -9, Ali Yavar Jung Marg, Bandra [East], Mumbai – 400051, India [Hereinafter referred to as “We” or “Us” or “Company” or “ IOCL ”]. In accordance with all applicable laws, IOCL has created this Privacy Policy [Hereinafter referred to as “Privacy Policy” or “Policy” or “Privacy Statement” ] in order to demonstrate IOCL’s privacy commitment to any individual whose data IOCL collect s, stor es or process es for providing or offering its services and products. 2. DEFINITIONS Agent : Any individual or entity which has a contractual relationship with IOCL,"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_128_ov8",
+ "text": "entity which has a contractual relationship with IOCL, where IOCL is the principal and the other individual or entity is the agent, shall hereinafter be referred to as an \"Agent\" . For instance, IOCL’s distributors, dealers, CFA, contractors, etc. shall be considered Agents. Data Subject: All individuals whose personal information is either collected, received, processed, stored, dealt or handled by IOCL shall hereinafter be referred to as “Data Subject”. Information: Personal Information of a Data Subject collected by IOCL under this Policy shall hereinafter be referred to as “Information”. Such Information includes, interalia, Sensitive Personal Data or Information as defined under the Indian Information Technology Act, 2000 and the Aadhaar number and/or the biometric information associated with an Aadhaar number . Third -Party: Any individual or entity over"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_128_ov8",
+ "text": ". Third -Party: Any individual or entity over which IOCL does not have any control or ownership, and which operates independently on its own is hereinafter referred to as a \"Third Party\". 3. GOVERNING LAW IOCL is an organisation based and existing in India and is thus bound by the laws of the Republic of India. This Privacy Policy has been prepared in accordance with applicable Indian laws, including the Indian Information Technology Act, 2000 and the Aadhaar [Targeted Delivery of Financial and other Subsidies, Benefits and Services ] Act, 2016 . 4. APPLICABILITY This Policy appli es to all individuals whose I nformation is either collected, received, processed, stored, dealt or handled by IOCL . Indian Oil Corporation Limited 5. OBJECTIVE This Privacy Policy is intended to"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_128_ov8",
+ "text": "5. OBJECTIVE This Privacy Policy is intended to inform the Data Subject on how IOCL collects, processes, stores , and use s personal information that a Data Subject provides to IOCL either directly or indirectly . This Privacy Policy also covers IOCL’s treatment of any personal information that Third Parties share with IOCL . 6. HOW IOCL COLLECT S DATA SUBJECT ’S INFORMATION IOCL collect s Information about Data Subject through the following means: (a) whenever a Data Subject shows an interest or elects to use IOCL’s services or products, including information about IOCL schemes, irrespective of whether such services /products are prov ided directly by IOCL or by its Agents on IOCL’s behalf ; (b) through IOCL’s network of Agents and a Third Party which collects such"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_128_ov8",
+ "text": "Agents and a Third Party which collects such Information and transfers it to IOCL for a business requirement ; (c) when Data Subject downloads IOCL’s mobile applications or visits any of the websites owned by IOCL and/or creates an account on the mobile applications or the website s. (d) when Data Subject, which also includes employees of IOCL, directly elects to share their Information with IOCL. 7. WHY IOCL COLLECT S DATA SUBJECT ’S INFORMATION [PURPOSE] IOCL uses the Information to conduct its business and to provide Data Subject with the best possible services /products. IOCL will only use the Information based on this Privacy Policy, its understanding with the Data Subject , or as required by law. IOCL will collect adequate, relevant and necessary Information and will"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_128_ov8",
+ "text": "collect adequate, relevant and necessary Information and will process such Information fairly and lawfully for the purpose it is collected . Most comm only, IOCL will use the Information in the following circumstances: (a) Where IOCL need s to perform the obligations it has promised the Data Subject , such as to provide a service or product to the Data Subject and to enable the Data Subject’s use of IOCL ’s products/ services , including but not limited to deal ing with enquiries and complaints made by or about the Data Subject relating to services/products provided by IOCL and to improve and customise IOCL’s services/products in accordance with the Data Subject’s preferences ; (b) Where IOCL need s to comply with a legal , accounting, business or reporting"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_128_ov8",
+ "text": "with a legal , accounting, business or reporting obligation , including compliance with requests from the Government of India or any Governmental Agency ; (c) To send marketing as well as non-marketing commercial communications to the Data Subject ; (d) To send the Data Subject notifications that the Data Subject has specifically requested for as well as to send statements, invoices and payment reminders to the Data Subject , and to collect payments from the Data Subject ; (e) To provide Third Parties with statistical information about its customers but those Third Parties will not be able to identify any individu al from that information; (f) To keep IOCL’s website, mobile application s and other systems secure and to prevent fraud; Indian Oil Corporation Limited (g) To promote"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_128_ov8",
+ "text": "fraud; Indian Oil Corporation Limited (g) To promote the mission and objectives of Skill Development in India and/or to provide and disseminate information about relevant programm es under the Skill Development Mission. (h) To manage the employment of the data subject with IOCL. IOCL collects and processes the Information only when it is essential to offer its services/products to the Data Subject. By providing his or her Information , the Data Subject agrees that IOCL may collect, use and share this Information with Third Parties for the purpose s mentioned above from 7[a] to 7[h]. 8. FAILURE TO PROVIDE INFORMATION IOCL may not be able to perform the obligations it has promised the Data Subject , or IOCL may be prevented from complying with its legal , accounting,"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_128_ov8",
+ "text": "prevented from complying with its legal , accounting, business or reporting obligation s if the Data Subject fails to provide certain Information when requested by IOCL . IOCL shall not be held liable in any manner whatsoever if IOCL is unable to perform its services or if there is a deficiency in IOCL’s services to the Data Subject due to Data Subject’s failure to provide such Information. IOCL and/or its Agents, employees, directors, associates, etc. shall be indemnified by the Data Subject and held harmless from any complaints, legal proceedings or claims filed or initiated by the Data Subject or any Third Party against IOCL in this regard. 9. CHANGE OF PURPOSE IOCL will only use Data Subject ’s Information for the purposes for which IOCL collected it,"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_128_ov8",
+ "text": "for the purposes for which IOCL collected it, unless IOCL reasonably consider s that it need s to use it for another reason and that reason is compatible with the original purpose. 10. CONSENT Data Subject agrees that IOCL does not need any additional or further consent from him/her to use the Data Subject ’s Information in accordance with this Policy to carry out IOCL’s legal obligations or exercise specific rights. 11. INFORMATION SHARING AND DISCLOSURE IOCL may disclose the Information to any of its Agents or Third Parties insofar as reasonably necessary for the purposes set out in this Policy and for the purpose of providing services /products to the Data Subject . Such Agents and Third Parties are expected to provide a similar level of protection"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_128_ov8",
+ "text": "expected to provide a similar level of protection to the Information as is adhered to by IOCL . In addition to this, IOCL may disclose the Information where it is required to do so by law or to Governmental Agencies. Indian Oil Corporation Limited 12. TRANSFER OF INFORMATION OUTSIDE INDIA Unless stated otherwise, IOCL store s and process es the Information in India. There may, however, be occasions when IOCL need s to transfer the Information outside India for its business requirements. In such instances, IOCL will exercise the same level of care in handling the Information as it does in India. 13. DATA SECURITY The Information is processed by IOCL in strict accordance with the Indian Information Technology Act, 2000, and the rules notified thereunder. IOCL implement"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_128_ov8",
+ "text": "2000, and the rules notified thereunder. IOCL implement s and maintain ‘Reasonable Security Practices and Procedures’ as stated in the Indian Information Technology Act, 2000 and the Informat ion Technology [Reasonable Security Practices and Procedures and Sensitive Personal Data or Information] Rules, 2011, while processing, collecting, storing or handling any Information. 14. DATA RETENTION IOCL will only retain the Information for as lon g as necessary to fulfil the purposes IOCL collected it for, including for the purposes of satisfying any legal, business, accounting, or reporting requirements. In some circumstances, IOCL may anonymise the Information so that it can no longer be associated with the Data Subject , in which case IOCL may use such information without a further reference to Data Subject . 15. WHO HANDLES AND"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_128_ov8",
+ "text": "to Data Subject . 15. WHO HANDLES AND RETAINS DATA SUBJECT ’S INFORMATION Details about the primary entity which handles and retains the Information is provided below: Indian Oil Corporation Limited having its registered office at: IndianOil Bhavan G-9, Ali Yavar Jung Marg Bandra [East] Mumbai – 400051 India 16. REVIEW OF INFORMATION Data Subject can contact IOCL, through the Grievance Officer whose details are provided at the end of the Policy, requesting access to Data Subject ’s Information for reviewing or requesting amendment to certain information that Data Subject considers to be incorrect or wrong. IOCL shall process such requests from Data Subject in accordance with applicable law. IOCL shall not be responsible for the authenticity of the Information provided by the Data Subject to IOCL or"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_128_ov8",
+ "text": "provided by the Data Subject to IOCL or its Agents. Indian Oil Corporation Limited 17. WITHDRAWAL OF CONSENT Data Subject may at any time revoke or withdraw Data Subject’s consent to provide Information to IOCL by contacting the Grievance Officer whose details are provided at the end of the Policy. However, such action may render it difficult for IOCL to offer some of its services /products to the Data Subject any further. IOCL shall not be held liable in any manner whatsoever if IOCL is unable to perform its services or if there is a deficiency in its services to Data Subject due to Data Subject’s withdrawal of consent. IOCL and/or its Agents, employees, directors, associates , etc. shall be indemnified by the Data Subject and held harmless"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_128_ov8",
+ "text": "indemnified by the Data Subject and held harmless from any complaints, legal proceedings or claims filed or initiated by the Data Subject or any Third Party against IOCL in this regard. 18. CHANGES TO THIS PRIVACY POLICY The Policy is subject to modification s from time to time. If IOCL decide s to change this Policy, IOCL shall publish the modified Policy on its website. 19. GRIEVANCE OFFICER In accordance with the Indian Information Technology Act 2000 and the rules notified thereund er, the contact details of the Grievance Officer are provided below: Sh. Abhinav Bhatt , Corporate Business Technology Centre, Indian Oil Institute of Petroleum Management Campus, Plot No. 83, Institutional Area, Sector 18, Gurugram, Haryana – 122001 Email: data -grievance@indianoil.in Phone : 0124 -2861509"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_128_ov8",
+ "text": "data -grievance@indianoil.in Phone : 0124 -2861509"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_128_ov8",
+ "text": "Privacy Policy This document is the sole property of HDFC Capital Advisors Limited and is to be used strictly for Internal Consumption only. HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 2 of 4 Privacy Policy 1. Objective The purpose of this Privacy P olicy (“Policy ”) is to maintain the privacy of and protect the personal information of employees, contractors, outsourced workforce, vendors, interns, associates, customers , Corporate Social Responsibility (CSR) partners and business partners of HDFC Capital Advisors Limited (“ Company ”) and ensure compliance with the Information Technology Act, 2000 (“ Act”) and the Information Technology (Reasonable security practices and procedures and sensitive personal data or information) Rules, 2011 (“ Rules ”). This Policy must be read in conjunction with the"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_128_ov8",
+ "text": "Policy must be read in conjunction with the Act and the Rules, as may be amended from time to time. 2. Applicability This Policy is applicable to the Company and the Third Party (“as defined in Section 3 of the Policy”) who may receive , collect, possess, stores, deals or handle Personal information (PI)/ Sensitive personal data or information (SPDI), on behalf of the Company . Any such Third Party is expected to have read, understood and comply with this Policy. The Company will use its best endeavors to ensure that such Third Party have read and understood the terms of this Policy and preferably having entered into a confidentiality agreement. 3. Key Definitions (a) “Data subject ” is one who is the subject of personal and sensitive"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_128_ov8",
+ "text": "who is the subject of personal and sensitive personal data . It may include, but is not limited to, the employees, contractors, outsourced workforce, vendors, interns, associates, customers, Corporate Social Responsibility (CSR) partners and business partners of the Company. (b) \"Personal information (PI) \" means any information that relates to a natural person, which, either directly or indirectly, in combination with other information available or likely to be available with a body corporate, is capable of identifying such person . (c) “Sensitive personal data or information (SPDI) ” of a person means such personal information which consists of information relating to. i. password . ii. financial information such as Bank account or credit card or debit card or other payment instrument details . iii. physical, physiological , and"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_128_ov8",
+ "text": "instrument details . iii. physical, physiological , and mental health condition . iv. sexual orientation . v. medical records and history . vi. Biometric information . vii. any detail relating to the above clauses as provided to body corporate for providing service; and viii. any of the information received under above clauses by body corporate for processing, stored or processed under lawful contract or otherwise: HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 3 of 4 provided that, any information that is freely available or accessible in public domain or furnished under the Right to Information Act, 2005 or any other law for the time being in force shall not be regarded as sensitive personal data or information for th e purposes of these"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_128_ov8",
+ "text": "or information for th e purposes of these rules. (d) “Third Party ” means all external parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy describes generally acceptable privacy principles for the protection and appropriate use of personal information and SPDI at the Company . 4.1. Consent The Company shall obtain consent from the Data subject before collecting, receiving, possessing, storing, dealing or handling personal information or SPDI of the provider of such information. No PI/SPDI shall be used by the Company without the consent of the provider of the information . The consent shall be obtained (in writing or electronically) from the Data subjects before or"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_128_ov8",
+ "text": "or electronically) from the Data subjects before or at the time of collecting PI or SPDI . The Data subject shall be provided with a choice to opt out and withdraw any consent previously given by way of written communication to the Company . 4.2. Collection of Personal Information a) The Company shall not collect PI or Sensitive personal data or information (SPDI) unless : (i) the information is collected for a lawful purpose connected with a function or activity of the Company or any person on its behalf; and ( ii) the collection of the PI / SPDI is considered necessary for that purpose . b) While collecting PI/ SPDI directly from the person concerned, the Company or any person on its behalf s hall take such"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_128_ov8",
+ "text": "person on its behalf s hall take such steps as are, in the circumstances, reasonable to ensure that the person concerned is having the knowledge of : (i) the fact that the information is being collected; ( ii) the purpose for which the information is being collected; ( iii) the intended recipients of the information; ( iv) the name and address of the agency that is collecting the information; and (v) the agency that will retain the information. c) The Company or any person on its behalf holding PI/ SPDI shall not retain that information for longer than is required for the purposes for which the information may lawfully be used or is otherwise required under any other law for the time being in force. d) The PI/SPDI"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_128_ov8",
+ "text": "the time being in force. d) The PI/SPDI collected shall be used for the purpose for which it has been collected. e) The Company shall address any discrepancies and grievances of the provider of the PI/ SPDI in a time bound manner. For this purpose, the Company shall designate a Grievance Officer and publish his name and contact details on its website . The Grievance Officer shall use best endeavors to redress the grievances o f the provider of information expeditiously within one month from the date of receipt of grievance . 4.3. Disclosure of Information a) Disclosure of PI/ SPDI by the Company to any Third Party shall require prior permission from the provider of such information, who has provided such information under lawful HDFC Capital Privacy"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_128_ov8",
+ "text": "provided such information under lawful HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 4 of 4 contract or otherwise, unless such disclosure has been agreed to in the contract between the Company and the provider of information, or where the disclosure is necessary for compliance of a legal /regulatory obligation ; Provided that the information shall be shared by the Company , without obtaining prior consent from the provider of information, with Government agencies mandated under the law to obtain information including sensitive personal data or information for the purpose of verification of identity, or for prevention, detection, investigation including cyber inciden ts, prosecution, and punishment of offences. The Company will use best endeavors to ensure that t he Government agency send s a"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_128_ov8",
+ "text": "that t he Government agency send s a request in writing to the Company possessing the sensitive personal data or information stating clearly the purpose of seeking such information and stating that the information so obtained shall not be published or shared with any other person. b) The Company shall disclose any PI/ SPDI to any Third Party by an order under the law for the time being in force. c) The Company or any person on its behalf shall not publish the PI/ SPDI . d) The Company shall use its best endeavors (including by way of execution of appropriate non-disclosure agreements) to ensure that t he Third Party receiving the PI/ SPDI from the Company or any person on its behalf shall not disclose it further"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_128_ov8",
+ "text": "on its behalf shall not disclose it further . 4.4. Reasonable Security Practices and Procedures The Company endeavors to have in place reasonable security practices and procedures in place to protect the PI/SPDI of the provider of information."
+ }
+]
\ No newline at end of file
diff --git a/out/chunks_simple_256_ov16.json b/out/chunks_simple_256_ov16.json
new file mode 100644
index 0000000..8cd9a1c
--- /dev/null
+++ b/out/chunks_simple_256_ov16.json
@@ -0,0 +1,72 @@
+[
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_256_ov16",
+ "text": "Indian Oil Corporation Limited DATA PRIVACY POLICY Indian Oil Corporation Limited DATA PRIVACY POLICY 1. INTRODUCTION Indian Oil Corporation Limited is a company incorporated under the laws of India, having its registered office at IndianOil Bhavan, G -9, Ali Yavar Jung Marg, Bandra [East], Mumbai – 400051, India [Hereinafter referred to as “We” or “Us” or “Company” or “ IOCL ”]. In accordance with all applicable laws, IOCL has created this Privacy Policy [Hereinafter referred to as “Privacy Policy” or “Policy” or “Privacy Statement” ] in order to demonstrate IOCL’s privacy commitment to any individual whose data IOCL collect s, stor es or process es for providing or offering its services and products. 2. DEFINITIONS Agent : Any individual or entity which has a contractual relationship with IOCL, where IOCL is the principal and the other individual or entity is the agent, shall hereinafter be referred to as an \"Agent\" . For instance, IOCL’s distributors, dealers, CFA, contractors, etc. shall be considered Agents. Data Subject: All individuals whose personal information is either collected, received, processed, stored, dealt or handled by IOCL shall hereinafter be referred to as “Data Subject”. Information: Personal Information of a Data Subject collected by IOCL under this Policy shall hereinafter be referred to as “Information”. Such Information includes, interalia, Sensitive Personal Data or Information as defined under the Indian Information Technology Act, 2000 and the Aadhaar number and/or the biometric information associated with an Aadhaar number . Third -Party: Any individual or entity over which IOCL does not have any control or"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_256_ov16",
+ "text": ". Third -Party: Any individual or entity over which IOCL does not have any control or ownership, and which operates independently on its own is hereinafter referred to as a \"Third Party\". 3. GOVERNING LAW IOCL is an organisation based and existing in India and is thus bound by the laws of the Republic of India. This Privacy Policy has been prepared in accordance with applicable Indian laws, including the Indian Information Technology Act, 2000 and the Aadhaar [Targeted Delivery of Financial and other Subsidies, Benefits and Services ] Act, 2016 . 4. APPLICABILITY This Policy appli es to all individuals whose I nformation is either collected, received, processed, stored, dealt or handled by IOCL . Indian Oil Corporation Limited 5. OBJECTIVE This Privacy Policy is intended to inform the Data Subject on how IOCL collects, processes, stores , and use s personal information that a Data Subject provides to IOCL either directly or indirectly . This Privacy Policy also covers IOCL’s treatment of any personal information that Third Parties share with IOCL . 6. HOW IOCL COLLECT S DATA SUBJECT ’S INFORMATION IOCL collect s Information about Data Subject through the following means: (a) whenever a Data Subject shows an interest or elects to use IOCL’s services or products, including information about IOCL schemes, irrespective of whether such services /products are prov ided directly by IOCL or by its Agents on IOCL’s behalf ; (b) through IOCL’s network of Agents and a Third Party which collects such Information and transfers it to IOCL for a"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_256_ov16",
+ "text": "Agents and a Third Party which collects such Information and transfers it to IOCL for a business requirement ; (c) when Data Subject downloads IOCL’s mobile applications or visits any of the websites owned by IOCL and/or creates an account on the mobile applications or the website s. (d) when Data Subject, which also includes employees of IOCL, directly elects to share their Information with IOCL. 7. WHY IOCL COLLECT S DATA SUBJECT ’S INFORMATION [PURPOSE] IOCL uses the Information to conduct its business and to provide Data Subject with the best possible services /products. IOCL will only use the Information based on this Privacy Policy, its understanding with the Data Subject , or as required by law. IOCL will collect adequate, relevant and necessary Information and will process such Information fairly and lawfully for the purpose it is collected . Most comm only, IOCL will use the Information in the following circumstances: (a) Where IOCL need s to perform the obligations it has promised the Data Subject , such as to provide a service or product to the Data Subject and to enable the Data Subject’s use of IOCL ’s products/ services , including but not limited to deal ing with enquiries and complaints made by or about the Data Subject relating to services/products provided by IOCL and to improve and customise IOCL’s services/products in accordance with the Data Subject’s preferences ; (b) Where IOCL need s to comply with a legal , accounting, business or reporting obligation , including compliance with requests from the"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_256_ov16",
+ "text": "with a legal , accounting, business or reporting obligation , including compliance with requests from the Government of India or any Governmental Agency ; (c) To send marketing as well as non-marketing commercial communications to the Data Subject ; (d) To send the Data Subject notifications that the Data Subject has specifically requested for as well as to send statements, invoices and payment reminders to the Data Subject , and to collect payments from the Data Subject ; (e) To provide Third Parties with statistical information about its customers but those Third Parties will not be able to identify any individu al from that information; (f) To keep IOCL’s website, mobile application s and other systems secure and to prevent fraud; Indian Oil Corporation Limited (g) To promote the mission and objectives of Skill Development in India and/or to provide and disseminate information about relevant programm es under the Skill Development Mission. (h) To manage the employment of the data subject with IOCL. IOCL collects and processes the Information only when it is essential to offer its services/products to the Data Subject. By providing his or her Information , the Data Subject agrees that IOCL may collect, use and share this Information with Third Parties for the purpose s mentioned above from 7[a] to 7[h]. 8. FAILURE TO PROVIDE INFORMATION IOCL may not be able to perform the obligations it has promised the Data Subject , or IOCL may be prevented from complying with its legal , accounting, business or reporting obligation s if the Data"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_256_ov16",
+ "text": "prevented from complying with its legal , accounting, business or reporting obligation s if the Data Subject fails to provide certain Information when requested by IOCL . IOCL shall not be held liable in any manner whatsoever if IOCL is unable to perform its services or if there is a deficiency in IOCL’s services to the Data Subject due to Data Subject’s failure to provide such Information. IOCL and/or its Agents, employees, directors, associates, etc. shall be indemnified by the Data Subject and held harmless from any complaints, legal proceedings or claims filed or initiated by the Data Subject or any Third Party against IOCL in this regard. 9. CHANGE OF PURPOSE IOCL will only use Data Subject ’s Information for the purposes for which IOCL collected it, unless IOCL reasonably consider s that it need s to use it for another reason and that reason is compatible with the original purpose. 10. CONSENT Data Subject agrees that IOCL does not need any additional or further consent from him/her to use the Data Subject ’s Information in accordance with this Policy to carry out IOCL’s legal obligations or exercise specific rights. 11. INFORMATION SHARING AND DISCLOSURE IOCL may disclose the Information to any of its Agents or Third Parties insofar as reasonably necessary for the purposes set out in this Policy and for the purpose of providing services /products to the Data Subject . Such Agents and Third Parties are expected to provide a similar level of protection to the Information as is adhered to by"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_256_ov16",
+ "text": "expected to provide a similar level of protection to the Information as is adhered to by IOCL . In addition to this, IOCL may disclose the Information where it is required to do so by law or to Governmental Agencies. Indian Oil Corporation Limited 12. TRANSFER OF INFORMATION OUTSIDE INDIA Unless stated otherwise, IOCL store s and process es the Information in India. There may, however, be occasions when IOCL need s to transfer the Information outside India for its business requirements. In such instances, IOCL will exercise the same level of care in handling the Information as it does in India. 13. DATA SECURITY The Information is processed by IOCL in strict accordance with the Indian Information Technology Act, 2000, and the rules notified thereunder. IOCL implement s and maintain ‘Reasonable Security Practices and Procedures’ as stated in the Indian Information Technology Act, 2000 and the Informat ion Technology [Reasonable Security Practices and Procedures and Sensitive Personal Data or Information] Rules, 2011, while processing, collecting, storing or handling any Information. 14. DATA RETENTION IOCL will only retain the Information for as lon g as necessary to fulfil the purposes IOCL collected it for, including for the purposes of satisfying any legal, business, accounting, or reporting requirements. In some circumstances, IOCL may anonymise the Information so that it can no longer be associated with the Data Subject , in which case IOCL may use such information without a further reference to Data Subject . 15. WHO HANDLES AND RETAINS DATA SUBJECT ’S INFORMATION Details about the"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_256_ov16",
+ "text": "to Data Subject . 15. WHO HANDLES AND RETAINS DATA SUBJECT ’S INFORMATION Details about the primary entity which handles and retains the Information is provided below: Indian Oil Corporation Limited having its registered office at: IndianOil Bhavan G-9, Ali Yavar Jung Marg Bandra [East] Mumbai – 400051 India 16. REVIEW OF INFORMATION Data Subject can contact IOCL, through the Grievance Officer whose details are provided at the end of the Policy, requesting access to Data Subject ’s Information for reviewing or requesting amendment to certain information that Data Subject considers to be incorrect or wrong. IOCL shall process such requests from Data Subject in accordance with applicable law. IOCL shall not be responsible for the authenticity of the Information provided by the Data Subject to IOCL or its Agents. Indian Oil Corporation Limited 17. WITHDRAWAL OF CONSENT Data Subject may at any time revoke or withdraw Data Subject’s consent to provide Information to IOCL by contacting the Grievance Officer whose details are provided at the end of the Policy. However, such action may render it difficult for IOCL to offer some of its services /products to the Data Subject any further. IOCL shall not be held liable in any manner whatsoever if IOCL is unable to perform its services or if there is a deficiency in its services to Data Subject due to Data Subject’s withdrawal of consent. IOCL and/or its Agents, employees, directors, associates , etc. shall be indemnified by the Data Subject and held harmless from any complaints, legal proceedings or claims filed"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_256_ov16",
+ "text": "indemnified by the Data Subject and held harmless from any complaints, legal proceedings or claims filed or initiated by the Data Subject or any Third Party against IOCL in this regard. 18. CHANGES TO THIS PRIVACY POLICY The Policy is subject to modification s from time to time. If IOCL decide s to change this Policy, IOCL shall publish the modified Policy on its website. 19. GRIEVANCE OFFICER In accordance with the Indian Information Technology Act 2000 and the rules notified thereund er, the contact details of the Grievance Officer are provided below: Sh. Abhinav Bhatt , Corporate Business Technology Centre, Indian Oil Institute of Petroleum Management Campus, Plot No. 83, Institutional Area, Sector 18, Gurugram, Haryana – 122001 Email: data -grievance@indianoil.in Phone : 0124 -2861509"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_256_ov16",
+ "text": "Privacy Policy This document is the sole property of HDFC Capital Advisors Limited and is to be used strictly for Internal Consumption only. HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 2 of 4 Privacy Policy 1. Objective The purpose of this Privacy P olicy (“Policy ”) is to maintain the privacy of and protect the personal information of employees, contractors, outsourced workforce, vendors, interns, associates, customers , Corporate Social Responsibility (CSR) partners and business partners of HDFC Capital Advisors Limited (“ Company ”) and ensure compliance with the Information Technology Act, 2000 (“ Act”) and the Information Technology (Reasonable security practices and procedures and sensitive personal data or information) Rules, 2011 (“ Rules ”). This Policy must be read in conjunction with the Act and the Rules, as may be amended from time to time. 2. Applicability This Policy is applicable to the Company and the Third Party (“as defined in Section 3 of the Policy”) who may receive , collect, possess, stores, deals or handle Personal information (PI)/ Sensitive personal data or information (SPDI), on behalf of the Company . Any such Third Party is expected to have read, understood and comply with this Policy. The Company will use its best endeavors to ensure that such Third Party have read and understood the terms of this Policy and preferably having entered into a confidentiality agreement. 3. Key Definitions (a) “Data subject ” is one who is the subject of personal and sensitive personal data . It may include, but is"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_256_ov16",
+ "text": "who is the subject of personal and sensitive personal data . It may include, but is not limited to, the employees, contractors, outsourced workforce, vendors, interns, associates, customers, Corporate Social Responsibility (CSR) partners and business partners of the Company. (b) \"Personal information (PI) \" means any information that relates to a natural person, which, either directly or indirectly, in combination with other information available or likely to be available with a body corporate, is capable of identifying such person . (c) “Sensitive personal data or information (SPDI) ” of a person means such personal information which consists of information relating to. i. password . ii. financial information such as Bank account or credit card or debit card or other payment instrument details . iii. physical, physiological , and mental health condition . iv. sexual orientation . v. medical records and history . vi. Biometric information . vii. any detail relating to the above clauses as provided to body corporate for providing service; and viii. any of the information received under above clauses by body corporate for processing, stored or processed under lawful contract or otherwise: HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 3 of 4 provided that, any information that is freely available or accessible in public domain or furnished under the Right to Information Act, 2005 or any other law for the time being in force shall not be regarded as sensitive personal data or information for th e purposes of these rules. (d) “Third Party ” means all external"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_256_ov16",
+ "text": "or information for th e purposes of these rules. (d) “Third Party ” means all external parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy describes generally acceptable privacy principles for the protection and appropriate use of personal information and SPDI at the Company . 4.1. Consent The Company shall obtain consent from the Data subject before collecting, receiving, possessing, storing, dealing or handling personal information or SPDI of the provider of such information. No PI/SPDI shall be used by the Company without the consent of the provider of the information . The consent shall be obtained (in writing or electronically) from the Data subjects before or at the time of collecting PI or SPDI . The Data subject shall be provided with a choice to opt out and withdraw any consent previously given by way of written communication to the Company . 4.2. Collection of Personal Information a) The Company shall not collect PI or Sensitive personal data or information (SPDI) unless : (i) the information is collected for a lawful purpose connected with a function or activity of the Company or any person on its behalf; and ( ii) the collection of the PI / SPDI is considered necessary for that purpose . b) While collecting PI/ SPDI directly from the person concerned, the Company or any person on its behalf s hall take such steps as are, in the circumstances, reasonable to"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_256_ov16",
+ "text": "person on its behalf s hall take such steps as are, in the circumstances, reasonable to ensure that the person concerned is having the knowledge of : (i) the fact that the information is being collected; ( ii) the purpose for which the information is being collected; ( iii) the intended recipients of the information; ( iv) the name and address of the agency that is collecting the information; and (v) the agency that will retain the information. c) The Company or any person on its behalf holding PI/ SPDI shall not retain that information for longer than is required for the purposes for which the information may lawfully be used or is otherwise required under any other law for the time being in force. d) The PI/SPDI collected shall be used for the purpose for which it has been collected. e) The Company shall address any discrepancies and grievances of the provider of the PI/ SPDI in a time bound manner. For this purpose, the Company shall designate a Grievance Officer and publish his name and contact details on its website . The Grievance Officer shall use best endeavors to redress the grievances o f the provider of information expeditiously within one month from the date of receipt of grievance . 4.3. Disclosure of Information a) Disclosure of PI/ SPDI by the Company to any Third Party shall require prior permission from the provider of such information, who has provided such information under lawful HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_256_ov16",
+ "text": "provided such information under lawful HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 4 of 4 contract or otherwise, unless such disclosure has been agreed to in the contract between the Company and the provider of information, or where the disclosure is necessary for compliance of a legal /regulatory obligation ; Provided that the information shall be shared by the Company , without obtaining prior consent from the provider of information, with Government agencies mandated under the law to obtain information including sensitive personal data or information for the purpose of verification of identity, or for prevention, detection, investigation including cyber inciden ts, prosecution, and punishment of offences. The Company will use best endeavors to ensure that t he Government agency send s a request in writing to the Company possessing the sensitive personal data or information stating clearly the purpose of seeking such information and stating that the information so obtained shall not be published or shared with any other person. b) The Company shall disclose any PI/ SPDI to any Third Party by an order under the law for the time being in force. c) The Company or any person on its behalf shall not publish the PI/ SPDI . d) The Company shall use its best endeavors (including by way of execution of appropriate non-disclosure agreements) to ensure that t he Third Party receiving the PI/ SPDI from the Company or any person on its behalf shall not disclose it further . 4.4. Reasonable Security Practices and Procedures The"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_256_ov16",
+ "text": "on its behalf shall not disclose it further . 4.4. Reasonable Security Practices and Procedures The Company endeavors to have in place reasonable security practices and procedures in place to protect the PI/SPDI of the provider of information."
+ }
+]
\ No newline at end of file
diff --git a/out/chunks_simple_256_ov8.json b/out/chunks_simple_256_ov8.json
new file mode 100644
index 0000000..ee57136
--- /dev/null
+++ b/out/chunks_simple_256_ov8.json
@@ -0,0 +1,67 @@
+[
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_256_ov8",
+ "text": "Indian Oil Corporation Limited DATA PRIVACY POLICY Indian Oil Corporation Limited DATA PRIVACY POLICY 1. INTRODUCTION Indian Oil Corporation Limited is a company incorporated under the laws of India, having its registered office at IndianOil Bhavan, G -9, Ali Yavar Jung Marg, Bandra [East], Mumbai – 400051, India [Hereinafter referred to as “We” or “Us” or “Company” or “ IOCL ”]. In accordance with all applicable laws, IOCL has created this Privacy Policy [Hereinafter referred to as “Privacy Policy” or “Policy” or “Privacy Statement” ] in order to demonstrate IOCL’s privacy commitment to any individual whose data IOCL collect s, stor es or process es for providing or offering its services and products. 2. DEFINITIONS Agent : Any individual or entity which has a contractual relationship with IOCL, where IOCL is the principal and the other individual or entity is the agent, shall hereinafter be referred to as an \"Agent\" . For instance, IOCL’s distributors, dealers, CFA, contractors, etc. shall be considered Agents. Data Subject: All individuals whose personal information is either collected, received, processed, stored, dealt or handled by IOCL shall hereinafter be referred to as “Data Subject”. Information: Personal Information of a Data Subject collected by IOCL under this Policy shall hereinafter be referred to as “Information”. Such Information includes, interalia, Sensitive Personal Data or Information as defined under the Indian Information Technology Act, 2000 and the Aadhaar number and/or the biometric information associated with an Aadhaar number . Third -Party: Any individual or entity over which IOCL does not have any control or"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_256_ov8",
+ "text": "which IOCL does not have any control or ownership, and which operates independently on its own is hereinafter referred to as a \"Third Party\". 3. GOVERNING LAW IOCL is an organisation based and existing in India and is thus bound by the laws of the Republic of India. This Privacy Policy has been prepared in accordance with applicable Indian laws, including the Indian Information Technology Act, 2000 and the Aadhaar [Targeted Delivery of Financial and other Subsidies, Benefits and Services ] Act, 2016 . 4. APPLICABILITY This Policy appli es to all individuals whose I nformation is either collected, received, processed, stored, dealt or handled by IOCL . Indian Oil Corporation Limited 5. OBJECTIVE This Privacy Policy is intended to inform the Data Subject on how IOCL collects, processes, stores , and use s personal information that a Data Subject provides to IOCL either directly or indirectly . This Privacy Policy also covers IOCL’s treatment of any personal information that Third Parties share with IOCL . 6. HOW IOCL COLLECT S DATA SUBJECT ’S INFORMATION IOCL collect s Information about Data Subject through the following means: (a) whenever a Data Subject shows an interest or elects to use IOCL’s services or products, including information about IOCL schemes, irrespective of whether such services /products are prov ided directly by IOCL or by its Agents on IOCL’s behalf ; (b) through IOCL’s network of Agents and a Third Party which collects such Information and transfers it to IOCL for a business requirement ; (c) when Data Subject downloads"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_256_ov8",
+ "text": "business requirement ; (c) when Data Subject downloads IOCL’s mobile applications or visits any of the websites owned by IOCL and/or creates an account on the mobile applications or the website s. (d) when Data Subject, which also includes employees of IOCL, directly elects to share their Information with IOCL. 7. WHY IOCL COLLECT S DATA SUBJECT ’S INFORMATION [PURPOSE] IOCL uses the Information to conduct its business and to provide Data Subject with the best possible services /products. IOCL will only use the Information based on this Privacy Policy, its understanding with the Data Subject , or as required by law. IOCL will collect adequate, relevant and necessary Information and will process such Information fairly and lawfully for the purpose it is collected . Most comm only, IOCL will use the Information in the following circumstances: (a) Where IOCL need s to perform the obligations it has promised the Data Subject , such as to provide a service or product to the Data Subject and to enable the Data Subject’s use of IOCL ’s products/ services , including but not limited to deal ing with enquiries and complaints made by or about the Data Subject relating to services/products provided by IOCL and to improve and customise IOCL’s services/products in accordance with the Data Subject’s preferences ; (b) Where IOCL need s to comply with a legal , accounting, business or reporting obligation , including compliance with requests from the Government of India or any Governmental Agency ; (c) To send marketing as well as non-marketing"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_256_ov8",
+ "text": "(c) To send marketing as well as non-marketing commercial communications to the Data Subject ; (d) To send the Data Subject notifications that the Data Subject has specifically requested for as well as to send statements, invoices and payment reminders to the Data Subject , and to collect payments from the Data Subject ; (e) To provide Third Parties with statistical information about its customers but those Third Parties will not be able to identify any individu al from that information; (f) To keep IOCL’s website, mobile application s and other systems secure and to prevent fraud; Indian Oil Corporation Limited (g) To promote the mission and objectives of Skill Development in India and/or to provide and disseminate information about relevant programm es under the Skill Development Mission. (h) To manage the employment of the data subject with IOCL. IOCL collects and processes the Information only when it is essential to offer its services/products to the Data Subject. By providing his or her Information , the Data Subject agrees that IOCL may collect, use and share this Information with Third Parties for the purpose s mentioned above from 7[a] to 7[h]. 8. FAILURE TO PROVIDE INFORMATION IOCL may not be able to perform the obligations it has promised the Data Subject , or IOCL may be prevented from complying with its legal , accounting, business or reporting obligation s if the Data Subject fails to provide certain Information when requested by IOCL . IOCL shall not be held liable in any manner whatsoever if IOCL is"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_256_ov8",
+ "text": "liable in any manner whatsoever if IOCL is unable to perform its services or if there is a deficiency in IOCL’s services to the Data Subject due to Data Subject’s failure to provide such Information. IOCL and/or its Agents, employees, directors, associates, etc. shall be indemnified by the Data Subject and held harmless from any complaints, legal proceedings or claims filed or initiated by the Data Subject or any Third Party against IOCL in this regard. 9. CHANGE OF PURPOSE IOCL will only use Data Subject ’s Information for the purposes for which IOCL collected it, unless IOCL reasonably consider s that it need s to use it for another reason and that reason is compatible with the original purpose. 10. CONSENT Data Subject agrees that IOCL does not need any additional or further consent from him/her to use the Data Subject ’s Information in accordance with this Policy to carry out IOCL’s legal obligations or exercise specific rights. 11. INFORMATION SHARING AND DISCLOSURE IOCL may disclose the Information to any of its Agents or Third Parties insofar as reasonably necessary for the purposes set out in this Policy and for the purpose of providing services /products to the Data Subject . Such Agents and Third Parties are expected to provide a similar level of protection to the Information as is adhered to by IOCL . In addition to this, IOCL may disclose the Information where it is required to do so by law or to Governmental Agencies. Indian Oil Corporation Limited 12. TRANSFER OF INFORMATION"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_256_ov8",
+ "text": "Indian Oil Corporation Limited 12. TRANSFER OF INFORMATION OUTSIDE INDIA Unless stated otherwise, IOCL store s and process es the Information in India. There may, however, be occasions when IOCL need s to transfer the Information outside India for its business requirements. In such instances, IOCL will exercise the same level of care in handling the Information as it does in India. 13. DATA SECURITY The Information is processed by IOCL in strict accordance with the Indian Information Technology Act, 2000, and the rules notified thereunder. IOCL implement s and maintain ‘Reasonable Security Practices and Procedures’ as stated in the Indian Information Technology Act, 2000 and the Informat ion Technology [Reasonable Security Practices and Procedures and Sensitive Personal Data or Information] Rules, 2011, while processing, collecting, storing or handling any Information. 14. DATA RETENTION IOCL will only retain the Information for as lon g as necessary to fulfil the purposes IOCL collected it for, including for the purposes of satisfying any legal, business, accounting, or reporting requirements. In some circumstances, IOCL may anonymise the Information so that it can no longer be associated with the Data Subject , in which case IOCL may use such information without a further reference to Data Subject . 15. WHO HANDLES AND RETAINS DATA SUBJECT ’S INFORMATION Details about the primary entity which handles and retains the Information is provided below: Indian Oil Corporation Limited having its registered office at: IndianOil Bhavan G-9, Ali Yavar Jung Marg Bandra [East] Mumbai – 400051 India 16. REVIEW OF INFORMATION Data Subject can"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_256_ov8",
+ "text": "India 16. REVIEW OF INFORMATION Data Subject can contact IOCL, through the Grievance Officer whose details are provided at the end of the Policy, requesting access to Data Subject ’s Information for reviewing or requesting amendment to certain information that Data Subject considers to be incorrect or wrong. IOCL shall process such requests from Data Subject in accordance with applicable law. IOCL shall not be responsible for the authenticity of the Information provided by the Data Subject to IOCL or its Agents. Indian Oil Corporation Limited 17. WITHDRAWAL OF CONSENT Data Subject may at any time revoke or withdraw Data Subject’s consent to provide Information to IOCL by contacting the Grievance Officer whose details are provided at the end of the Policy. However, such action may render it difficult for IOCL to offer some of its services /products to the Data Subject any further. IOCL shall not be held liable in any manner whatsoever if IOCL is unable to perform its services or if there is a deficiency in its services to Data Subject due to Data Subject’s withdrawal of consent. IOCL and/or its Agents, employees, directors, associates , etc. shall be indemnified by the Data Subject and held harmless from any complaints, legal proceedings or claims filed or initiated by the Data Subject or any Third Party against IOCL in this regard. 18. CHANGES TO THIS PRIVACY POLICY The Policy is subject to modification s from time to time. If IOCL decide s to change this Policy, IOCL shall publish the modified Policy on its"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_256_ov8",
+ "text": "IOCL shall publish the modified Policy on its website. 19. GRIEVANCE OFFICER In accordance with the Indian Information Technology Act 2000 and the rules notified thereund er, the contact details of the Grievance Officer are provided below: Sh. Abhinav Bhatt , Corporate Business Technology Centre, Indian Oil Institute of Petroleum Management Campus, Plot No. 83, Institutional Area, Sector 18, Gurugram, Haryana – 122001 Email: data -grievance@indianoil.in Phone : 0124 -2861509"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_256_ov8",
+ "text": "Privacy Policy This document is the sole property of HDFC Capital Advisors Limited and is to be used strictly for Internal Consumption only. HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 2 of 4 Privacy Policy 1. Objective The purpose of this Privacy P olicy (“Policy ”) is to maintain the privacy of and protect the personal information of employees, contractors, outsourced workforce, vendors, interns, associates, customers , Corporate Social Responsibility (CSR) partners and business partners of HDFC Capital Advisors Limited (“ Company ”) and ensure compliance with the Information Technology Act, 2000 (“ Act”) and the Information Technology (Reasonable security practices and procedures and sensitive personal data or information) Rules, 2011 (“ Rules ”). This Policy must be read in conjunction with the Act and the Rules, as may be amended from time to time. 2. Applicability This Policy is applicable to the Company and the Third Party (“as defined in Section 3 of the Policy”) who may receive , collect, possess, stores, deals or handle Personal information (PI)/ Sensitive personal data or information (SPDI), on behalf of the Company . Any such Third Party is expected to have read, understood and comply with this Policy. The Company will use its best endeavors to ensure that such Third Party have read and understood the terms of this Policy and preferably having entered into a confidentiality agreement. 3. Key Definitions (a) “Data subject ” is one who is the subject of personal and sensitive personal data . It may include, but is"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_256_ov8",
+ "text": "personal data . It may include, but is not limited to, the employees, contractors, outsourced workforce, vendors, interns, associates, customers, Corporate Social Responsibility (CSR) partners and business partners of the Company. (b) \"Personal information (PI) \" means any information that relates to a natural person, which, either directly or indirectly, in combination with other information available or likely to be available with a body corporate, is capable of identifying such person . (c) “Sensitive personal data or information (SPDI) ” of a person means such personal information which consists of information relating to. i. password . ii. financial information such as Bank account or credit card or debit card or other payment instrument details . iii. physical, physiological , and mental health condition . iv. sexual orientation . v. medical records and history . vi. Biometric information . vii. any detail relating to the above clauses as provided to body corporate for providing service; and viii. any of the information received under above clauses by body corporate for processing, stored or processed under lawful contract or otherwise: HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 3 of 4 provided that, any information that is freely available or accessible in public domain or furnished under the Right to Information Act, 2005 or any other law for the time being in force shall not be regarded as sensitive personal data or information for th e purposes of these rules. (d) “Third Party ” means all external parties such as contractors, outsourced workforce, interns, summer"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_256_ov8",
+ "text": "parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy describes generally acceptable privacy principles for the protection and appropriate use of personal information and SPDI at the Company . 4.1. Consent The Company shall obtain consent from the Data subject before collecting, receiving, possessing, storing, dealing or handling personal information or SPDI of the provider of such information. No PI/SPDI shall be used by the Company without the consent of the provider of the information . The consent shall be obtained (in writing or electronically) from the Data subjects before or at the time of collecting PI or SPDI . The Data subject shall be provided with a choice to opt out and withdraw any consent previously given by way of written communication to the Company . 4.2. Collection of Personal Information a) The Company shall not collect PI or Sensitive personal data or information (SPDI) unless : (i) the information is collected for a lawful purpose connected with a function or activity of the Company or any person on its behalf; and ( ii) the collection of the PI / SPDI is considered necessary for that purpose . b) While collecting PI/ SPDI directly from the person concerned, the Company or any person on its behalf s hall take such steps as are, in the circumstances, reasonable to ensure that the person concerned is having the knowledge of : (i) the fact that the"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_256_ov8",
+ "text": "knowledge of : (i) the fact that the information is being collected; ( ii) the purpose for which the information is being collected; ( iii) the intended recipients of the information; ( iv) the name and address of the agency that is collecting the information; and (v) the agency that will retain the information. c) The Company or any person on its behalf holding PI/ SPDI shall not retain that information for longer than is required for the purposes for which the information may lawfully be used or is otherwise required under any other law for the time being in force. d) The PI/SPDI collected shall be used for the purpose for which it has been collected. e) The Company shall address any discrepancies and grievances of the provider of the PI/ SPDI in a time bound manner. For this purpose, the Company shall designate a Grievance Officer and publish his name and contact details on its website . The Grievance Officer shall use best endeavors to redress the grievances o f the provider of information expeditiously within one month from the date of receipt of grievance . 4.3. Disclosure of Information a) Disclosure of PI/ SPDI by the Company to any Third Party shall require prior permission from the provider of such information, who has provided such information under lawful HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 4 of 4 contract or otherwise, unless such disclosure has been agreed to in the contract between the Company and the provider of"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_256_ov8",
+ "text": "contract between the Company and the provider of information, or where the disclosure is necessary for compliance of a legal /regulatory obligation ; Provided that the information shall be shared by the Company , without obtaining prior consent from the provider of information, with Government agencies mandated under the law to obtain information including sensitive personal data or information for the purpose of verification of identity, or for prevention, detection, investigation including cyber inciden ts, prosecution, and punishment of offences. The Company will use best endeavors to ensure that t he Government agency send s a request in writing to the Company possessing the sensitive personal data or information stating clearly the purpose of seeking such information and stating that the information so obtained shall not be published or shared with any other person. b) The Company shall disclose any PI/ SPDI to any Third Party by an order under the law for the time being in force. c) The Company or any person on its behalf shall not publish the PI/ SPDI . d) The Company shall use its best endeavors (including by way of execution of appropriate non-disclosure agreements) to ensure that t he Third Party receiving the PI/ SPDI from the Company or any person on its behalf shall not disclose it further . 4.4. Reasonable Security Practices and Procedures The Company endeavors to have in place reasonable security practices and procedures in place to protect the PI/SPDI of the provider of information."
+ }
+]
\ No newline at end of file
diff --git a/out/chunks_simple_512_ov16.json b/out/chunks_simple_512_ov16.json
new file mode 100644
index 0000000..b795176
--- /dev/null
+++ b/out/chunks_simple_512_ov16.json
@@ -0,0 +1,37 @@
+[
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_512_ov16",
+ "text": "Indian Oil Corporation Limited DATA PRIVACY POLICY Indian Oil Corporation Limited DATA PRIVACY POLICY 1. INTRODUCTION Indian Oil Corporation Limited is a company incorporated under the laws of India, having its registered office at IndianOil Bhavan, G -9, Ali Yavar Jung Marg, Bandra [East], Mumbai – 400051, India [Hereinafter referred to as “We” or “Us” or “Company” or “ IOCL ”]. In accordance with all applicable laws, IOCL has created this Privacy Policy [Hereinafter referred to as “Privacy Policy” or “Policy” or “Privacy Statement” ] in order to demonstrate IOCL’s privacy commitment to any individual whose data IOCL collect s, stor es or process es for providing or offering its services and products. 2. DEFINITIONS Agent : Any individual or entity which has a contractual relationship with IOCL, where IOCL is the principal and the other individual or entity is the agent, shall hereinafter be referred to as an \"Agent\" . For instance, IOCL’s distributors, dealers, CFA, contractors, etc. shall be considered Agents. Data Subject: All individuals whose personal information is either collected, received, processed, stored, dealt or handled by IOCL shall hereinafter be referred to as “Data Subject”. Information: Personal Information of a Data Subject collected by IOCL under this Policy shall hereinafter be referred to as “Information”. Such Information includes, interalia, Sensitive Personal Data or Information as defined under the Indian Information Technology Act, 2000 and the Aadhaar number and/or the biometric information associated with an Aadhaar number . Third -Party: Any individual or entity over which IOCL does not have any control or ownership, and which operates independently on its own is hereinafter referred to as a \"Third Party\". 3. GOVERNING LAW IOCL is an organisation based and existing in India and is thus bound by the laws of the Republic of India. This Privacy Policy has been prepared in accordance with applicable Indian laws, including the Indian Information Technology Act, 2000 and the Aadhaar [Targeted Delivery of Financial and other Subsidies, Benefits and Services ] Act, 2016 . 4. APPLICABILITY This Policy appli es to all individuals whose I nformation is either collected, received, processed, stored, dealt or handled by IOCL . Indian Oil Corporation Limited 5. OBJECTIVE This Privacy Policy is intended to inform the Data Subject on how IOCL collects, processes, stores , and use s personal information that a Data Subject provides to IOCL either directly or indirectly . This Privacy Policy also covers IOCL’s treatment of any personal information that Third Parties share with IOCL . 6. HOW IOCL COLLECT S DATA SUBJECT ’S INFORMATION IOCL collect s Information about Data Subject through the following means: (a) whenever a Data Subject shows an interest or elects to use IOCL’s services or products, including information about IOCL schemes, irrespective of whether such services /products are prov ided directly by IOCL or by its Agents on IOCL’s behalf ; (b) through IOCL’s network of Agents and a Third Party which collects such Information and transfers it to IOCL for a business requirement ; (c) when Data Subject downloads IOCL’s mobile applications or visits any of the"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_512_ov16",
+ "text": "business requirement ; (c) when Data Subject downloads IOCL’s mobile applications or visits any of the websites owned by IOCL and/or creates an account on the mobile applications or the website s. (d) when Data Subject, which also includes employees of IOCL, directly elects to share their Information with IOCL. 7. WHY IOCL COLLECT S DATA SUBJECT ’S INFORMATION [PURPOSE] IOCL uses the Information to conduct its business and to provide Data Subject with the best possible services /products. IOCL will only use the Information based on this Privacy Policy, its understanding with the Data Subject , or as required by law. IOCL will collect adequate, relevant and necessary Information and will process such Information fairly and lawfully for the purpose it is collected . Most comm only, IOCL will use the Information in the following circumstances: (a) Where IOCL need s to perform the obligations it has promised the Data Subject , such as to provide a service or product to the Data Subject and to enable the Data Subject’s use of IOCL ’s products/ services , including but not limited to deal ing with enquiries and complaints made by or about the Data Subject relating to services/products provided by IOCL and to improve and customise IOCL’s services/products in accordance with the Data Subject’s preferences ; (b) Where IOCL need s to comply with a legal , accounting, business or reporting obligation , including compliance with requests from the Government of India or any Governmental Agency ; (c) To send marketing as well as non-marketing commercial communications to the Data Subject ; (d) To send the Data Subject notifications that the Data Subject has specifically requested for as well as to send statements, invoices and payment reminders to the Data Subject , and to collect payments from the Data Subject ; (e) To provide Third Parties with statistical information about its customers but those Third Parties will not be able to identify any individu al from that information; (f) To keep IOCL’s website, mobile application s and other systems secure and to prevent fraud; Indian Oil Corporation Limited (g) To promote the mission and objectives of Skill Development in India and/or to provide and disseminate information about relevant programm es under the Skill Development Mission. (h) To manage the employment of the data subject with IOCL. IOCL collects and processes the Information only when it is essential to offer its services/products to the Data Subject. By providing his or her Information , the Data Subject agrees that IOCL may collect, use and share this Information with Third Parties for the purpose s mentioned above from 7[a] to 7[h]. 8. FAILURE TO PROVIDE INFORMATION IOCL may not be able to perform the obligations it has promised the Data Subject , or IOCL may be prevented from complying with its legal , accounting, business or reporting obligation s if the Data Subject fails to provide certain Information when requested by IOCL . IOCL shall not be held liable in any manner whatsoever if IOCL is unable to perform its services or if there"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_512_ov16",
+ "text": "liable in any manner whatsoever if IOCL is unable to perform its services or if there is a deficiency in IOCL’s services to the Data Subject due to Data Subject’s failure to provide such Information. IOCL and/or its Agents, employees, directors, associates, etc. shall be indemnified by the Data Subject and held harmless from any complaints, legal proceedings or claims filed or initiated by the Data Subject or any Third Party against IOCL in this regard. 9. CHANGE OF PURPOSE IOCL will only use Data Subject ’s Information for the purposes for which IOCL collected it, unless IOCL reasonably consider s that it need s to use it for another reason and that reason is compatible with the original purpose. 10. CONSENT Data Subject agrees that IOCL does not need any additional or further consent from him/her to use the Data Subject ’s Information in accordance with this Policy to carry out IOCL’s legal obligations or exercise specific rights. 11. INFORMATION SHARING AND DISCLOSURE IOCL may disclose the Information to any of its Agents or Third Parties insofar as reasonably necessary for the purposes set out in this Policy and for the purpose of providing services /products to the Data Subject . Such Agents and Third Parties are expected to provide a similar level of protection to the Information as is adhered to by IOCL . In addition to this, IOCL may disclose the Information where it is required to do so by law or to Governmental Agencies. Indian Oil Corporation Limited 12. TRANSFER OF INFORMATION OUTSIDE INDIA Unless stated otherwise, IOCL store s and process es the Information in India. There may, however, be occasions when IOCL need s to transfer the Information outside India for its business requirements. In such instances, IOCL will exercise the same level of care in handling the Information as it does in India. 13. DATA SECURITY The Information is processed by IOCL in strict accordance with the Indian Information Technology Act, 2000, and the rules notified thereunder. IOCL implement s and maintain ‘Reasonable Security Practices and Procedures’ as stated in the Indian Information Technology Act, 2000 and the Informat ion Technology [Reasonable Security Practices and Procedures and Sensitive Personal Data or Information] Rules, 2011, while processing, collecting, storing or handling any Information. 14. DATA RETENTION IOCL will only retain the Information for as lon g as necessary to fulfil the purposes IOCL collected it for, including for the purposes of satisfying any legal, business, accounting, or reporting requirements. In some circumstances, IOCL may anonymise the Information so that it can no longer be associated with the Data Subject , in which case IOCL may use such information without a further reference to Data Subject . 15. WHO HANDLES AND RETAINS DATA SUBJECT ’S INFORMATION Details about the primary entity which handles and retains the Information is provided below: Indian Oil Corporation Limited having its registered office at: IndianOil Bhavan G-9, Ali Yavar Jung Marg Bandra [East] Mumbai – 400051 India 16. REVIEW OF INFORMATION Data Subject can contact IOCL, through the Grievance Officer whose details"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_512_ov16",
+ "text": "India 16. REVIEW OF INFORMATION Data Subject can contact IOCL, through the Grievance Officer whose details are provided at the end of the Policy, requesting access to Data Subject ’s Information for reviewing or requesting amendment to certain information that Data Subject considers to be incorrect or wrong. IOCL shall process such requests from Data Subject in accordance with applicable law. IOCL shall not be responsible for the authenticity of the Information provided by the Data Subject to IOCL or its Agents. Indian Oil Corporation Limited 17. WITHDRAWAL OF CONSENT Data Subject may at any time revoke or withdraw Data Subject’s consent to provide Information to IOCL by contacting the Grievance Officer whose details are provided at the end of the Policy. However, such action may render it difficult for IOCL to offer some of its services /products to the Data Subject any further. IOCL shall not be held liable in any manner whatsoever if IOCL is unable to perform its services or if there is a deficiency in its services to Data Subject due to Data Subject’s withdrawal of consent. IOCL and/or its Agents, employees, directors, associates , etc. shall be indemnified by the Data Subject and held harmless from any complaints, legal proceedings or claims filed or initiated by the Data Subject or any Third Party against IOCL in this regard. 18. CHANGES TO THIS PRIVACY POLICY The Policy is subject to modification s from time to time. If IOCL decide s to change this Policy, IOCL shall publish the modified Policy on its website. 19. GRIEVANCE OFFICER In accordance with the Indian Information Technology Act 2000 and the rules notified thereund er, the contact details of the Grievance Officer are provided below: Sh. Abhinav Bhatt , Corporate Business Technology Centre, Indian Oil Institute of Petroleum Management Campus, Plot No. 83, Institutional Area, Sector 18, Gurugram, Haryana – 122001 Email: data -grievance@indianoil.in Phone : 0124 -2861509"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_512_ov16",
+ "text": "Privacy Policy This document is the sole property of HDFC Capital Advisors Limited and is to be used strictly for Internal Consumption only. HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 2 of 4 Privacy Policy 1. Objective The purpose of this Privacy P olicy (“Policy ”) is to maintain the privacy of and protect the personal information of employees, contractors, outsourced workforce, vendors, interns, associates, customers , Corporate Social Responsibility (CSR) partners and business partners of HDFC Capital Advisors Limited (“ Company ”) and ensure compliance with the Information Technology Act, 2000 (“ Act”) and the Information Technology (Reasonable security practices and procedures and sensitive personal data or information) Rules, 2011 (“ Rules ”). This Policy must be read in conjunction with the Act and the Rules, as may be amended from time to time. 2. Applicability This Policy is applicable to the Company and the Third Party (“as defined in Section 3 of the Policy”) who may receive , collect, possess, stores, deals or handle Personal information (PI)/ Sensitive personal data or information (SPDI), on behalf of the Company . Any such Third Party is expected to have read, understood and comply with this Policy. The Company will use its best endeavors to ensure that such Third Party have read and understood the terms of this Policy and preferably having entered into a confidentiality agreement. 3. Key Definitions (a) “Data subject ” is one who is the subject of personal and sensitive personal data . It may include, but is not limited to, the employees, contractors, outsourced workforce, vendors, interns, associates, customers, Corporate Social Responsibility (CSR) partners and business partners of the Company. (b) \"Personal information (PI) \" means any information that relates to a natural person, which, either directly or indirectly, in combination with other information available or likely to be available with a body corporate, is capable of identifying such person . (c) “Sensitive personal data or information (SPDI) ” of a person means such personal information which consists of information relating to. i. password . ii. financial information such as Bank account or credit card or debit card or other payment instrument details . iii. physical, physiological , and mental health condition . iv. sexual orientation . v. medical records and history . vi. Biometric information . vii. any detail relating to the above clauses as provided to body corporate for providing service; and viii. any of the information received under above clauses by body corporate for processing, stored or processed under lawful contract or otherwise: HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 3 of 4 provided that, any information that is freely available or accessible in public domain or furnished under the Right to Information Act, 2005 or any other law for the time being in force shall not be regarded as sensitive personal data or information for th e purposes of these rules. (d) “Third Party ” means all external parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_512_ov16",
+ "text": "parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy describes generally acceptable privacy principles for the protection and appropriate use of personal information and SPDI at the Company . 4.1. Consent The Company shall obtain consent from the Data subject before collecting, receiving, possessing, storing, dealing or handling personal information or SPDI of the provider of such information. No PI/SPDI shall be used by the Company without the consent of the provider of the information . The consent shall be obtained (in writing or electronically) from the Data subjects before or at the time of collecting PI or SPDI . The Data subject shall be provided with a choice to opt out and withdraw any consent previously given by way of written communication to the Company . 4.2. Collection of Personal Information a) The Company shall not collect PI or Sensitive personal data or information (SPDI) unless : (i) the information is collected for a lawful purpose connected with a function or activity of the Company or any person on its behalf; and ( ii) the collection of the PI / SPDI is considered necessary for that purpose . b) While collecting PI/ SPDI directly from the person concerned, the Company or any person on its behalf s hall take such steps as are, in the circumstances, reasonable to ensure that the person concerned is having the knowledge of : (i) the fact that the information is being collected; ( ii) the purpose for which the information is being collected; ( iii) the intended recipients of the information; ( iv) the name and address of the agency that is collecting the information; and (v) the agency that will retain the information. c) The Company or any person on its behalf holding PI/ SPDI shall not retain that information for longer than is required for the purposes for which the information may lawfully be used or is otherwise required under any other law for the time being in force. d) The PI/SPDI collected shall be used for the purpose for which it has been collected. e) The Company shall address any discrepancies and grievances of the provider of the PI/ SPDI in a time bound manner. For this purpose, the Company shall designate a Grievance Officer and publish his name and contact details on its website . The Grievance Officer shall use best endeavors to redress the grievances o f the provider of information expeditiously within one month from the date of receipt of grievance . 4.3. Disclosure of Information a) Disclosure of PI/ SPDI by the Company to any Third Party shall require prior permission from the provider of such information, who has provided such information under lawful HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 4 of 4 contract or otherwise, unless such disclosure has been agreed to in the contract between the Company and the provider of information, or where the disclosure is necessary for"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_512_ov16",
+ "text": "contract between the Company and the provider of information, or where the disclosure is necessary for compliance of a legal /regulatory obligation ; Provided that the information shall be shared by the Company , without obtaining prior consent from the provider of information, with Government agencies mandated under the law to obtain information including sensitive personal data or information for the purpose of verification of identity, or for prevention, detection, investigation including cyber inciden ts, prosecution, and punishment of offences. The Company will use best endeavors to ensure that t he Government agency send s a request in writing to the Company possessing the sensitive personal data or information stating clearly the purpose of seeking such information and stating that the information so obtained shall not be published or shared with any other person. b) The Company shall disclose any PI/ SPDI to any Third Party by an order under the law for the time being in force. c) The Company or any person on its behalf shall not publish the PI/ SPDI . d) The Company shall use its best endeavors (including by way of execution of appropriate non-disclosure agreements) to ensure that t he Third Party receiving the PI/ SPDI from the Company or any person on its behalf shall not disclose it further . 4.4. Reasonable Security Practices and Procedures The Company endeavors to have in place reasonable security practices and procedures in place to protect the PI/SPDI of the provider of information."
+ }
+]
\ No newline at end of file
diff --git a/out/chunks_simple_512_ov8.json b/out/chunks_simple_512_ov8.json
new file mode 100644
index 0000000..27c4ff2
--- /dev/null
+++ b/out/chunks_simple_512_ov8.json
@@ -0,0 +1,37 @@
+[
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_512_ov8",
+ "text": "Indian Oil Corporation Limited DATA PRIVACY POLICY Indian Oil Corporation Limited DATA PRIVACY POLICY 1. INTRODUCTION Indian Oil Corporation Limited is a company incorporated under the laws of India, having its registered office at IndianOil Bhavan, G -9, Ali Yavar Jung Marg, Bandra [East], Mumbai – 400051, India [Hereinafter referred to as “We” or “Us” or “Company” or “ IOCL ”]. In accordance with all applicable laws, IOCL has created this Privacy Policy [Hereinafter referred to as “Privacy Policy” or “Policy” or “Privacy Statement” ] in order to demonstrate IOCL’s privacy commitment to any individual whose data IOCL collect s, stor es or process es for providing or offering its services and products. 2. DEFINITIONS Agent : Any individual or entity which has a contractual relationship with IOCL, where IOCL is the principal and the other individual or entity is the agent, shall hereinafter be referred to as an \"Agent\" . For instance, IOCL’s distributors, dealers, CFA, contractors, etc. shall be considered Agents. Data Subject: All individuals whose personal information is either collected, received, processed, stored, dealt or handled by IOCL shall hereinafter be referred to as “Data Subject”. Information: Personal Information of a Data Subject collected by IOCL under this Policy shall hereinafter be referred to as “Information”. Such Information includes, interalia, Sensitive Personal Data or Information as defined under the Indian Information Technology Act, 2000 and the Aadhaar number and/or the biometric information associated with an Aadhaar number . Third -Party: Any individual or entity over which IOCL does not have any control or ownership, and which operates independently on its own is hereinafter referred to as a \"Third Party\". 3. GOVERNING LAW IOCL is an organisation based and existing in India and is thus bound by the laws of the Republic of India. This Privacy Policy has been prepared in accordance with applicable Indian laws, including the Indian Information Technology Act, 2000 and the Aadhaar [Targeted Delivery of Financial and other Subsidies, Benefits and Services ] Act, 2016 . 4. APPLICABILITY This Policy appli es to all individuals whose I nformation is either collected, received, processed, stored, dealt or handled by IOCL . Indian Oil Corporation Limited 5. OBJECTIVE This Privacy Policy is intended to inform the Data Subject on how IOCL collects, processes, stores , and use s personal information that a Data Subject provides to IOCL either directly or indirectly . This Privacy Policy also covers IOCL’s treatment of any personal information that Third Parties share with IOCL . 6. HOW IOCL COLLECT S DATA SUBJECT ’S INFORMATION IOCL collect s Information about Data Subject through the following means: (a) whenever a Data Subject shows an interest or elects to use IOCL’s services or products, including information about IOCL schemes, irrespective of whether such services /products are prov ided directly by IOCL or by its Agents on IOCL’s behalf ; (b) through IOCL’s network of Agents and a Third Party which collects such Information and transfers it to IOCL for a business requirement ; (c) when Data Subject downloads IOCL’s mobile applications or visits any of the"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_512_ov8",
+ "text": "IOCL’s mobile applications or visits any of the websites owned by IOCL and/or creates an account on the mobile applications or the website s. (d) when Data Subject, which also includes employees of IOCL, directly elects to share their Information with IOCL. 7. WHY IOCL COLLECT S DATA SUBJECT ’S INFORMATION [PURPOSE] IOCL uses the Information to conduct its business and to provide Data Subject with the best possible services /products. IOCL will only use the Information based on this Privacy Policy, its understanding with the Data Subject , or as required by law. IOCL will collect adequate, relevant and necessary Information and will process such Information fairly and lawfully for the purpose it is collected . Most comm only, IOCL will use the Information in the following circumstances: (a) Where IOCL need s to perform the obligations it has promised the Data Subject , such as to provide a service or product to the Data Subject and to enable the Data Subject’s use of IOCL ’s products/ services , including but not limited to deal ing with enquiries and complaints made by or about the Data Subject relating to services/products provided by IOCL and to improve and customise IOCL’s services/products in accordance with the Data Subject’s preferences ; (b) Where IOCL need s to comply with a legal , accounting, business or reporting obligation , including compliance with requests from the Government of India or any Governmental Agency ; (c) To send marketing as well as non-marketing commercial communications to the Data Subject ; (d) To send the Data Subject notifications that the Data Subject has specifically requested for as well as to send statements, invoices and payment reminders to the Data Subject , and to collect payments from the Data Subject ; (e) To provide Third Parties with statistical information about its customers but those Third Parties will not be able to identify any individu al from that information; (f) To keep IOCL’s website, mobile application s and other systems secure and to prevent fraud; Indian Oil Corporation Limited (g) To promote the mission and objectives of Skill Development in India and/or to provide and disseminate information about relevant programm es under the Skill Development Mission. (h) To manage the employment of the data subject with IOCL. IOCL collects and processes the Information only when it is essential to offer its services/products to the Data Subject. By providing his or her Information , the Data Subject agrees that IOCL may collect, use and share this Information with Third Parties for the purpose s mentioned above from 7[a] to 7[h]. 8. FAILURE TO PROVIDE INFORMATION IOCL may not be able to perform the obligations it has promised the Data Subject , or IOCL may be prevented from complying with its legal , accounting, business or reporting obligation s if the Data Subject fails to provide certain Information when requested by IOCL . IOCL shall not be held liable in any manner whatsoever if IOCL is unable to perform its services or if there is a deficiency in IOCL’s services to the"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_512_ov8",
+ "text": "is a deficiency in IOCL’s services to the Data Subject due to Data Subject’s failure to provide such Information. IOCL and/or its Agents, employees, directors, associates, etc. shall be indemnified by the Data Subject and held harmless from any complaints, legal proceedings or claims filed or initiated by the Data Subject or any Third Party against IOCL in this regard. 9. CHANGE OF PURPOSE IOCL will only use Data Subject ’s Information for the purposes for which IOCL collected it, unless IOCL reasonably consider s that it need s to use it for another reason and that reason is compatible with the original purpose. 10. CONSENT Data Subject agrees that IOCL does not need any additional or further consent from him/her to use the Data Subject ’s Information in accordance with this Policy to carry out IOCL’s legal obligations or exercise specific rights. 11. INFORMATION SHARING AND DISCLOSURE IOCL may disclose the Information to any of its Agents or Third Parties insofar as reasonably necessary for the purposes set out in this Policy and for the purpose of providing services /products to the Data Subject . Such Agents and Third Parties are expected to provide a similar level of protection to the Information as is adhered to by IOCL . In addition to this, IOCL may disclose the Information where it is required to do so by law or to Governmental Agencies. Indian Oil Corporation Limited 12. TRANSFER OF INFORMATION OUTSIDE INDIA Unless stated otherwise, IOCL store s and process es the Information in India. There may, however, be occasions when IOCL need s to transfer the Information outside India for its business requirements. In such instances, IOCL will exercise the same level of care in handling the Information as it does in India. 13. DATA SECURITY The Information is processed by IOCL in strict accordance with the Indian Information Technology Act, 2000, and the rules notified thereunder. IOCL implement s and maintain ‘Reasonable Security Practices and Procedures’ as stated in the Indian Information Technology Act, 2000 and the Informat ion Technology [Reasonable Security Practices and Procedures and Sensitive Personal Data or Information] Rules, 2011, while processing, collecting, storing or handling any Information. 14. DATA RETENTION IOCL will only retain the Information for as lon g as necessary to fulfil the purposes IOCL collected it for, including for the purposes of satisfying any legal, business, accounting, or reporting requirements. In some circumstances, IOCL may anonymise the Information so that it can no longer be associated with the Data Subject , in which case IOCL may use such information without a further reference to Data Subject . 15. WHO HANDLES AND RETAINS DATA SUBJECT ’S INFORMATION Details about the primary entity which handles and retains the Information is provided below: Indian Oil Corporation Limited having its registered office at: IndianOil Bhavan G-9, Ali Yavar Jung Marg Bandra [East] Mumbai – 400051 India 16. REVIEW OF INFORMATION Data Subject can contact IOCL, through the Grievance Officer whose details are provided at the end of the Policy, requesting access to Data Subject ’s Information for"
+ },
+ {
+ "doc": "Indian Oil Priivacy policy.pdf",
+ "method": "simple_512_ov8",
+ "text": "requesting access to Data Subject ’s Information for reviewing or requesting amendment to certain information that Data Subject considers to be incorrect or wrong. IOCL shall process such requests from Data Subject in accordance with applicable law. IOCL shall not be responsible for the authenticity of the Information provided by the Data Subject to IOCL or its Agents. Indian Oil Corporation Limited 17. WITHDRAWAL OF CONSENT Data Subject may at any time revoke or withdraw Data Subject’s consent to provide Information to IOCL by contacting the Grievance Officer whose details are provided at the end of the Policy. However, such action may render it difficult for IOCL to offer some of its services /products to the Data Subject any further. IOCL shall not be held liable in any manner whatsoever if IOCL is unable to perform its services or if there is a deficiency in its services to Data Subject due to Data Subject’s withdrawal of consent. IOCL and/or its Agents, employees, directors, associates , etc. shall be indemnified by the Data Subject and held harmless from any complaints, legal proceedings or claims filed or initiated by the Data Subject or any Third Party against IOCL in this regard. 18. CHANGES TO THIS PRIVACY POLICY The Policy is subject to modification s from time to time. If IOCL decide s to change this Policy, IOCL shall publish the modified Policy on its website. 19. GRIEVANCE OFFICER In accordance with the Indian Information Technology Act 2000 and the rules notified thereund er, the contact details of the Grievance Officer are provided below: Sh. Abhinav Bhatt , Corporate Business Technology Centre, Indian Oil Institute of Petroleum Management Campus, Plot No. 83, Institutional Area, Sector 18, Gurugram, Haryana – 122001 Email: data -grievance@indianoil.in Phone : 0124 -2861509"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_512_ov8",
+ "text": "Privacy Policy This document is the sole property of HDFC Capital Advisors Limited and is to be used strictly for Internal Consumption only. HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 2 of 4 Privacy Policy 1. Objective The purpose of this Privacy P olicy (“Policy ”) is to maintain the privacy of and protect the personal information of employees, contractors, outsourced workforce, vendors, interns, associates, customers , Corporate Social Responsibility (CSR) partners and business partners of HDFC Capital Advisors Limited (“ Company ”) and ensure compliance with the Information Technology Act, 2000 (“ Act”) and the Information Technology (Reasonable security practices and procedures and sensitive personal data or information) Rules, 2011 (“ Rules ”). This Policy must be read in conjunction with the Act and the Rules, as may be amended from time to time. 2. Applicability This Policy is applicable to the Company and the Third Party (“as defined in Section 3 of the Policy”) who may receive , collect, possess, stores, deals or handle Personal information (PI)/ Sensitive personal data or information (SPDI), on behalf of the Company . Any such Third Party is expected to have read, understood and comply with this Policy. The Company will use its best endeavors to ensure that such Third Party have read and understood the terms of this Policy and preferably having entered into a confidentiality agreement. 3. Key Definitions (a) “Data subject ” is one who is the subject of personal and sensitive personal data . It may include, but is not limited to, the employees, contractors, outsourced workforce, vendors, interns, associates, customers, Corporate Social Responsibility (CSR) partners and business partners of the Company. (b) \"Personal information (PI) \" means any information that relates to a natural person, which, either directly or indirectly, in combination with other information available or likely to be available with a body corporate, is capable of identifying such person . (c) “Sensitive personal data or information (SPDI) ” of a person means such personal information which consists of information relating to. i. password . ii. financial information such as Bank account or credit card or debit card or other payment instrument details . iii. physical, physiological , and mental health condition . iv. sexual orientation . v. medical records and history . vi. Biometric information . vii. any detail relating to the above clauses as provided to body corporate for providing service; and viii. any of the information received under above clauses by body corporate for processing, stored or processed under lawful contract or otherwise: HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 3 of 4 provided that, any information that is freely available or accessible in public domain or furnished under the Right to Information Act, 2005 or any other law for the time being in force shall not be regarded as sensitive personal data or information for th e purposes of these rules. (d) “Third Party ” means all external parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_512_ov8",
+ "text": "trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy describes generally acceptable privacy principles for the protection and appropriate use of personal information and SPDI at the Company . 4.1. Consent The Company shall obtain consent from the Data subject before collecting, receiving, possessing, storing, dealing or handling personal information or SPDI of the provider of such information. No PI/SPDI shall be used by the Company without the consent of the provider of the information . The consent shall be obtained (in writing or electronically) from the Data subjects before or at the time of collecting PI or SPDI . The Data subject shall be provided with a choice to opt out and withdraw any consent previously given by way of written communication to the Company . 4.2. Collection of Personal Information a) The Company shall not collect PI or Sensitive personal data or information (SPDI) unless : (i) the information is collected for a lawful purpose connected with a function or activity of the Company or any person on its behalf; and ( ii) the collection of the PI / SPDI is considered necessary for that purpose . b) While collecting PI/ SPDI directly from the person concerned, the Company or any person on its behalf s hall take such steps as are, in the circumstances, reasonable to ensure that the person concerned is having the knowledge of : (i) the fact that the information is being collected; ( ii) the purpose for which the information is being collected; ( iii) the intended recipients of the information; ( iv) the name and address of the agency that is collecting the information; and (v) the agency that will retain the information. c) The Company or any person on its behalf holding PI/ SPDI shall not retain that information for longer than is required for the purposes for which the information may lawfully be used or is otherwise required under any other law for the time being in force. d) The PI/SPDI collected shall be used for the purpose for which it has been collected. e) The Company shall address any discrepancies and grievances of the provider of the PI/ SPDI in a time bound manner. For this purpose, the Company shall designate a Grievance Officer and publish his name and contact details on its website . The Grievance Officer shall use best endeavors to redress the grievances o f the provider of information expeditiously within one month from the date of receipt of grievance . 4.3. Disclosure of Information a) Disclosure of PI/ SPDI by the Company to any Third Party shall require prior permission from the provider of such information, who has provided such information under lawful HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 4 of 4 contract or otherwise, unless such disclosure has been agreed to in the contract between the Company and the provider of information, or where the disclosure is necessary for compliance of a legal /regulatory obligation ; Provided"
+ },
+ {
+ "doc": "Privacy_Policy_hdfc.pdf",
+ "method": "simple_512_ov8",
+ "text": "compliance of a legal /regulatory obligation ; Provided that the information shall be shared by the Company , without obtaining prior consent from the provider of information, with Government agencies mandated under the law to obtain information including sensitive personal data or information for the purpose of verification of identity, or for prevention, detection, investigation including cyber inciden ts, prosecution, and punishment of offences. The Company will use best endeavors to ensure that t he Government agency send s a request in writing to the Company possessing the sensitive personal data or information stating clearly the purpose of seeking such information and stating that the information so obtained shall not be published or shared with any other person. b) The Company shall disclose any PI/ SPDI to any Third Party by an order under the law for the time being in force. c) The Company or any person on its behalf shall not publish the PI/ SPDI . d) The Company shall use its best endeavors (including by way of execution of appropriate non-disclosure agreements) to ensure that t he Third Party receiving the PI/ SPDI from the Company or any person on its behalf shall not disclose it further . 4.4. Reasonable Security Practices and Procedures The Company endeavors to have in place reasonable security practices and procedures in place to protect the PI/SPDI of the provider of information."
+ }
+]
\ No newline at end of file
diff --git a/out/retrieval_results.csv b/out/retrieval_results.csv
new file mode 100644
index 0000000..8bbcd3f
--- /dev/null
+++ b/out/retrieval_results.csv
@@ -0,0 +1,118 @@
+experiment,query,rank,score,chunk_doc,chunk_text_snippet
+simple_128_ov8,What are the data subject rights about access and portability?,1,0.5664269924163818,Privacy_Policy_hdfc.pdf,"instrument details . iii. physical, physiological , and mental health condition . iv. sexual orientation . v. medical records and history . vi. Biometric information . vii. any detail relating to the above clauses as provided to body corporate for providing service; and viii. any of the information "
+simple_128_ov8,What are the data subject rights about access and portability?,2,0.5298892259597778,Privacy_Policy_hdfc.pdf,"Policy must be read in conjunction with the Act and the Rules, as may be amended from time to time. 2. Applicability This Policy is applicable to the Company and the Third Party (“as defined in Section 3 of the Policy”) who may receive , collect, possess, stores, deals or handle Personal information"
+simple_128_ov8,What are the data subject rights about access and portability?,3,0.5290191173553467,Privacy_Policy_hdfc.pdf,"or information for th e purposes of these rules. (d) “Third Party ” means all external parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy "
+simple_128_ov8,Under what grounds is processing of personal data lawful?,1,0.6080446243286133,Privacy_Policy_hdfc.pdf,"instrument details . iii. physical, physiological , and mental health condition . iv. sexual orientation . v. medical records and history . vi. Biometric information . vii. any detail relating to the above clauses as provided to body corporate for providing service; and viii. any of the information "
+simple_128_ov8,Under what grounds is processing of personal data lawful?,2,0.606208086013794,Privacy_Policy_hdfc.pdf,"who is the subject of personal and sensitive personal data . It may include, but is not limited to, the employees, contractors, outsourced workforce, vendors, interns, associates, customers, Corporate Social Responsibility (CSR) partners and business partners of the Company. (b) ""Personal informatio"
+simple_128_ov8,Under what grounds is processing of personal data lawful?,3,0.5560474395751953,Privacy_Policy_hdfc.pdf,or electronically) from the Data subjects before or at the time of collecting PI or SPDI . The Data subject shall be provided with a choice to opt out and withdraw any consent previously given by way of written communication to the Company . 4.2. Collection of Personal Information a) The Company sha
+simple_128_ov8,When can personal data be shared with third parties?,1,0.5753870010375977,Indian Oil Priivacy policy.pdf,Agents and a Third Party which collects such Information and transfers it to IOCL for a business requirement ; (c) when Data Subject downloads IOCL’s mobile applications or visits any of the websites owned by IOCL and/or creates an account on the mobile applications or the website s. (d) when Data S
+simple_128_ov8,When can personal data be shared with third parties?,2,0.5695280432701111,Privacy_Policy_hdfc.pdf,"or information for th e purposes of these rules. (d) “Third Party ” means all external parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy "
+simple_128_ov8,When can personal data be shared with third parties?,3,0.5481952428817749,Privacy_Policy_hdfc.pdf,"Policy must be read in conjunction with the Act and the Rules, as may be amended from time to time. 2. Applicability This Policy is applicable to the Company and the Third Party (“as defined in Section 3 of the Policy”) who may receive , collect, possess, stores, deals or handle Personal information"
+simple_128_ov16,What are the data subject rights about access and portability?,1,0.5555239915847778,Indian Oil Priivacy policy.pdf,"its services/products to the Data Subject. By providing his or her Information , the Data Subject agrees that IOCL may collect, use and share this Information with Third Parties for the purpose s mentioned above from 7[a] to 7[h]. 8. FAILURE TO PROVIDE INFORMATION IOCL may not be able to perform the"
+simple_128_ov16,What are the data subject rights about access and portability?,2,0.5374832153320312,Privacy_Policy_hdfc.pdf,"possessing, storing, dealing or handling personal information or SPDI of the provider of such information. No PI/SPDI shall be used by the Company without the consent of the provider of the information . The consent shall be obtained (in writing or electronically) from the Data subjects before or at"
+simple_128_ov16,What are the data subject rights about access and portability?,3,0.5350003242492676,Privacy_Policy_hdfc.pdf,"or accessible in public domain or furnished under the Right to Information Act, 2005 or any other law for the time being in force shall not be regarded as sensitive personal data or information for th e purposes of these rules. (d) “Third Party ” means all external parties such as contractors, outso"
+simple_128_ov16,Under what grounds is processing of personal data lawful?,1,0.5906286239624023,Privacy_Policy_hdfc.pdf,"possessing, storing, dealing or handling personal information or SPDI of the provider of such information. No PI/SPDI shall be used by the Company without the consent of the provider of the information . The consent shall be obtained (in writing or electronically) from the Data subjects before or at"
+simple_128_ov16,Under what grounds is processing of personal data lawful?,2,0.5853177309036255,Privacy_Policy_hdfc.pdf,"or accessible in public domain or furnished under the Right to Information Act, 2005 or any other law for the time being in force shall not be regarded as sensitive personal data or information for th e purposes of these rules. (d) “Third Party ” means all external parties such as contractors, outso"
+simple_128_ov16,Under what grounds is processing of personal data lawful?,3,0.5784960985183716,Privacy_Policy_hdfc.pdf,"preferably having entered into a confidentiality agreement. 3. Key Definitions (a) “Data subject ” is one who is the subject of personal and sensitive personal data . It may include, but is not limited to, the employees, contractors, outsourced workforce, vendors, interns, associates, customers, Cor"
+simple_128_ov16,When can personal data be shared with third parties?,1,0.6404250264167786,Privacy_Policy_hdfc.pdf,"or accessible in public domain or furnished under the Right to Information Act, 2005 or any other law for the time being in force shall not be regarded as sensitive personal data or information for th e purposes of these rules. (d) “Third Party ” means all external parties such as contractors, outso"
+simple_128_ov16,When can personal data be shared with third parties?,2,0.5424543023109436,Indian Oil Priivacy policy.pdf,"its services/products to the Data Subject. By providing his or her Information , the Data Subject agrees that IOCL may collect, use and share this Information with Third Parties for the purpose s mentioned above from 7[a] to 7[h]. 8. FAILURE TO PROVIDE INFORMATION IOCL may not be able to perform the"
+simple_128_ov16,When can personal data be shared with third parties?,3,0.5313668251037598,Privacy_Policy_hdfc.pdf,"or information) Rules, 2011 (“ Rules ”). This Policy must be read in conjunction with the Act and the Rules, as may be amended from time to time. 2. Applicability This Policy is applicable to the Company and the Third Party (“as defined in Section 3 of the Policy”) who may receive , collect, possess"
+simple_256_ov8,What are the data subject rights about access and portability?,1,0.5347517728805542,Privacy_Policy_hdfc.pdf,"parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy describes generally acceptable privacy principles for the protection and appropriate us"
+simple_256_ov8,What are the data subject rights about access and portability?,2,0.5194864273071289,Indian Oil Priivacy policy.pdf,"business requirement ; (c) when Data Subject downloads IOCL’s mobile applications or visits any of the websites owned by IOCL and/or creates an account on the mobile applications or the website s. (d) when Data Subject, which also includes employees of IOCL, directly elects to share their Informatio"
+simple_256_ov8,What are the data subject rights about access and portability?,3,0.5117513537406921,Indian Oil Priivacy policy.pdf,"India 16. REVIEW OF INFORMATION Data Subject can contact IOCL, through the Grievance Officer whose details are provided at the end of the Policy, requesting access to Data Subject ’s Information for reviewing or requesting amendment to certain information that Data Subject considers to be incorrect "
+simple_256_ov8,Under what grounds is processing of personal data lawful?,1,0.6094139814376831,Privacy_Policy_hdfc.pdf,"personal data . It may include, but is not limited to, the employees, contractors, outsourced workforce, vendors, interns, associates, customers, Corporate Social Responsibility (CSR) partners and business partners of the Company. (b) ""Personal information (PI) "" means any information that relates t"
+simple_256_ov8,Under what grounds is processing of personal data lawful?,2,0.5686781406402588,Privacy_Policy_hdfc.pdf,"parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy describes generally acceptable privacy principles for the protection and appropriate us"
+simple_256_ov8,Under what grounds is processing of personal data lawful?,3,0.5305013060569763,Privacy_Policy_hdfc.pdf,"contract between the Company and the provider of information, or where the disclosure is necessary for compliance of a legal /regulatory obligation ; Provided that the information shall be shared by the Company , without obtaining prior consent from the provider of information, with Government agenc"
+simple_256_ov8,When can personal data be shared with third parties?,1,0.5305006504058838,Indian Oil Priivacy policy.pdf,"business requirement ; (c) when Data Subject downloads IOCL’s mobile applications or visits any of the websites owned by IOCL and/or creates an account on the mobile applications or the website s. (d) when Data Subject, which also includes employees of IOCL, directly elects to share their Informatio"
+simple_256_ov8,When can personal data be shared with third parties?,2,0.506156325340271,Privacy_Policy_hdfc.pdf,"parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy describes generally acceptable privacy principles for the protection and appropriate us"
+simple_256_ov8,When can personal data be shared with third parties?,3,0.49900397658348083,Indian Oil Priivacy policy.pdf,"liable in any manner whatsoever if IOCL is unable to perform its services or if there is a deficiency in IOCL’s services to the Data Subject due to Data Subject’s failure to provide such Information. IOCL and/or its Agents, employees, directors, associates, etc. shall be indemnified by the Data Subj"
+simple_256_ov16,What are the data subject rights about access and portability?,1,0.5346255302429199,Privacy_Policy_hdfc.pdf,"or information for th e purposes of these rules. (d) “Third Party ” means all external parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy "
+simple_256_ov16,What are the data subject rights about access and portability?,2,0.49660614132881165,Indian Oil Priivacy policy.pdf,Agents and a Third Party which collects such Information and transfers it to IOCL for a business requirement ; (c) when Data Subject downloads IOCL’s mobile applications or visits any of the websites owned by IOCL and/or creates an account on the mobile applications or the website s. (d) when Data S
+simple_256_ov16,What are the data subject rights about access and portability?,3,0.49607694149017334,Indian Oil Priivacy policy.pdf,"prevented from complying with its legal , accounting, business or reporting obligation s if the Data Subject fails to provide certain Information when requested by IOCL . IOCL shall not be held liable in any manner whatsoever if IOCL is unable to perform its services or if there is a deficiency in I"
+simple_256_ov16,Under what grounds is processing of personal data lawful?,1,0.6094787120819092,Privacy_Policy_hdfc.pdf,"who is the subject of personal and sensitive personal data . It may include, but is not limited to, the employees, contractors, outsourced workforce, vendors, interns, associates, customers, Corporate Social Responsibility (CSR) partners and business partners of the Company. (b) ""Personal informatio"
+simple_256_ov16,Under what grounds is processing of personal data lawful?,2,0.5591257810592651,Privacy_Policy_hdfc.pdf,"or information for th e purposes of these rules. (d) “Third Party ” means all external parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy "
+simple_256_ov16,Under what grounds is processing of personal data lawful?,3,0.5127358436584473,Privacy_Policy_hdfc.pdf,"provided such information under lawful HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 4 of 4 contract or otherwise, unless such disclosure has been agreed to in the contract between the Company and the provider of information, or where the disclosure is "
+simple_256_ov16,When can personal data be shared with third parties?,1,0.5549328327178955,Indian Oil Priivacy policy.pdf,Agents and a Third Party which collects such Information and transfers it to IOCL for a business requirement ; (c) when Data Subject downloads IOCL’s mobile applications or visits any of the websites owned by IOCL and/or creates an account on the mobile applications or the website s. (d) when Data S
+simple_256_ov16,When can personal data be shared with third parties?,2,0.5390070676803589,Privacy_Policy_hdfc.pdf,"or information for th e purposes of these rules. (d) “Third Party ” means all external parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy "
+simple_256_ov16,When can personal data be shared with third parties?,3,0.513037383556366,Indian Oil Priivacy policy.pdf,". Third -Party: Any individual or entity over which IOCL does not have any control or ownership, and which operates independently on its own is hereinafter referred to as a ""Third Party"". 3. GOVERNING LAW IOCL is an organisation based and existing in India and is thus bound by the laws of the Republ"
+simple_512_ov8,What are the data subject rights about access and portability?,1,0.5492175817489624,Indian Oil Priivacy policy.pdf,requesting access to Data Subject ’s Information for reviewing or requesting amendment to certain information that Data Subject considers to be incorrect or wrong. IOCL shall process such requests from Data Subject in accordance with applicable law. IOCL shall not be responsible for the authenticity
+simple_512_ov8,What are the data subject rights about access and portability?,2,0.5273179411888123,Indian Oil Priivacy policy.pdf,"is a deficiency in IOCL’s services to the Data Subject due to Data Subject’s failure to provide such Information. IOCL and/or its Agents, employees, directors, associates, etc. shall be indemnified by the Data Subject and held harmless from any complaints, legal proceedings or claims filed or initia"
+simple_512_ov8,What are the data subject rights about access and portability?,3,0.5114119648933411,Privacy_Policy_hdfc.pdf,"trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy describes generally acceptable privacy principles for the protection and appropriate use of personal information and SPDI at the Company . 4.1. Consent Th"
+simple_512_ov8,Under what grounds is processing of personal data lawful?,1,0.5612918734550476,Privacy_Policy_hdfc.pdf,"trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy describes generally acceptable privacy principles for the protection and appropriate use of personal information and SPDI at the Company . 4.1. Consent Th"
+simple_512_ov8,Under what grounds is processing of personal data lawful?,2,0.5433870553970337,Indian Oil Priivacy policy.pdf,requesting access to Data Subject ’s Information for reviewing or requesting amendment to certain information that Data Subject considers to be incorrect or wrong. IOCL shall process such requests from Data Subject in accordance with applicable law. IOCL shall not be responsible for the authenticity
+simple_512_ov8,Under what grounds is processing of personal data lawful?,3,0.5227590799331665,Privacy_Policy_hdfc.pdf,"compliance of a legal /regulatory obligation ; Provided that the information shall be shared by the Company , without obtaining prior consent from the provider of information, with Government agencies mandated under the law to obtain information including sensitive personal data or information for t"
+simple_512_ov8,When can personal data be shared with third parties?,1,0.5113964080810547,Indian Oil Priivacy policy.pdf,"IOCL’s mobile applications or visits any of the websites owned by IOCL and/or creates an account on the mobile applications or the website s. (d) when Data Subject, which also includes employees of IOCL, directly elects to share their Information with IOCL. 7. WHY IOCL COLLECT S DATA SUBJECT ’S INFO"
+simple_512_ov8,When can personal data be shared with third parties?,2,0.49636951088905334,Indian Oil Priivacy policy.pdf,"is a deficiency in IOCL’s services to the Data Subject due to Data Subject’s failure to provide such Information. IOCL and/or its Agents, employees, directors, associates, etc. shall be indemnified by the Data Subject and held harmless from any complaints, legal proceedings or claims filed or initia"
+simple_512_ov8,When can personal data be shared with third parties?,3,0.4881289005279541,Privacy_Policy_hdfc.pdf,"trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy describes generally acceptable privacy principles for the protection and appropriate use of personal information and SPDI at the Company . 4.1. Consent Th"
+simple_512_ov16,What are the data subject rights about access and portability?,1,0.5347517728805542,Privacy_Policy_hdfc.pdf,"parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy describes generally acceptable privacy principles for the protection and appropriate us"
+simple_512_ov16,What are the data subject rights about access and portability?,2,0.5194864273071289,Indian Oil Priivacy policy.pdf,"business requirement ; (c) when Data Subject downloads IOCL’s mobile applications or visits any of the websites owned by IOCL and/or creates an account on the mobile applications or the website s. (d) when Data Subject, which also includes employees of IOCL, directly elects to share their Informatio"
+simple_512_ov16,What are the data subject rights about access and portability?,3,0.5117513537406921,Indian Oil Priivacy policy.pdf,"India 16. REVIEW OF INFORMATION Data Subject can contact IOCL, through the Grievance Officer whose details are provided at the end of the Policy, requesting access to Data Subject ’s Information for reviewing or requesting amendment to certain information that Data Subject considers to be incorrect "
+simple_512_ov16,Under what grounds is processing of personal data lawful?,1,0.5686781406402588,Privacy_Policy_hdfc.pdf,"parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy describes generally acceptable privacy principles for the protection and appropriate us"
+simple_512_ov16,Under what grounds is processing of personal data lawful?,2,0.5305013060569763,Privacy_Policy_hdfc.pdf,"contract between the Company and the provider of information, or where the disclosure is necessary for compliance of a legal /regulatory obligation ; Provided that the information shall be shared by the Company , without obtaining prior consent from the provider of information, with Government agenc"
+simple_512_ov16,Under what grounds is processing of personal data lawful?,3,0.5093934535980225,Indian Oil Priivacy policy.pdf,"India 16. REVIEW OF INFORMATION Data Subject can contact IOCL, through the Grievance Officer whose details are provided at the end of the Policy, requesting access to Data Subject ’s Information for reviewing or requesting amendment to certain information that Data Subject considers to be incorrect "
+simple_512_ov16,When can personal data be shared with third parties?,1,0.5305006504058838,Indian Oil Priivacy policy.pdf,"business requirement ; (c) when Data Subject downloads IOCL’s mobile applications or visits any of the websites owned by IOCL and/or creates an account on the mobile applications or the website s. (d) when Data Subject, which also includes employees of IOCL, directly elects to share their Informatio"
+simple_512_ov16,When can personal data be shared with third parties?,2,0.506156325340271,Privacy_Policy_hdfc.pdf,"parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy describes generally acceptable privacy principles for the protection and appropriate us"
+simple_512_ov16,When can personal data be shared with third parties?,3,0.49900397658348083,Indian Oil Priivacy policy.pdf,"liable in any manner whatsoever if IOCL is unable to perform its services or if there is a deficiency in IOCL’s services to the Data Subject due to Data Subject’s failure to provide such Information. IOCL and/or its Agents, employees, directors, associates, etc. shall be indemnified by the Data Subj"
+recursive_128_ov8,What are the data subject rights about access and portability?,1,0.5664269924163818,Privacy_Policy_hdfc.pdf,"instrument details . iii. physical, physiological , and mental health condition . iv. sexual orientation . v. medical records and history . vi. Biometric information . vii. any detail relating to the above clauses as provided to body corporate for providing service; and viii. any of the information "
+recursive_128_ov8,What are the data subject rights about access and portability?,2,0.544136643409729,Indian Oil Priivacy policy.pdf,"such Information and transfers it to IOCL for a business requirement ; (c) when Data Subject downloads IOCL’s mobile applications or visits any of the websites owned by IOCL and/or creates an account on the mobile applications or the website s. (d) when Data Subject, which also includes employees of"
+recursive_128_ov8,What are the data subject rights about access and portability?,3,0.5324234962463379,Indian Oil Priivacy policy.pdf,"it, unless IOCL reasonably consider s that it need s to use it for another reason and that reason is compatible with the original purpose. 10. CONSENT Data Subject agrees that IOCL does not need any additional or further consent from him/her to use the Data Subject ’s Information in accordance with "
+recursive_128_ov8,Under what grounds is processing of personal data lawful?,1,0.6080446243286133,Privacy_Policy_hdfc.pdf,"instrument details . iii. physical, physiological , and mental health condition . iv. sexual orientation . v. medical records and history . vi. Biometric information . vii. any detail relating to the above clauses as provided to body corporate for providing service; and viii. any of the information "
+recursive_128_ov8,Under what grounds is processing of personal data lawful?,2,0.606208086013794,Privacy_Policy_hdfc.pdf,"who is the subject of personal and sensitive personal data . It may include, but is not limited to, the employees, contractors, outsourced workforce, vendors, interns, associates, customers, Corporate Social Responsibility (CSR) partners and business partners of the Company. (b) ""Personal informatio"
+recursive_128_ov8,Under what grounds is processing of personal data lawful?,3,0.5560474395751953,Privacy_Policy_hdfc.pdf,or electronically) from the Data subjects before or at the time of collecting PI or SPDI . The Data subject shall be provided with a choice to opt out and withdraw any consent previously given by way of written communication to the Company . 4.2. Collection of Personal Information a) The Company sha
+recursive_128_ov8,When can personal data be shared with third parties?,1,0.5695280432701111,Privacy_Policy_hdfc.pdf,"or information for th e purposes of these rules. (d) “Third Party ” means all external parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy "
+recursive_128_ov8,When can personal data be shared with third parties?,2,0.5573834180831909,Indian Oil Priivacy policy.pdf,"such Information and transfers it to IOCL for a business requirement ; (c) when Data Subject downloads IOCL’s mobile applications or visits any of the websites owned by IOCL and/or creates an account on the mobile applications or the website s. (d) when Data Subject, which also includes employees of"
+recursive_128_ov8,When can personal data be shared with third parties?,3,0.5560352206230164,Indian Oil Priivacy policy.pdf,"it, unless IOCL reasonably consider s that it need s to use it for another reason and that reason is compatible with the original purpose. 10. CONSENT Data Subject agrees that IOCL does not need any additional or further consent from him/her to use the Data Subject ’s Information in accordance with "
+recursive_128_ov16,What are the data subject rights about access and portability?,1,0.543100893497467,Indian Oil Priivacy policy.pdf,"providing his or her Information , the Data Subject agrees that IOCL may collect, use and share this Information with Third Parties for the purpose s mentioned above from 7[a] to 7[h]. 8. FAILURE TO PROVIDE INFORMATION IOCL may not be able to perform the obligations it has promised the Data Subject "
+recursive_128_ov16,What are the data subject rights about access and portability?,2,0.5374832153320312,Privacy_Policy_hdfc.pdf,"possessing, storing, dealing or handling personal information or SPDI of the provider of such information. No PI/SPDI shall be used by the Company without the consent of the provider of the information . The consent shall be obtained (in writing or electronically) from the Data subjects before or at"
+recursive_128_ov16,What are the data subject rights about access and portability?,3,0.5350003242492676,Privacy_Policy_hdfc.pdf,"or accessible in public domain or furnished under the Right to Information Act, 2005 or any other law for the time being in force shall not be regarded as sensitive personal data or information for th e purposes of these rules. (d) “Third Party ” means all external parties such as contractors, outso"
+recursive_128_ov16,Under what grounds is processing of personal data lawful?,1,0.5906286239624023,Privacy_Policy_hdfc.pdf,"possessing, storing, dealing or handling personal information or SPDI of the provider of such information. No PI/SPDI shall be used by the Company without the consent of the provider of the information . The consent shall be obtained (in writing or electronically) from the Data subjects before or at"
+recursive_128_ov16,Under what grounds is processing of personal data lawful?,2,0.5853177309036255,Privacy_Policy_hdfc.pdf,"or accessible in public domain or furnished under the Right to Information Act, 2005 or any other law for the time being in force shall not be regarded as sensitive personal data or information for th e purposes of these rules. (d) “Third Party ” means all external parties such as contractors, outso"
+recursive_128_ov16,Under what grounds is processing of personal data lawful?,3,0.5784960985183716,Privacy_Policy_hdfc.pdf,"preferably having entered into a confidentiality agreement. 3. Key Definitions (a) “Data subject ” is one who is the subject of personal and sensitive personal data . It may include, but is not limited to, the employees, contractors, outsourced workforce, vendors, interns, associates, customers, Cor"
+recursive_128_ov16,When can personal data be shared with third parties?,1,0.6404250264167786,Privacy_Policy_hdfc.pdf,"or accessible in public domain or furnished under the Right to Information Act, 2005 or any other law for the time being in force shall not be regarded as sensitive personal data or information for th e purposes of these rules. (d) “Third Party ” means all external parties such as contractors, outso"
+recursive_128_ov16,When can personal data be shared with third parties?,2,0.5330427289009094,Indian Oil Priivacy policy.pdf,irrespective of whether such services /products are prov ided directly by IOCL or by its Agents on IOCL’s behalf ; (b) through IOCL’s network of Agents and a Third Party which collects such Information and transfers it to IOCL for a business requirement ; (c) when Data Subject downloads IOCL’s mobil
+recursive_128_ov16,When can personal data be shared with third parties?,3,0.5313668251037598,Privacy_Policy_hdfc.pdf,"or information) Rules, 2011 (“ Rules ”). This Policy must be read in conjunction with the Act and the Rules, as may be amended from time to time. 2. Applicability This Policy is applicable to the Company and the Third Party (“as defined in Section 3 of the Policy”) who may receive , collect, possess"
+recursive_256_ov8,What are the data subject rights about access and portability?,1,0.5347517728805542,Privacy_Policy_hdfc.pdf,"parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy describes generally acceptable privacy principles for the protection and appropriate us"
+recursive_256_ov8,What are the data subject rights about access and portability?,2,0.5246724486351013,Indian Oil Priivacy policy.pdf,"is unable to perform its services or if there is a deficiency in IOCL’s services to the Data Subject due to Data Subject’s failure to provide such Information. IOCL and/or its Agents, employees, directors, associates, etc. shall be indemnified by the Data Subject and held harmless from any complaint"
+recursive_256_ov8,What are the data subject rights about access and portability?,3,0.5018541812896729,Privacy_Policy_hdfc.pdf,"personal data . It may include, but is not limited to, the employees, contractors, outsourced workforce, vendors, interns, associates, customers, Corporate Social Responsibility (CSR) partners and business partners of the Company. (b) ""Personal information (PI) "" means any information that relates t"
+recursive_256_ov8,Under what grounds is processing of personal data lawful?,1,0.6094139814376831,Privacy_Policy_hdfc.pdf,"personal data . It may include, but is not limited to, the employees, contractors, outsourced workforce, vendors, interns, associates, customers, Corporate Social Responsibility (CSR) partners and business partners of the Company. (b) ""Personal information (PI) "" means any information that relates t"
+recursive_256_ov8,Under what grounds is processing of personal data lawful?,2,0.5686781406402588,Privacy_Policy_hdfc.pdf,"parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy describes generally acceptable privacy principles for the protection and appropriate us"
+recursive_256_ov8,Under what grounds is processing of personal data lawful?,3,0.5305013060569763,Privacy_Policy_hdfc.pdf,"contract between the Company and the provider of information, or where the disclosure is necessary for compliance of a legal /regulatory obligation ; Provided that the information shall be shared by the Company , without obtaining prior consent from the provider of information, with Government agenc"
+recursive_256_ov8,When can personal data be shared with third parties?,1,0.506156325340271,Privacy_Policy_hdfc.pdf,"parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy describes generally acceptable privacy principles for the protection and appropriate us"
+recursive_256_ov8,When can personal data be shared with third parties?,2,0.5034449100494385,Indian Oil Priivacy policy.pdf,"downloads IOCL’s mobile applications or visits any of the websites owned by IOCL and/or creates an account on the mobile applications or the website s. (d) when Data Subject, which also includes employees of IOCL, directly elects to share their Information with IOCL. 7. WHY IOCL COLLECT S DATA SUBJE"
+recursive_256_ov8,When can personal data be shared with third parties?,3,0.49794548749923706,Privacy_Policy_hdfc.pdf,"contract between the Company and the provider of information, or where the disclosure is necessary for compliance of a legal /regulatory obligation ; Provided that the information shall be shared by the Company , without obtaining prior consent from the provider of information, with Government agenc"
+recursive_256_ov16,What are the data subject rights about access and portability?,1,0.5346255302429199,Privacy_Policy_hdfc.pdf,"or information for th e purposes of these rules. (d) “Third Party ” means all external parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy "
+recursive_256_ov16,What are the data subject rights about access and portability?,2,0.5000432729721069,Indian Oil Priivacy policy.pdf,"such Information and transfers it to IOCL for a business requirement ; (c) when Data Subject downloads IOCL’s mobile applications or visits any of the websites owned by IOCL and/or creates an account on the mobile applications or the website s. (d) when Data Subject, which also includes employees of"
+recursive_256_ov16,What are the data subject rights about access and portability?,3,0.4897534251213074,Indian Oil Priivacy policy.pdf,"accounting, business or reporting obligation s if the Data Subject fails to provide certain Information when requested by IOCL . IOCL shall not be held liable in any manner whatsoever if IOCL is unable to perform its services or if there is a deficiency in IOCL’s services to the Data Subject due to "
+recursive_256_ov16,Under what grounds is processing of personal data lawful?,1,0.6094787120819092,Privacy_Policy_hdfc.pdf,"who is the subject of personal and sensitive personal data . It may include, but is not limited to, the employees, contractors, outsourced workforce, vendors, interns, associates, customers, Corporate Social Responsibility (CSR) partners and business partners of the Company. (b) ""Personal informatio"
+recursive_256_ov16,Under what grounds is processing of personal data lawful?,2,0.5591257810592651,Privacy_Policy_hdfc.pdf,"or information for th e purposes of these rules. (d) “Third Party ” means all external parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy "
+recursive_256_ov16,Under what grounds is processing of personal data lawful?,3,0.5127358436584473,Privacy_Policy_hdfc.pdf,"provided such information under lawful HDFC Capital Privacy Policy Version: 2.0 January 2024 Security Classification: INTERNAL Page 4 of 4 contract or otherwise, unless such disclosure has been agreed to in the contract between the Company and the provider of information, or where the disclosure is "
+recursive_256_ov16,When can personal data be shared with third parties?,1,0.5390070676803589,Privacy_Policy_hdfc.pdf,"or information for th e purposes of these rules. (d) “Third Party ” means all external parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy "
+recursive_256_ov16,When can personal data be shared with third parties?,2,0.5217350721359253,Indian Oil Priivacy policy.pdf,"such Information and transfers it to IOCL for a business requirement ; (c) when Data Subject downloads IOCL’s mobile applications or visits any of the websites owned by IOCL and/or creates an account on the mobile applications or the website s. (d) when Data Subject, which also includes employees of"
+recursive_256_ov16,When can personal data be shared with third parties?,3,0.4659278690814972,Indian Oil Priivacy policy.pdf,"reporting obligation , including compliance with requests from the Government of India or any Governmental Agency ; (c) To send marketing as well as non-marketing commercial communications to the Data Subject ; (d) To send the Data Subject notifications that the Data Subject has specifically request"
+recursive_512_ov8,What are the data subject rights about access and portability?,1,0.5359660983085632,Indian Oil Priivacy policy.pdf,"the Data Subject due to Data Subject’s failure to provide such Information. IOCL and/or its Agents, employees, directors, associates, etc. shall be indemnified by the Data Subject and held harmless from any complaints, legal proceedings or claims filed or initiated by the Data Subject or any Third P"
+recursive_512_ov8,What are the data subject rights about access and portability?,2,0.5114119648933411,Privacy_Policy_hdfc.pdf,"trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy describes generally acceptable privacy principles for the protection and appropriate use of personal information and SPDI at the Company . 4.1. Consent Th"
+recursive_512_ov8,What are the data subject rights about access and portability?,3,0.5087826251983643,Indian Oil Priivacy policy.pdf,for reviewing or requesting amendment to certain information that Data Subject considers to be incorrect or wrong. IOCL shall process such requests from Data Subject in accordance with applicable law. IOCL shall not be responsible for the authenticity of the Information provided by the Data Subject
+recursive_512_ov8,Under what grounds is processing of personal data lawful?,1,0.5612918734550476,Privacy_Policy_hdfc.pdf,"trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy describes generally acceptable privacy principles for the protection and appropriate use of personal information and SPDI at the Company . 4.1. Consent Th"
+recursive_512_ov8,Under what grounds is processing of personal data lawful?,2,0.5271402597427368,Indian Oil Priivacy policy.pdf,for reviewing or requesting amendment to certain information that Data Subject considers to be incorrect or wrong. IOCL shall process such requests from Data Subject in accordance with applicable law. IOCL shall not be responsible for the authenticity of the Information provided by the Data Subject
+recursive_512_ov8,Under what grounds is processing of personal data lawful?,3,0.5261645913124084,Indian Oil Priivacy policy.pdf,"the Data Subject due to Data Subject’s failure to provide such Information. IOCL and/or its Agents, employees, directors, associates, etc. shall be indemnified by the Data Subject and held harmless from any complaints, legal proceedings or claims filed or initiated by the Data Subject or any Third P"
+recursive_512_ov8,When can personal data be shared with third parties?,1,0.514633297920227,Indian Oil Priivacy policy.pdf,"the websites owned by IOCL and/or creates an account on the mobile applications or the website s. (d) when Data Subject, which also includes employees of IOCL, directly elects to share their Information with IOCL. 7. WHY IOCL COLLECT S DATA SUBJECT ’S INFORMATION [PURPOSE] IOCL uses the Information "
+recursive_512_ov8,When can personal data be shared with third parties?,2,0.5077983736991882,Indian Oil Priivacy policy.pdf,"the Data Subject due to Data Subject’s failure to provide such Information. IOCL and/or its Agents, employees, directors, associates, etc. shall be indemnified by the Data Subject and held harmless from any complaints, legal proceedings or claims filed or initiated by the Data Subject or any Third P"
+recursive_512_ov8,When can personal data be shared with third parties?,3,0.4881289005279541,Privacy_Policy_hdfc.pdf,"trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy describes generally acceptable privacy principles for the protection and appropriate use of personal information and SPDI at the Company . 4.1. Consent Th"
+recursive_512_ov16,What are the data subject rights about access and portability?,1,0.5347517728805542,Privacy_Policy_hdfc.pdf,"parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy describes generally acceptable privacy principles for the protection and appropriate us"
+recursive_512_ov16,What are the data subject rights about access and portability?,2,0.5246724486351013,Indian Oil Priivacy policy.pdf,"is unable to perform its services or if there is a deficiency in IOCL’s services to the Data Subject due to Data Subject’s failure to provide such Information. IOCL and/or its Agents, employees, directors, associates, etc. shall be indemnified by the Data Subject and held harmless from any complaint"
+recursive_512_ov16,What are the data subject rights about access and portability?,3,0.4839269518852234,Privacy_Policy_hdfc.pdf,"contract between the Company and the provider of information, or where the disclosure is necessary for compliance of a legal /regulatory obligation ; Provided that the information shall be shared by the Company , without obtaining prior consent from the provider of information, with Government agenc"
+recursive_512_ov16,Under what grounds is processing of personal data lawful?,1,0.5686781406402588,Privacy_Policy_hdfc.pdf,"parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy describes generally acceptable privacy principles for the protection and appropriate us"
+recursive_512_ov16,Under what grounds is processing of personal data lawful?,2,0.5305013060569763,Privacy_Policy_hdfc.pdf,"contract between the Company and the provider of information, or where the disclosure is necessary for compliance of a legal /regulatory obligation ; Provided that the information shall be shared by the Company , without obtaining prior consent from the provider of information, with Government agenc"
+recursive_512_ov16,Under what grounds is processing of personal data lawful?,3,0.5166746377944946,Indian Oil Priivacy policy.pdf,"is unable to perform its services or if there is a deficiency in IOCL’s services to the Data Subject due to Data Subject’s failure to provide such Information. IOCL and/or its Agents, employees, directors, associates, etc. shall be indemnified by the Data Subject and held harmless from any complaint"
+recursive_512_ov16,When can personal data be shared with third parties?,1,0.506156325340271,Privacy_Policy_hdfc.pdf,"parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy describes generally acceptable privacy principles for the protection and appropriate us"
+recursive_512_ov16,When can personal data be shared with third parties?,2,0.5034449100494385,Indian Oil Priivacy policy.pdf,"downloads IOCL’s mobile applications or visits any of the websites owned by IOCL and/or creates an account on the mobile applications or the website s. (d) when Data Subject, which also includes employees of IOCL, directly elects to share their Information with IOCL. 7. WHY IOCL COLLECT S DATA SUBJE"
+recursive_512_ov16,When can personal data be shared with third parties?,3,0.49794548749923706,Privacy_Policy_hdfc.pdf,"contract between the Company and the provider of information, or where the disclosure is necessary for compliance of a legal /regulatory obligation ; Provided that the information shall be shared by the Company , without obtaining prior consent from the provider of information, with Government agenc"
+semantic_sim74,What are the data subject rights about access and portability?,1,0.5667707920074463,Privacy_Policy_hdfc.pdf,"Any such Third Party is expected to have read, understood and comply with this Policy. The Company will use its best endeavors to ensure that such Third Party have read and understood the terms of this Policy and preferably having entered into a confidentiality agreement. 3. Key Definitions "
+semantic_sim74,What are the data subject rights about access and portability?,2,0.5272112488746643,Indian Oil Priivacy policy.pdf,10. CONSENT Data Subject agrees that IOCL does not need any additional or further consent from him/her to use the Data Subject ’s Information in accordance with this Policy to carry out IOCL’s legal obligations or exercise specific rights. 11. INFORMATION SHARING AND DISCLOSURE IOCL may
+semantic_sim74,What are the data subject rights about access and portability?,3,0.5256274342536926,Indian Oil Priivacy policy.pdf,"8. FAILURE TO PROVIDE INFORMATION IOCL may not be able to perform the obligations it has promised the Data Subject , or IOCL may be prevented from complying with its legal , accounting, business or reporting obligation s if the Data Subject fails to provide certain Information when reques"
+semantic_sim74,Under what grounds is processing of personal data lawful?,1,0.581454336643219,Privacy_Policy_hdfc.pdf,"Provided that the information shall be shared by the Company , without obtaining prior consent from the provider of information, with Government agencies mandated under the law to obtain information including sensitive personal data or information for the purpose of verification of identity, or "
+semantic_sim74,Under what grounds is processing of personal data lawful?,2,0.550290584564209,Privacy_Policy_hdfc.pdf,"Any such Third Party is expected to have read, understood and comply with this Policy. The Company will use its best endeavors to ensure that such Third Party have read and understood the terms of this Policy and preferably having entered into a confidentiality agreement. 3. Key Definitions "
+semantic_sim74,Under what grounds is processing of personal data lawful?,3,0.5481666326522827,Privacy_Policy_hdfc.pdf,"(c) “Sensitive personal data or information (SPDI) ” of a person means such personal information which consists of information relating to. i. password . ii. financial information such as Bank account or credit card or debit card or other payment instrument details . iii. physical, physiological "
+semantic_sim74,When can personal data be shared with third parties?,1,0.5964036583900452,Privacy_Policy_hdfc.pdf,"(d) “Third Party ” means all external parties such as contractors, outsourced workforce, interns, summer trainees, vendors , CSR Partners and business partners who have access to Company’s information assets. 4. Elements of Privacy Policy This Policy describes generally acceptabl"
+semantic_sim74,When can personal data be shared with third parties?,2,0.5945898294448853,Privacy_Policy_hdfc.pdf,"Any such Third Party is expected to have read, understood and comply with this Policy. The Company will use its best endeavors to ensure that such Third Party have read and understood the terms of this Policy and preferably having entered into a confidentiality agreement. 3. Key Definitions "
+semantic_sim74,When can personal data be shared with third parties?,3,0.5594093799591064,Privacy_Policy_hdfc.pdf,"Provided that the information shall be shared by the Company , without obtaining prior consent from the provider of information, with Government agencies mandated under the law to obtain information including sensitive personal data or information for the purpose of verification of identity, or "
diff --git a/out/summary.json b/out/summary.json
new file mode 100644
index 0000000..87ed724
--- /dev/null
+++ b/out/summary.json
@@ -0,0 +1,67 @@
+[
+ {
+ "experiment": "simple_128_ov16",
+ "avg_score": 0.5662995709313287,
+ "n": 9
+ },
+ {
+ "experiment": "recursive_128_ov8",
+ "avg_score": 0.5662482182184855,
+ "n": 9
+ },
+ {
+ "experiment": "simple_128_ov8",
+ "avg_score": 0.5654161969820658,
+ "n": 9
+ },
+ {
+ "experiment": "recursive_128_ov16",
+ "avg_score": 0.5638734963205125,
+ "n": 9
+ },
+ {
+ "experiment": "semantic_sim74",
+ "avg_score": 0.561102655198839,
+ "n": 9
+ },
+ {
+ "experiment": "simple_256_ov16",
+ "avg_score": 0.5350695815351274,
+ "n": 9
+ },
+ {
+ "experiment": "simple_256_ov8",
+ "avg_score": 0.5344715482658811,
+ "n": 9
+ },
+ {
+ "experiment": "recursive_256_ov8",
+ "avg_score": 0.5308242837587992,
+ "n": 9
+ },
+ {
+ "experiment": "recursive_256_ov16",
+ "avg_score": 0.5258258415593041,
+ "n": 9
+ },
+ {
+ "experiment": "simple_512_ov8",
+ "avg_score": 0.5234755906793807,
+ "n": 9
+ },
+ {
+ "experiment": "simple_512_ov16",
+ "avg_score": 0.5233581562836965,
+ "n": 9
+ },
+ {
+ "experiment": "recursive_512_ov8",
+ "avg_score": 0.5201464427842034,
+ "n": 9
+ },
+ {
+ "experiment": "recursive_512_ov16",
+ "avg_score": 0.5185279978646172,
+ "n": 9
+ }
+]
\ No newline at end of file
diff --git a/package-lock.json b/package-lock.json
new file mode 100644
index 0000000..46a1391
--- /dev/null
+++ b/package-lock.json
@@ -0,0 +1,31 @@
+{
+ "name": "comp_check",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {
+ "": {
+ "dependencies": {
+ "lucide-react": "^1.8.0"
+ }
+ },
+ "node_modules/lucide-react": {
+ "version": "1.8.0",
+ "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-1.8.0.tgz",
+ "integrity": "sha512-WuvlsjngSk7TnTBJ1hsCy3ql9V9VOdcPkd3PKcSmM34vJD8KG6molxz7m7zbYFgICwsanQWmJ13JlYs4Zp7Arw==",
+ "license": "ISC",
+ "peerDependencies": {
+ "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0"
+ }
+ },
+ "node_modules/react": {
+ "version": "19.2.5",
+ "resolved": "https://registry.npmjs.org/react/-/react-19.2.5.tgz",
+ "integrity": "sha512-llUJLzz1zTUBrskt2pwZgLq59AemifIftw4aB7JxOqf1HY2FDaGDxgwpAPVzHU1kdWabH7FauP4i1oEeer2WCA==",
+ "license": "MIT",
+ "peer": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ }
+ }
+}
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..7e68c1b
--- /dev/null
+++ b/package.json
@@ -0,0 +1,5 @@
+{
+ "dependencies": {
+ "lucide-react": "^1.8.0"
+ }
+}
diff --git a/requirements.txt b/requirements.txt
index 728c4a2..c9e419f 100644
Binary files a/requirements.txt and b/requirements.txt differ
diff --git a/run.sh b/run.sh
new file mode 100644
index 0000000..9ac8b59
--- /dev/null
+++ b/run.sh
@@ -0,0 +1,40 @@
+#!/bin/bash
+# Convenience script to run the LexGuard API
+
+set -e
+
+echo "================================"
+echo "LexGuard API - Startup Script"
+echo "================================"
+echo ""
+
+# Check if running in venv
+if [[ -z "$VIRTUAL_ENV" ]]; then
+ echo "⚠️ Not in a virtual environment"
+ echo " Consider activating: source venv/bin/activate"
+ echo ""
+fi
+
+# Check if dependencies are installed
+echo "Checking dependencies..."
+python -c "import fastapi" 2>/dev/null || {
+ echo "❌ FastAPI not installed"
+ echo " Run: pip install -r requirements.txt"
+ exit 1
+}
+
+echo "✓ Dependencies OK"
+echo ""
+
+# Set environment variables
+export PYTHONUNBUFFERED=1
+export PORT=${PORT:-8000}
+
+echo "Starting API server on http://localhost:$PORT"
+echo "Interactive docs: http://localhost:$PORT/docs"
+echo ""
+echo "Press Ctrl+C to stop"
+echo ""
+
+# Run the API
+python -m src.api.app
diff --git a/run_docker.sh b/run_docker.sh
new file mode 100644
index 0000000..efbd263
--- /dev/null
+++ b/run_docker.sh
@@ -0,0 +1,23 @@
+#!/bin/bash
+# Docker run script with memory limits to prevent segmentation faults
+
+echo "Building and running LexGuard API with memory limits..."
+
+# Build the image
+docker build -t lexguard-api .
+
+# Run with memory limits and single-threaded execution
+docker run \
+ --memory=4g \
+ --cpus=1.0 \
+ --env OMP_NUM_THREADS=1 \
+ --env MKL_NUM_THREADS=1 \
+ --env NUMEXPR_NUM_THREADS=1 \
+ --env OPENBLAS_NUM_THREADS=1 \
+ --volume "$(pwd)/data:/home/app/data:ro" \
+ --publish 8000:8000 \
+ --name lexguard-container \
+ lexguard-api
+
+echo "API should be running at http://localhost:8000"
+echo "Test with: curl http://localhost:8000/health"
\ No newline at end of file
diff --git a/src/api/app.py b/src/api/app.py
new file mode 100644
index 0000000..1cbda96
--- /dev/null
+++ b/src/api/app.py
@@ -0,0 +1,532 @@
+#!/usr/bin/env python3
+"""
+FastAPI wrapper for the LexGuard RAG compliance engine.
+
+Exposes REST endpoints to run compliance checks on policy documents.
+"""
+
+import os
+import sys
+import json
+import logging
+from pathlib import Path
+from typing import List, Dict, Any, Optional
+
+from fastapi import FastAPI, HTTPException, UploadFile, File, Form
+from fastapi.responses import JSONResponse
+from pydantic import BaseModel
+import uvicorn
+import io
+
+try:
+ from PyPDF2 import PdfReader
+ PDF_AVAILABLE = True
+except ImportError:
+ PDF_AVAILABLE = False
+
+# Add src to path for imports
+sys.path.insert(0, str(Path(__file__).parent.parent))
+
+from retriever_rag.rag_runner import (
+ load_graph,
+ load_node_embeddings,
+ compute_eventic_node_embeddings,
+ build_fused_subgraph,
+ triples_text_from_graph,
+ call_llm,
+ Tempt3,
+)
+
+try:
+ from sentence_transformers import SentenceTransformer
+ SBERT_AVAILABLE = True
+except ImportError:
+ SBERT_AVAILABLE = False
+
+try:
+ import faiss
+ FAISS_AVAILABLE = True
+except ImportError:
+ FAISS_AVAILABLE = False
+
+import numpy as np
+import networkx as nx
+
+# Logging setup
+logging.basicConfig(
+ level=logging.INFO,
+ format="%(asctime)s - %(name)s - %(levelname)s - %(message)s",
+)
+logger = logging.getLogger("api")
+
+# ------- Config -------
+DATA_DIR = Path(__file__).parent.parent.parent / "data"
+STATIC_GRAPH_PATH = DATA_DIR / "static_graph.gpickle"
+EVENTIC_GRAPH_PATH = DATA_DIR / "eventic_graph.gpickle"
+CHUNKS_PATH = DATA_DIR / "chunks.json"
+FAISS_INDEX_PATH = DATA_DIR / "faiss.index"
+
+EMBED_MODEL = "sentence-transformers/all-MiniLM-L6-v2"
+
+# ------- Global state (lazy initialized) -------
+_static_graph: Optional[nx.DiGraph] = None
+_eventic_graph: Optional[nx.DiGraph] = None
+_embeddings_model: Optional[SentenceTransformer] = None
+_eventic_nodes: Optional[List[str]] = None
+_eventic_embs: Optional[np.ndarray] = None
+_faiss_index: Optional[Any] = None
+
+
+# ------- Pydantic Models -------
+class ComplianceCheckRequest(BaseModel):
+ text: str
+ lambda_thresh: float = 0.75
+ hop_k: int = 1
+ max_triples: int = 60
+ prefer_local: bool = False
+ openai_model: str = "gpt-3.5-turbo"
+
+
+class ComplianceCheckResponse(BaseModel):
+ verdict: str # "pass", "fail", "unknown"
+ evidence: List[Dict[str, Any]]
+ triples_text: str
+ llm_reply: Optional[str] = None
+ hits: List[str]
+ P: List[str]
+ N: List[str]
+
+
+class HealthCheckResponse(BaseModel):
+ status: str
+ loaded_models: Dict[str, bool]
+
+
+class ChunkResult(BaseModel):
+ """Result for a single chunk"""
+ chunk_id: int
+ text_preview: str # First 100 chars of chunk
+ verdict: str
+ evidence: List[Dict[str, Any]]
+ llm_reply: Optional[str] = None
+ hits: List[str]
+ P: List[str]
+ N: List[str]
+
+
+class ChunkAnalysisResponse(BaseModel):
+ """Response for chunk-level PDF analysis"""
+ filename: str
+ total_chunks: int
+ chunks: List[ChunkResult]
+ summary_verdict: str # "pass" if all pass, "fail" if any fail, "mixed" if combination
+
+
+def extract_text_from_pdf_bytes(file_bytes: bytes) -> str:
+ """Extract text content from a PDF file supplied as bytes."""
+ if not PDF_AVAILABLE:
+ raise RuntimeError("PyPDF2 is not installed")
+ reader = PdfReader(io.BytesIO(file_bytes))
+ texts = []
+ for page in reader.pages:
+ try:
+ page_text = page.extract_text() or ""
+ except Exception:
+ page_text = ""
+ if page_text:
+ texts.append(page_text)
+ return "\n\n".join(texts).strip()
+
+
+def split_text_into_chunks(text: str, chunk_size: int = 500, overlap: int = 100) -> List[str]:
+ """Split text into overlapping chunks."""
+ if not text or chunk_size <= 0:
+ return [text] if text else []
+
+ chunks = []
+ start = 0
+ while start < len(text):
+ end = min(start + chunk_size, len(text))
+ chunk = text[start:end].strip()
+ if chunk:
+ chunks.append(chunk)
+ if end >= len(text):
+ break
+ start = end - overlap
+
+ return chunks if chunks else [text] if text else []
+
+
+def run_compliance_text(
+ text: str,
+ lambda_thresh: float = 0.75,
+ hop_k: int = 1,
+ max_triples: int = 60,
+ prefer_local: bool = False,
+ openai_model: str = "gpt-3.5-turbo",
+) -> ComplianceCheckResponse:
+ if not _embeddings_model or not _eventic_graph or not _static_graph:
+ raise RuntimeError("Models not initialized")
+
+ text_vec = _embeddings_model.encode([text], convert_to_numpy=True)[0]
+ text_vec = text_vec / (np.linalg.norm(text_vec) + 1e-12)
+
+ Gfus, hits, P, N = build_fused_subgraph(
+ text,
+ text_vec,
+ _eventic_nodes,
+ _eventic_embs,
+ _eventic_graph,
+ _static_graph,
+ lambda_thresh=lambda_thresh,
+ hop_k=hop_k,
+ )
+
+ triples_text = triples_text_from_graph(Gfus, max_items=max_triples)
+ prompt = Tempt3.format(
+ chunk=text[:2000] + ("\n\n[TRUNCATED]" if len(text) > 2000 else ""),
+ triples_text=triples_text,
+ )
+
+ try:
+ reply = call_llm(
+ prompt,
+ use_openai_priority=not prefer_local,
+ model_openai=openai_model,
+ max_tokens=256,
+ )
+ except Exception as e:
+ logger.warning(f"LLM call failed: {e}")
+ reply = None
+
+ if reply:
+ if "" in reply:
+ verdict = "pass"
+ evidence = []
+ elif "" in reply:
+ verdict = "fail"
+ try:
+ suffix = reply.split("")[-1].strip()
+ parsed = json.loads(suffix)
+ evidence = parsed
+ except Exception:
+ evidence = [{"raw": reply.split("")[-1].strip()}]
+ else:
+ lower = reply.lower()
+ if "failed" in lower or "violate" in lower or "violation" in lower:
+ verdict = "fail"
+ else:
+ verdict = "pass"
+ evidence = [{"raw": reply[:400]}]
+ else:
+ verdict = "unknown"
+ evidence = []
+
+ return ComplianceCheckResponse(
+ verdict=verdict,
+ evidence=evidence,
+ triples_text=triples_text,
+ llm_reply=reply,
+ hits=hits,
+ P=P,
+ N=N,
+ )
+
+
+def init_global_state():
+ """Initialize global state on startup."""
+ global _static_graph, _eventic_graph, _embeddings_model, _eventic_nodes, _eventic_embs, _faiss_index
+
+ logger.info("Initializing global state...")
+
+ if not SBERT_AVAILABLE:
+ raise RuntimeError("sentence-transformers not installed")
+
+ # Load graphs
+ try:
+ _static_graph = load_graph(str(STATIC_GRAPH_PATH))
+ logger.info(f"Loaded static graph: {_static_graph.number_of_nodes()} nodes, {_static_graph.number_of_edges()} edges")
+ except Exception as e:
+ logger.warning(f"Failed to load static graph: {e}")
+ _static_graph = nx.DiGraph()
+
+ try:
+ _eventic_graph = load_graph(str(EVENTIC_GRAPH_PATH))
+ logger.info(f"Loaded eventic graph: {_eventic_graph.number_of_nodes()} nodes, {_eventic_graph.number_of_edges()} edges")
+ except Exception as e:
+ logger.error(f"Failed to load eventic graph: {e}")
+ raise
+
+ # Load embeddings model
+ try:
+ _embeddings_model = SentenceTransformer(EMBED_MODEL)
+ logger.info(f"Loaded embeddings model: {EMBED_MODEL}")
+ except Exception as e:
+ logger.error(f"Failed to load embeddings model: {e}")
+ raise
+
+ # Precompute eventic node embeddings
+ try:
+ from retriever_rag.rag_runner import compute_eventic_node_embeddings
+ _eventic_nodes, _eventic_embs = compute_eventic_node_embeddings(_eventic_graph, _embeddings_model)
+ logger.info(f"Computed eventic embeddings: {len(_eventic_nodes)} nodes")
+ except Exception as e:
+ logger.error(f"Failed to compute eventic embeddings: {e}")
+ raise
+
+ # Load FAISS index (optional)
+ if FAISS_AVAILABLE and FAISS_INDEX_PATH.exists():
+ try:
+ _faiss_index = faiss.read_index(str(FAISS_INDEX_PATH))
+ logger.info("Loaded FAISS index")
+ except Exception as e:
+ logger.warning(f"Failed to load FAISS index: {e}")
+ else:
+ logger.info("FAISS index not available")
+
+
+# ------- FastAPI app -------
+app = FastAPI(
+ title="LexGuard Compliance Engine",
+ description="Offline RAG-LLM service for policy compliance verification",
+ version="1.0.0",
+)
+
+from fastapi.middleware.cors import CORSMiddleware
+
+app.add_middleware(
+ CORSMiddleware,
+ allow_origins=["*"], # allow all (for dev)
+ allow_credentials=True,
+ allow_methods=["*"],
+ allow_headers=["*"],
+)
+
+
+@app.on_event("startup")
+async def startup_event():
+ """Initialize resources on startup."""
+ try:
+ init_global_state()
+ logger.info("Startup complete")
+ except Exception as e:
+ logger.error(f"Startup failed: {e}", exc_info=True)
+ raise
+
+
+# @app.get("/health", response_model=HealthCheckResponse)
+# async def health_check():
+# """Health check endpoint."""
+# return HealthCheckResponse(
+# status="ok" if all(
+# [_static_graph, _eventic_graph, _embeddings_model, _eventic_nodes, _eventic_embs]
+# ) else "degraded",
+# loaded_models={
+# "static_graph": _static_graph is not None,
+# "eventic_graph": _eventic_graph is not None,
+# "embeddings_model": _embeddings_model is not None,
+# "faiss_index": _faiss_index is not None,
+# },
+# )
+
+@app.get("/health", response_model=HealthCheckResponse)
+async def health_check():
+ """Health check endpoint."""
+ return HealthCheckResponse(
+ status="ok" if all([
+ _static_graph is not None,
+ _eventic_graph is not None,
+ _embeddings_model is not None,
+ _eventic_nodes is not None,
+ _eventic_embs is not None,
+ ]) else "degraded",
+ loaded_models={
+ "static_graph": _static_graph is not None,
+ "eventic_graph": _eventic_graph is not None,
+ "embeddings_model": _embeddings_model is not None,
+ "faiss_index": _faiss_index is not None,
+ },
+ )
+
+@app.post("/compliance-check", response_model=ComplianceCheckResponse)
+async def compliance_check(request: ComplianceCheckRequest):
+ """
+ Run a compliance check on a policy text chunk.
+ """
+ try:
+ return run_compliance_text(
+ request.text,
+ lambda_thresh=request.lambda_thresh,
+ hop_k=request.hop_k,
+ max_triples=request.max_triples,
+ prefer_local=request.prefer_local,
+ openai_model=request.openai_model,
+ )
+ except HTTPException:
+ raise
+ except Exception as e:
+ logger.error(f"Compliance check failed: {e}", exc_info=True)
+ raise HTTPException(status_code=500, detail=str(e))
+
+
+@app.post("/upload-pdf", response_model=ComplianceCheckResponse)
+async def upload_pdf(
+ file: UploadFile = File(...),
+ lambda_thresh: float = Form(0.75),
+ hop_k: int = Form(1),
+ max_triples: int = Form(60),
+ prefer_local: bool = Form(False),
+ openai_model: str = Form("gpt-3.5-turbo"),
+):
+ """
+ Upload a PDF and run compliance check on the entire document as a single unit.
+ Returns a single verdict for the whole document.
+ """
+ if not PDF_AVAILABLE:
+ raise HTTPException(status_code=500, detail="PyPDF2 is not installed for PDF extraction")
+
+ if file.content_type != "application/pdf":
+ raise HTTPException(status_code=400, detail="Only PDF files are supported")
+
+ try:
+ contents = await file.read()
+ text = extract_text_from_pdf_bytes(contents)
+ if not text.strip():
+ raise HTTPException(status_code=400, detail="No text extracted from PDF")
+ return run_compliance_text(
+ text,
+ lambda_thresh=lambda_thresh,
+ hop_k=hop_k,
+ max_triples=max_triples,
+ prefer_local=prefer_local,
+ openai_model=openai_model,
+ )
+ except HTTPException:
+ raise
+ except Exception as e:
+ logger.error(f"PDF upload failed: {e}", exc_info=True)
+ raise HTTPException(status_code=500, detail=str(e))
+
+
+@app.post("/upload-pdf-chunks", response_model=ChunkAnalysisResponse)
+async def upload_pdf_chunks(
+ file: UploadFile = File(...),
+ chunk_size: int = Form(500),
+ chunk_overlap: int = Form(100),
+ lambda_thresh: float = Form(0.75),
+ hop_k: int = Form(1),
+ max_triples: int = Form(60),
+ prefer_local: bool = Form(False),
+ openai_model: str = Form("gpt-3.5-turbo"),
+):
+ """
+ Upload a PDF and run compliance check on each chunk separately.
+ Returns individual verdicts for each chunk (similar to preds.json).
+
+ Parameters:
+ - chunk_size: Number of characters per chunk (default: 500)
+ - chunk_overlap: Overlap between consecutive chunks in characters (default: 100)
+ """
+ if not PDF_AVAILABLE:
+ raise HTTPException(status_code=500, detail="PyPDF2 is not installed for PDF extraction")
+
+ if file.content_type != "application/pdf":
+ raise HTTPException(status_code=400, detail="Only PDF files are supported")
+
+ try:
+ contents = await file.read()
+ full_text = extract_text_from_pdf_bytes(contents)
+ if not full_text.strip():
+ raise HTTPException(status_code=400, detail="No text extracted from PDF")
+
+ # Split into chunks
+ text_chunks = split_text_into_chunks(full_text, chunk_size=chunk_size, overlap=chunk_overlap)
+ chunk_results = []
+ verdicts = []
+
+ # Process each chunk
+ for chunk_id, chunk_text in enumerate(text_chunks):
+ logger.info(f"Processing chunk {chunk_id + 1}/{len(text_chunks)}")
+ try:
+ result = run_compliance_text(
+ chunk_text,
+ lambda_thresh=lambda_thresh,
+ hop_k=hop_k,
+ max_triples=max_triples,
+ prefer_local=prefer_local,
+ openai_model=openai_model,
+ )
+ verdicts.append(result.verdict)
+ chunk_results.append(
+ ChunkResult(
+ chunk_id=chunk_id,
+ text_preview=chunk_text[:100],
+ verdict=result.verdict,
+ evidence=result.evidence,
+ llm_reply=result.llm_reply,
+ hits=result.hits,
+ P=result.P,
+ N=result.N,
+ )
+ )
+ except Exception as e:
+ logger.warning(f"Failed to process chunk {chunk_id}: {e}")
+ chunk_results.append(
+ ChunkResult(
+ chunk_id=chunk_id,
+ text_preview=chunk_text[:100],
+ verdict="unknown",
+ evidence=[{"error": str(e)}],
+ llm_reply=None,
+ hits=[],
+ P=[],
+ N=[],
+ )
+ )
+
+ # Determine summary verdict
+ if not verdicts:
+ summary = "unknown"
+ elif all(v == "pass" for v in verdicts):
+ summary = "pass"
+ elif all(v == "fail" for v in verdicts):
+ summary = "fail"
+ else:
+ summary = "mixed"
+
+ return ChunkAnalysisResponse(
+ filename=file.filename or "unknown",
+ total_chunks=len(text_chunks),
+ chunks=chunk_results,
+ summary_verdict=summary,
+ )
+ except HTTPException:
+ raise
+ except Exception as e:
+ logger.error(f"PDF chunk analysis failed: {e}", exc_info=True)
+ raise HTTPException(status_code=500, detail=str(e))
+
+
+@app.get("/")
+async def root():
+ """Root endpoint with info."""
+ return {
+ "service": "LexGuard Compliance Engine",
+ "version": "1.0.0",
+ "endpoints": {
+ "health": "/health",
+ "compliance_check": "/compliance-check (POST) - Check single text",
+ "upload_pdf": "/upload-pdf (POST) - Analyze PDF as single document",
+ "upload_pdf_chunks": "/upload-pdf-chunks (POST) - Analyze PDF chunk-by-chunk",
+ "docs": "/docs",
+ },
+ "description": {
+ "upload_pdf": "Returns single verdict for entire PDF",
+ "upload_pdf_chunks": "Returns individual verdicts for each chunk (configurable chunk size and overlap)",
+ },
+ }
+
+
+if __name__ == "__main__":
+ port = int(os.getenv("PORT", "8000"))
+ uvicorn.run(app, host="0.0.0.0", port=port, log_level="info")
diff --git a/test_api.py b/test_api.py
new file mode 100644
index 0000000..62d6d24
--- /dev/null
+++ b/test_api.py
@@ -0,0 +1,102 @@
+#!/usr/bin/env python3
+"""
+Quick test script for the LexGuard API.
+
+Usage:
+ python test_api.py --url http://localhost:8000
+
+Make sure the API is running first:
+ docker-compose up
+ # or
+ python -m src.api.app
+"""
+
+import sys
+import argparse
+import requests
+import json
+
+def test_health(base_url):
+ """Test the health endpoint."""
+ print("Testing /health endpoint...")
+ try:
+ resp = requests.get(f"{base_url}/health", timeout=5)
+ resp.raise_for_status()
+ data = resp.json()
+ print(f"✓ Health check passed: {data['status']}")
+ print(f" Models: {json.dumps(data['loaded_models'], indent=2)}")
+ return True
+ except Exception as e:
+ print(f"✗ Health check failed: {e}")
+ return False
+
+
+def test_compliance_check(base_url):
+ """Test the compliance check endpoint."""
+ print("\nTesting /compliance-check endpoint...")
+
+ sample_text = """
+ Our company collects personal data from users to improve our services.
+ We store this data in secure servers and do not share it with third parties
+ without explicit consent. Users can request access or deletion of their data
+ in compliance with GDPR regulations.
+ """
+
+ payload = {
+ "text": sample_text.strip(),
+ "lambda_thresh": 0.75,
+ "hop_k": 1,
+ "max_triples": 60,
+ "prefer_local": True, # Use local model (faster for testing)
+ "openai_model": "gpt-3.5-turbo"
+ }
+
+ try:
+ resp = requests.post(
+ f"{base_url}/compliance-check",
+ json=payload,
+ timeout=60
+ )
+ resp.raise_for_status()
+ data = resp.json()
+ print(f"✓ Compliance check completed")
+ print(f" Verdict: {data['verdict']}")
+ print(f" Evidence: {len(data['evidence'])} items")
+ print(f" Hits: {len(data['hits'])} nodes")
+ print(f" Triples:\n{data['triples_text'][:200]}...")
+ return True
+ except Exception as e:
+ print(f"✗ Compliance check failed: {e}")
+ import traceback
+ traceback.print_exc()
+ return False
+
+
+def main():
+ parser = argparse.ArgumentParser(description="Test LexGuard API")
+ parser.add_argument("--url", default="http://localhost:8000", help="API base URL")
+ args = parser.parse_args()
+
+ print(f"Testing API at {args.url}\n")
+
+ health_ok = test_health(args.url)
+ if not health_ok:
+ print("\n✗ API is not responding. Make sure it's running:")
+ print(" docker-compose up")
+ print(" # or")
+ print(" python -m src.api.app")
+ sys.exit(1)
+
+ compliance_ok = test_compliance_check(args.url)
+
+ print("\n" + "="*50)
+ if health_ok and compliance_ok:
+ print("✓ All tests passed!")
+ sys.exit(0)
+ else:
+ print("✗ Some tests failed")
+ sys.exit(1)
+
+
+if __name__ == "__main__":
+ main()