Spaces:
Sleeping
Sleeping
File size: 3,606 Bytes
b14c6e3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 | """
Verification Script - Check Project Structure and Integrity
Run this script to verify all files are present and properly configured.
"""
import os
import sys
from pathlib import Path
def check_file_exists(filepath: str, required: bool = True) -> bool:
"""Check if a file exists."""
exists = os.path.exists(filepath)
status = "✓" if exists else ("✗ MISSING" if required else "○ Optional")
print(f" {status} {filepath}")
return exists
def main():
"""Run verification checks."""
print("=" * 60)
print("Adaptive Alert Triage - Project Verification")
print("=" * 60)
print()
base_dir = Path(__file__).parent
all_good = True
# Check configuration files
print("Configuration Files:")
config_files = [
"README.md",
"SETUP.md",
"pyproject.toml",
"openenv.yaml",
"requirements.txt",
"Dockerfile",
]
for f in config_files:
if not check_file_exists(base_dir / f):
all_good = False
print()
# Check source files
print("Source Files:")
src_files = [
"src/adaptive_alert_triage/__init__.py",
"src/adaptive_alert_triage/env.py",
"src/adaptive_alert_triage/models.py",
"src/adaptive_alert_triage/utils.py",
]
for f in src_files:
if not check_file_exists(base_dir / f):
all_good = False
print()
# Check task files
print("Task Files:")
task_files = [
"tasks/__init__.py",
"tasks/easy.py",
"tasks/medium.py",
"tasks/hard.py",
]
for f in task_files:
if not check_file_exists(base_dir / f):
all_good = False
print()
# Check reward files
print("Reward Files:")
if not check_file_exists(base_dir / "rewards/reward.py"):
all_good = False
print()
# Check agent files
print("Agent Files:")
agent_files = [
"agents/__init__.py",
"agents/baseline.py",
"agents/inference.py",
]
for f in agent_files:
if not check_file_exists(base_dir / f):
all_good = False
print()
# Check test files
print("Test Files:")
test_files = [
"tests/test_env.py",
"tests/test_tasks.py",
"tests/test_rewards.py",
]
for f in test_files:
if not check_file_exists(base_dir / f):
all_good = False
print()
# Check evaluation files
print("Evaluation Files:")
eval_files = [
"evaluation/evaluate.py",
"evaluation/plots.py",
]
for f in eval_files:
if not check_file_exists(base_dir / f):
all_good = False
print()
# Check docker files
print("Docker Files:")
if not check_file_exists(base_dir / "docker/entrypoint.sh"):
all_good = False
print()
# File count summary
print("=" * 60)
if all_good:
print("✅ All required files are present!")
print()
print("Next Steps:")
print(" 1. Install dependencies: pip install -r requirements.txt")
print(" 2. Install package: pip install -e .")
print(" 3. Run tests: pytest tests/")
print(" 4. Try demo: python src/adaptive_alert_triage/env.py")
print(" 5. Run evaluation: python evaluation/evaluate.py")
print()
return 0
else:
print("❌ Some required files are missing!")
print("Please ensure all files are created correctly.")
print()
return 1
if __name__ == "__main__":
sys.exit(main())
|