(r)
| 23 | print(f"Profile response: {profile}") |
| 24 | |
| 25 | def get_memory(r): |
| 26 | if hasattr(r, 'memory'): |
| 27 | return r.memory |
| 28 | return r.get('memory', '') if isinstance(r, dict) else str(r) |
| 29 | |
| 30 | context = f"""Static profile: |
| 31 | {chr(10).join(profile.profile.static)} |
no test coverage detected
searching dependent graphs…