Learning Ethical AI
February 5, 2026 ยท View on GitHub

๐ก๏ธ Ethical AI: The 2026 Resource Guide
This guide provides essential technical and regulatory updates for developers and AI practitioners building in the Generative & Agentic Era (2024โ2026).
Important
New for February 2026: The 2026 International AI Safety Report highlights rapid advancements in AI capabilities and the rising threat of deepfakes.
๐ Repository Structure
learning-ethical-ai/
โ
โโโ 01-tools/ # AI safety and ethics tools
โ โโโ README.md # Tool comparison matrix, quick start
โ โโโ 01-giskard/ # LLM testing & vulnerability scanning
โ โ โโโ README.md
โ โ โโโ config_vertexai.py # GCP Vertex AI configuration
โ โ โโโ healthcare_scan.py # Working healthcare LLM audit
โ โโโ 02-nemo-guardrails/ # Runtime safety controls
โ โ โโโ README.md
โ โ โโโ healthcare_rails/ # Production-ready clinical guardrails
โ โโโ 03-model-cards/ # Model documentation & transparency
โ โ โโโ README.md
โ โโโ 04-llama-guard/ # Content safety classification
โ โโโ README.md
โ
โโโ 02-examples/ # Jupyter notebooks (6 complete examples)
โ โโโ README.md
โ โโโ requirements.txt
โ โโโ 01-giskard-quickstart.ipynb
โ โโโ 02-llm-hallucination-detection.ipynb
โ โโโ 03-healthcare-llm-safety.ipynb
โ โโโ 04-clinical-guardrails.ipynb
โ โโโ 05-mcp-security-audit.ipynb
โ โโโ 06-agent-ethics-patterns.ipynb
โ
โโโ 04-healthcare/ # Healthcare-specific AI ethics
โ โโโ clinical-llm-risks.md # EHR integration risks, hallucinations
โ โโโ hipaa-ai-checklist.md # HIPAA compliance for AI
โ โโโ genomics-ethics.md # Ethical AI in genetic analysis
โ โโโ who-lmm-guidelines.md # WHO 2025 LMM guidance summary
โ โโโ synthetic-patient-data.md # Safe synthetic data generation
โ
โโโ 05-agentic-safety/ # MCP and agentic AI security
โ โโโ mcp-security-threats.md # OWASP-style MCP threat taxonomy
โ โโโ safe-mcp-patterns.md # OpenSSF Safe-MCP security patterns
โ โโโ human-in-loop-agents.md # HITL design for high-risk actions
โ โโโ tool-poisoning-defense.md # Defense strategies
โ โโโ audit-logging-agents.md # Agent decision chain tracing
โ
โโโ 06-governance/ # Regulatory compliance resources
โ โโโ eu-ai-act-checklist.md # High-risk system requirements
โ โโโ nist-ai-600-1-summary.md # GenAI risk profile summary
โ โโโ risk-tiering-template.md # AI system risk classification
โ
โโโ README.md # This file
๐ Quick Start
Install Dependencies
# Clone repository
git clone https://github.com/lynnlangit/learning-ethical-ai.git
cd learning-ethical-ai
# Install tools
pip install giskard nemoguardrails model-card-toolkit
# Configure GCP (required for examples)
export GOOGLE_APPLICATION_CREDENTIALS="/path/to/your/service-account-key.json"
export GCP_PROJECT_ID="your-project-id"
export GCP_REGION="us-central1"
Run Your First Safety Scan
cd 01-tools/giskard
python healthcare_scan.py
# Opens HTML report with safety analysis
Explore Jupyter Notebooks
cd 02-examples
pip install -r requirements.txt
jupyter notebook
# Start with 01-giskard-quickstart.ipynb
๐ Documentation Index
| Topic | Description | Link |
|---|---|---|
| ๐ Learning Paths | Step-by-step guides for different roles (Beginner, Dev, Security, Compliance) | Start Learning โ |
| ๐งช Tools | Giskard, NeMo Guardrails, Wallarm, Model Cards setup | View Tools โ |
| ๐งฌ Healthcare | WHO guidelines, HIPAA, Genomics, Clinical Risks | View Healthcare โ |
| ๐ค Agentic Safety | MCP Security, Threats, HITL, Tool Poisoning | View Agent Security โ |
| ๐๏ธ Governance | EU AI Act, NIST, US Courts, State Laws | View Governance โ |
โ Developer "Ethics-by-Design" Checklist
Before deploying your AI system:
- Risk Tiering: Classify your system using 06-governance/risk-tiering-template.md
- Safety Testing: Run Giskard comprehensive scan (see 01-tools/01-giskard/)
- Guardrails: Implement NeMo Guardrails for runtime safety (see 01-tools/02-nemo-guardrails/)
- Compliance: Review EU AI Act requirements if deploying in EU (see 06-governance/eu-ai-act-checklist.md)
- Legal/Courts: Check US Court AI Rules if building legal tech (see 06-governance/us-court-ai-justice.md)
- Healthcare: If clinical use, check HIPAA compliance (see 04-healthcare/hipaa-ai-checklist.md)
- Agentic: If using MCP, audit security (see 05-agentic-safety/mcp-security-threats.md)
- Human Oversight: Implement HITL for high-risk actions (see 05-agentic-safety/human-in-loop-agents.md)
- Documentation: Create Model Card (see 01-tools/03-model-cards/)
- Audit Logging: Enable comprehensive logging (see 05-agentic-safety/audit-logging-agents.md)
๐ Key Resources
Official Guidelines
Tools & Frameworks
- Giskard - LLM testing
- NeMo Guardrails - Runtime safety
- OpenSSF Safe-MCP - MCP security
- Model Cards Toolkit
๐ License
MIT License - See LICENSE file for details
๐ค Author
Lynn Langit
- Background: Mayo Clinic / Genomics
- Focus: Healthcare AI ethics, cloud architecture, precision medicine
- GitHub: @lynnlangit
๐ฌ Chat with this Repo (NotebookLM)
You can use Google's NotebookLM to turn this repository into an interactive expert that answers your questions.
- Go to NotebookLM.
- Create a new notebook.
- Click Add Source > GitHub (or paste the repo URL:
https://github.com/lynnlangit/learning-ethical-ai). - Select this repository.
Try asking:
- "What are the new HIPAA requirements for AI?"
- "Summarize the MCP security threats."
- "Create a checklist for EU AI Act compliance."
- "Listen to the Audio Overview for a podcast-style summary."
๐ค Contributing
Contributions welcome! Please:
- Fork the repository
- Create a feature branch
- Submit a pull request
For major changes, please open an issue first to discuss proposed changes.
Last Updated: January 2026 Status: Active development - Repository reflects current 2026 standards for ethical AI