(self, api)
| 549 | assert "你好世界" in result |
| 550 | |
| 551 | def test_very_long_response(self, api): |
| 552 | long_content = "A" * 100000 |
| 553 | data = {"choices": [{"message": {"content": long_content}}]} |
| 554 | result = api._parse_openai_response(data) |
| 555 | assert len(result) == 100000 |
| 556 | |
| 557 | def test_reasoning_content_stripped(self, api): |
| 558 | data = { |
nothing calls this directly
no test coverage detected