| import os |
|
|
| files = [ |
| '/tmp/littlefig_benchmark_benchmark_gpu.py', |
| '/tmp/littlefig_cogmembench_runner.py', |
| '/tmp/littlefig_cogmembench_scorer.py', |
| '/tmp/littlefig_src_little_fig_engine_memory_fabric.py', |
| '/tmp/littlefig_src_little_fig_engine_model.py', |
| '/tmp/littlefig_pyproject.toml', |
| '/tmp/Lila_src_main.py', |
| '/tmp/Lila_README.md', |
| '/tmp/embers-diaries_pyproject.toml', |
| ] |
|
|
| for path in files: |
| print(f'\n{"="*60}') |
| print(f'FILE: {path}') |
| print('='*60) |
| if os.path.exists(path): |
| with open(path) as f: |
| print(f.read()) |
| else: |
| print('NOT FOUND') |
|
|