evalution
    Preparing search index...

    Interface ExecuteResponse

    Response body of POST /api/prompts/:providerId/:id/execute.

    The endpoint returns immediately after the trace has been registered; the real output is streamed as span events via GET /api/traces/:tracerProviderId/:traceId/events.

    interface ExecuteResponse {
        rootSpanId: string;
        traceId: string;
        tracerProviderId: string;
    }
    Index

    Properties

    rootSpanId: string

    Span ID of the root span for this execution.

    traceId: string

    ID of the trace that tracks this execution.

    tracerProviderId: string

    ID of the trace provider that owns the trace.