@opendatalabs/vana-react - v0.3.1
    Preparing search index...

    Interface AgentOperationResult

    Result structure from agent operations via the personal server. This is the parsed content from the SDK's GetOperationResponse.result field.

    interface AgentOperationResult {
        artifacts?: {
            content_type?: string;
            name: string;
            path: string;
            size: number;
        }[];
        operationId: string;
        output: unknown;
    }
    Index

    Properties

    artifacts?: { content_type?: string; name: string; path: string; size: number }[]

    Optional array of file artifacts generated by the operation

    Type Declaration

    • Optionalcontent_type?: string

      MIME type of the artifact

    • name: string

      Name of the artifact file

    • path: string

      Path to the artifact file

    • size: number

      Size of the artifact in bytes

    operationId: string

    The operation ID for this agent execution - required for downloading artifacts

    output: unknown

    The output from the agent operation - can be a string or JSON object