Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
30faed0
Add Neuroadaptive Accessibility Agent (ADK)
claude Nov 15, 2025
cea760f
feat: Add bidirectional reasoning for emotion AI fairness
claude Nov 15, 2025
34e07ae
feat: Add BeTaL automated fairness benchmark design
claude Nov 15, 2025
b406870
Revise README for AccessibleDeepAgent introduction
Tuesdaythe13th Nov 15, 2025
8f6d544
Update README.md
Tuesdaythe13th Nov 15, 2025
6e995e9
Update README.md
Tuesdaythe13th Nov 15, 2025
9d46d9a
Remove citation and contact sections from README
Tuesdaythe13th Nov 15, 2025
9540ff8
docs: Add comprehensive experimental results for bias bounty
claude Nov 15, 2025
4b458ca
test: Add comprehensive verification suite for DETAILED_RESULTS.md
claude Nov 15, 2025
82754eb
Update README.md
Tuesdaythe13th Nov 15, 2025
b712669
Update README.md
Tuesdaythe13th Nov 15, 2025
6a7c9cb
feat: Add corrected Valence API bias analysis script
claude Nov 15, 2025
67541f2
chore: Add .gitignore for Python project
claude Nov 15, 2025
5347d81
feat: Add Jupyter notebook for Valence API bias analysis
claude Nov 15, 2025
97acad9
Merge pull request #1 from Tuesdaythe13th/claude/codebase-analysis-01…
Tuesdaythe13th Nov 15, 2025
ffcfe29
Refresh README with accurate project layout
Tuesdaythe13th Nov 15, 2025
b404c1c
Merge pull request #2 from Tuesdaythe13th/codex/locate-all-components
Tuesdaythe13th Nov 15, 2025
76a0ee6
docs: Write comprehensive README for AccessibleDeepAgent
claude Nov 15, 2025
58c403d
Merge pull request #3 from Tuesdaythe13th/claude/analyze-codebase-01G…
Tuesdaythe13th Nov 15, 2025
ef53d8e
Update README.md
Tuesdaythe13th Nov 15, 2025
4a404c9
Update ADA notebook to v4.5 Artifex-Aether manifest
Tuesdaythe13th Jan 18, 2026
4adfe1e
Merge branch 'main' into codex/update-notebook-with-accessibility-fea…
Tuesdaythe13th Jan 18, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
141 changes: 141 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,141 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
.python-version

# pipenv
Pipfile.lock

# PEP 582
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# IDEs
.vscode/
.idea/
*.swp
*.swo
*~

# OS
.DS_Store
Thumbs.db

# Project-specific
valence_output.csv
*.wav
*.mp3
*.m4a
valence_audio/
Loading