ai software technology

Sovereign AI: Vishal Sikka's Warning on India's AI Dependency

Former Infosys CEO Vishal Sikka warns India against relying on AI systems it cannot control or regulate. This advisory emphasizes the critical need for national sovereignty in AI development and deployment, safeguarding data privacy and strategic autonomy.

Author

AmethiSoft AI Team

Published

February 21, 2026

Read Time

9 min read
India should avoid depending on AI systems it does not control or regulate, warns Vishal Sikka

The Imperative of AI Sovereignty: Vishal Sikkaโ€™s Timely Warning

In an era increasingly shaped by artificial intelligence, the call for national autonomy in AI development and deployment is growing louder. Recently, Dr. Vishal Sikka, a respected figure in the global technology landscape and former CEO of Infosys, issued a potent warning: India must avoid becoming dependent on AI systems it cannot control or regulate. This isnโ€™t merely a technical advisory; itโ€™s a strategic imperative that underscores the profound implications of AI for national security, economic resilience, and societal values. For a nation like India, with its vast population and ambitious digital transformation agenda, understanding and acting upon this warning is critical for shaping a secure and prosperous future.

Deep Dive: The Peril of Uncontrolled AI Dependency

Vishal Sikkaโ€™s warning resonates with a growing global sentiment about the strategic importance of AI governance. Dependence on AI systems developed, controlled, or regulated solely by external entities poses several multi-faceted risks that could compromise Indiaโ€™s sovereignty and future growth.

What Does โ€œControl or Regulateโ€ Truly Mean in AI?

At its core, โ€œcontrol or regulateโ€ in the context of AI encompasses several dimensions:

  1. Data Sovereignty and Privacy: Knowing where Indiaโ€™s vast datasets (citizen data, economic data, strategic information) are stored, processed, and by whom. Uncontrolled AI often means relinquishing control over the data that feeds and trains these powerful systems, making it vulnerable to foreign laws, surveillance, or misuse.
  2. Algorithmic Transparency and Bias: Understanding how AI models make decisions. If India depends on black-box AI systems, it loses the ability to audit for inherent biases, ensure fairness, or verify the integrity of critical outputs. This is particularly crucial for AI applications in areas like justice, healthcare, and public services.
  3. Systemic Risk and Critical Infrastructure: Many AI systems are being integrated into critical national infrastructure โ€“ from smart cities and energy grids to defense and finance. Dependence on external AI for these foundational services introduces points of failure, potential backdoors, or vulnerability to geopolitical pressures, potentially leading to systemic disruptions or cyber warfare.
  4. Economic Autonomy and Innovation: Over-reliance on foreign AI stifles local innovation, skill development, and the growth of indigenous technology ecosystems. It can lead to vendor lock-in, increased costs, and a perpetual technological dependency, hindering Indiaโ€™s ambition to be a global AI leader.
  5. Ethical Alignment and Societal Values: AI systems embed the values and priorities of their creators. If these systems are not developed or regulated within Indiaโ€™s ethical and cultural frameworks, they might inadvertently promote conflicting values or lead to undesirable societal outcomes.

Vishal Sikka, having led a major Indian IT giant, understands the intricate balance between leveraging global technology and fostering domestic capabilities. His warning emphasizes that while collaboration is essential, foundational control over critical AI infrastructure and algorithms must remain sovereign to safeguard national interests in the long run.

Practical Example: Architecting for Controlled AI Engagement

To illustrate how a nation might exert control and regulation even when interacting with external AI systems, consider a conceptual framework for data and model governance. This isnโ€™t about shunning all foreign AI, but about building layers of oversight.

# Conceptual Example: Implementing Local Control Layers for External AI Systems
# Scenario: An Indian governmental agency wants to use an advanced, third-party AI model
# for urban planning recommendations, but needs to maintain data sovereignty and auditability.

import json
import hashlib
import time

# 1. Data Governance Layer (Local Control Point)
def preprocess_for_external_ai(raw_national_data: dict) -> dict:
    """
    Anonymizes, aggregates, or masks sensitive national data before transmitting it
    to an external AI service. This ensures that raw, identifiable data remains
    within the nation's controlled boundaries.
    """
    processed_data = raw_national_data.copy()

    # Example: Masking citizen identifiers
    if 'citizen_ids' in processed_data:
        processed_data['citizen_ids'] = [hashlib.sha256(cid.encode()).hexdigest() for cid in processed_data['citizen_ids']]
        print("INFO: Citizen IDs have been securely hashed.")

    # Example: Generalizing precise geographical coordinates
    if 'location_data' in processed_data:
        processed_data['location_data'] = [
            {'lat': round(loc['lat'], 2), 'lon': round(loc['lon'], 2), 'zone': loc['zone']}
            for loc in processed_data['location_data']
        ]
        print("INFO: Geographical coordinates have been generalized.")

    # Remove any other explicitly prohibited fields
    processed_data.pop('strategic_defense_info', None) # Example of sensitive field removal
    print("INFO: Sensitive data fields have been processed/removed.")
    return processed_data

# 2. Local AI Proxy & Audit Gateway
class ExternalAIGateway:
    def __init__(self, external_ai_endpoint: str, national_policies: list):
        self.endpoint = external_ai_endpoint
        self.policies = national_policies
        print(f"INFO: Initialized gateway for {external_ai_endpoint} with {len(national_policies)} policies.")

    def request_prediction(self, preprocessed_input: dict) -> dict:
        """
        Sends preprocessed data to the external AI and intercepts its response.
        This layer performs pre-call validation, logs the request, and audits the response.
        """
        request_id = f"REQ_{int(time.time())}_{hashlib.sha256(json.dumps(preprocessed_input).encode()).hexdigest()[:8]}"
        print(f"DEBUG: [{request_id}] Sending request to external AI...")

        # Simulate API call to external AI
        # In a real system: response = requests.post(self.endpoint, json=preprocessed_input).json()
        
        # Mock external AI response for demonstration
        mock_response = {
            "request_id": request_id,
            "ai_model_version": "v3.1.2",
            "urban_plan_recommendation": {
                "priority_areas": ["Northern Sector", "Eastern Corridor"],
                "infrastructure_focus": "Public Transport Expansion",
                "estimated_impact_score": 0.88,
                "justification_summary": "High population density growth and existing transport bottlenecks."
            },
            "external_ai_processing_time_ms": 120
        }
        print(f"DEBUG: [{request_id}] Received response from external AI.")
        
        self._audit_ai_response(mock_response)
        return mock_response

    def _audit_ai_response(self, response: dict):
        """
        Applies national regulatory and ethical policies to the external AI's output.
        Logs findings and flags any potential violations or concerns.
        """
        print(f"INFO: Auditing AI response for request ID {response.get('request_id')}...")
        
        # Policy 1: Check for minimum confidence/impact score
        if response['urban_plan_recommendation'].get('estimated_impact_score', 0) < 0.70:
            print("WARNING: Low estimated impact score from external AI. Requires human review.")
        
        # Policy 2: Check for compliance with sustainable development goals (SDGs)
        if "environmental degradation" in response['urban_plan_recommendation'].get('justification_summary', '').lower():
            print("ALERT: Potential conflict with national environmental policies. Flagging for review.")

        # Log full response for immutable audit trail
        print(f"AUDIT: Full response logged for analysis: {json.dumps(response, indent=2)}")

# --- Workflow Example ---
# national_population_data = {
#     "citizen_ids": ["IND1001", "IND1002", "IND1003"],
#     "location_data": [
#         {'lat': 28.6139, 'lon': 77.2090, 'zone': 'Central Delhi'}, # New Delhi
#         {'lat': 19.0760, 'lon': 72.8777, 'zone': 'South Mumbai'}   # Mumbai
#     ],
#     "population_growth_metrics": {"Central Delhi": 1.5, "South Mumbai": 0.8},
#     "strategic_defense_info": "TOP SECRET MILITARY BASE LOCATION DATA" # Highly sensitive
# }

# india_ai_policies = [
#     "Ensure data privacy compliance (DPDP Act)",
#     "Prioritize sustainable development goals",
#     "Require human-in-the-loop for critical infrastructure decisions",
#     "Avoid recommendations that disproportionately impact marginalized communities"
# ]

# # Step 1: Preprocess data locally before sending
# cleaned_data = preprocess_for_external_ai(national_population_data)

# # Step 2: Route request through the national AI gateway
# urban_planner_gateway = ExternalAIGateway(
#     "https://api.global-urban-ai.com/plan", 
#     india_ai_policies
# )
# ai_recommendation = urban_planner_gateway.request_prediction(cleaned_data)

# # Step 3: Integrate and finalize decision with local oversight
# if ai_recommendation:
#     print("\nFinal Local Integration Stage:")
#     # Further local validation, human expert review, and comparison with local models
#     if ai_recommendation['urban_plan_recommendation']['estimated_impact_score'] > 0.85:
#         print("Recommendation meets high impact threshold. Proceeding to expert review panel.")
#     else:
#         print("Recommendation has moderate impact. Requires further internal study and alternative generation.")

This conceptual code demonstrates how India can build robust layers of control:

  • Data Masking/Anonymization: Preventing sensitive raw data from leaving national jurisdiction.
  • Local Proxy/Gateway: Intercepting all communications with external AI, applying national policies, and creating an auditable log.
  • Post-processing Validation: Ensuring AI outputs align with national objectives, ethics, and legal frameworks before implementation.

Business Value: Why AI Sovereignty is a Smart Bet

For businesses and developers operating in India, the drive towards AI sovereignty offers compelling advantages:

  • Enhanced Data Security and Compliance: By maintaining control over AI infrastructure and data, businesses can ensure compliance with evolving national data protection laws (like Indiaโ€™s Digital Personal Data Protection Act), building greater trust with customers and mitigating legal risks.
  • Reduced Vendor Lock-in: Developing indigenous AI capabilities and fostering a local ecosystem frees businesses from reliance on specific foreign vendors, promoting competition, innovation, and cost-effectiveness.
  • Tailored Solutions for Local Needs: Indigenous AI development allows for the creation of systems specifically trained on Indian datasets, understanding unique cultural nuances, languages, and societal challenges, leading to more effective and relevant solutions.
  • New Economic Opportunities: Investment in sovereign AI fuels the growth of domestic AI startups, research institutions, and a skilled workforce, creating new jobs and positioning India as an AI innovation hub.
  • Ethical AI and Public Trust: Ensuring AI systems are developed and governed according to national ethical guidelines (e.g., addressing bias, promoting fairness) builds greater public confidence and acceptance, paving the way for wider AI adoption.

Future Outlook: Indiaโ€™s Path to AI Self-Reliance

The future of AI for India hinges on proactive strategies to balance global collaboration with national control. We can expect several key trends:

  • Aggressive Investment in Indigenous AI: Government and private sector will increasingly fund research, development, and deployment of AI solutions built within India, for India. This includes fostering AI talent through education and specialized training programs.
  • Robust Regulatory Frameworks: India will likely accelerate the development of comprehensive AI laws, ethical guidelines, and certification standards. These frameworks will aim to ensure transparency, accountability, and fairness while fostering innovation.
  • โ€œTrustworthy AIโ€ as a National Imperative: Expect a strong emphasis on explainable AI (XAI), privacy-preserving AI, and bias detection/mitigation techniques to build inherently trustworthy systems.
  • Strategic International Partnerships: While emphasizing control, India will continue to engage in international AI forums and collaborations, but from a position of strength and clear national interest, sharing knowledge while safeguarding core capabilities.
  • Focus on Sector-Specific AI: Developing sovereign AI solutions for critical sectors like agriculture, healthcare, defense, and public services, where the impact of external dependency could be most profound.

Vishal Sikkaโ€™s warning is not just a cautionary note; itโ€™s a clarion call for India to seize control of its AI destiny, ensuring that this transformative technology serves its people and upholds its sovereignty for generations to come.

Disclaimer: This blog post was generated with the assistance of AI to provide recent technical insights. While we strive for accuracy, please verify critical technical details before using them in production or for legal decisions.

A

AmethiSoft AI Team

Insights Team at AmethiSoft

Share this:

AI Assistance Notice

This article was prepared with the assistance of Artificial Intelligence to provide timely and comprehensive technical insights. While our team reviews all content for relevance and accuracy, we recommend verifying critical technical details for your specific production environment. AmethiSoft is committed to transparency in AI usage.

WhatsApp Us
Email Us