(self, mobile: str, task_id: str)
| 402 | return self.request_encrypted("/hapi/en/api", params) |
| 403 | |
| 404 | def check_ai_agent_result(self, mobile: str, task_id: str) -> dict: |
| 405 | params = { |
| 406 | "apiName": "diy/AiAgentChatApi/checkAiAgentResult", |
| 407 | "mobile": mobile, |
| 408 | "taskId": task_id |
| 409 | } |
| 410 | return self.request_encrypted("/hapi/en/api", params) |
| 411 | |
| 412 | def query_person_tasks(self, mobile: str, activity_id: str = "ai090") -> dict: |
| 413 | params = { |
no test coverage detected