(self, mobile: str, session_id: str, confirm_id: int, text_list: list,
agent_id: str = "text_to_image", from_act: str = "cny")
| 385 | return self.request_encrypted("/hapi/en/api", params) |
| 386 | |
| 387 | def control_confirm_submit(self, mobile: str, session_id: str, confirm_id: int, text_list: list, |
| 388 | agent_id: str = "text_to_image", from_act: str = "cny") -> dict: |
| 389 | params = { |
| 390 | "apiName": "diy/AiAgentChatApi/controlConfirmSubmit", |
| 391 | "content": "", |
| 392 | "mobile": mobile, |
| 393 | "sessionId": session_id, |
| 394 | "confirmId": confirm_id, |
| 395 | "channelId": "", |
| 396 | "portal": "45", |
| 397 | "agentId": agent_id, |
| 398 | "triggerSource": "card_submit", |
| 399 | "textList": text_list, |
| 400 | "fromAct": from_act |
| 401 | } |
| 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 = { |
no test coverage detected