| 1339 | captured = {} |
| 1340 | |
| 1341 | class FakeReadingAgent: |
| 1342 | @staticmethod |
| 1343 | def create_reading_report(**kwargs): |
| 1344 | captured.update(kwargs) |
| 1345 | return [{"url": "https://example.feishu.cn/docx/pdf-link"}] |
| 1346 | |
| 1347 | real_import = importlib.import_module |
| 1348 |