Get the workspace path for the specified task.
(task_id: str)
| 226 | |
| 227 | @staticmethod |
| 228 | def get_workspace(task_id: str) -> str: |
| 229 | """ |
| 230 | Get the workspace path for the specified task. |
| 231 | """ |
| 232 | return os.path.join(os.getcwd(), Agent.workspace, task_id) |
| 233 | |
| 234 | @staticmethod |
| 235 | def get_artifact_folder(task_id: str, artifact: Artifact) -> str: |
no outgoing calls
no test coverage detected