Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
from tilebox.workflows import ExecutionContext, Task class ProcessScene(Task): scene_id: str def execute(self, context: ExecutionContext) -> None: with context.tracer.span("download-scene") as span: span.set_attribute("scene_id", self.scene_id)
ExecutionContext.tracer: WorkflowTracer
context.tracer.span(name: str, *args, **kwargs) -> ContextManager[Span] context.tracer.current_span() -> Span
Was this page helpful?