MCPcopy Create free account
hub / github.com/VAST-AI-Research/tripo-python-sdk / _v3_get_task

Method _v3_get_task

tripo3d/client.py:122–125  ·  view source on GitHub ↗

Query task via apiv3 GET /v3/tasks/{id}.

(self, task_id: str)

Source from the content-addressed store, hash-verified

120 )
121
122 async def _v3_get_task(self, task_id: str) -> Dict[str, Any]:
123 """Query task via apiv3 GET /v3/tasks/{id}."""
124 response = await self._v3_request("GET", f"/v3/tasks/{task_id}")
125 return response["data"]
126
127 @staticmethod
128 def _normalize_v3_task_data(data: Dict[str, Any]) -> Dict[str, Any]:

Callers 1

get_taskMethod · 0.95

Calls 1

_v3_requestMethod · 0.95

Tested by

no test coverage detected